abstract class com.google.common.hash.AbstractNonStreamingHashFunction extends com.google.common.hash.AbstractHashFunction
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.google.common.hash.AbstractNonStreamingHashFunction
  super_class: com.google.common.hash.AbstractHashFunction
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
         0: .line 33
            aload 0 /* this */
            invokespecial com.google.common.hash.AbstractHashFunction.<init>:()V
            return
        end local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/hash/AbstractNonStreamingHashFunction;

  public com.google.common.hash.Hasher newHasher();
    descriptor: ()Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
         0: .line 36
            aload 0 /* this */
            bipush 32
            invokevirtual com.google.common.hash.AbstractNonStreamingHashFunction.newHasher:(I)Lcom/google/common/hash/Hasher;
            areturn
        end local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/hash/AbstractNonStreamingHashFunction;

  public com.google.common.hash.Hasher newHasher(int);
    descriptor: (I)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
        start local 1 // int expectedInputSize
         0: .line 41
            iload 1 /* expectedInputSize */
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: invokestatic com.google.common.base.Preconditions.checkArgument:(Z)V
         3: .line 42
            new com.google.common.hash.AbstractNonStreamingHashFunction$BufferingHasher
            dup
            aload 0 /* this */
            iload 1 /* expectedInputSize */
            invokespecial com.google.common.hash.AbstractNonStreamingHashFunction$BufferingHasher.<init>:(Lcom/google/common/hash/AbstractNonStreamingHashFunction;I)V
            areturn
        end local 1 // int expectedInputSize
        end local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lcom/google/common/hash/AbstractNonStreamingHashFunction;
            0    4     1  expectedInputSize  I
    MethodParameters:
                   Name  Flags
      expectedInputSize  

  public com.google.common.hash.HashCode hashInt(int);
    descriptor: (I)Lcom/google/common/hash/HashCode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
        start local 1 // int input
         0: .line 47
            aload 0 /* this */
            iconst_4
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            getstatic java.nio.ByteOrder.LITTLE_ENDIAN:Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            iload 1 /* input */
            invokevirtual java.nio.ByteBuffer.putInt:(I)Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.array:()[B
            invokevirtual com.google.common.hash.AbstractNonStreamingHashFunction.hashBytes:([B)Lcom/google/common/hash/HashCode;
            areturn
        end local 1 // int input
        end local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/hash/AbstractNonStreamingHashFunction;
            0    1     1  input  I
    MethodParameters:
       Name  Flags
      input  

  public com.google.common.hash.HashCode hashLong(long);
    descriptor: (J)Lcom/google/common/hash/HashCode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
        start local 1 // long input
         0: .line 52
            aload 0 /* this */
            bipush 8
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            getstatic java.nio.ByteOrder.LITTLE_ENDIAN:Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            lload 1 /* input */
            invokevirtual java.nio.ByteBuffer.putLong:(J)Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.array:()[B
            invokevirtual com.google.common.hash.AbstractNonStreamingHashFunction.hashBytes:([B)Lcom/google/common/hash/HashCode;
            areturn
        end local 1 // long input
        end local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/hash/AbstractNonStreamingHashFunction;
            0    1     1  input  J
    MethodParameters:
       Name  Flags
      input  

  public com.google.common.hash.HashCode hashUnencodedChars(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Lcom/google/common/hash/HashCode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
        start local 1 // java.lang.CharSequence input
         0: .line 57
            aload 1 /* input */
            invokeinterface java.lang.CharSequence.length:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 58
            iload 2 /* len */
            iconst_2
            imul
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            getstatic java.nio.ByteOrder.LITTLE_ENDIAN:Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            astore 3 /* buffer */
        start local 3 // java.nio.ByteBuffer buffer
         2: .line 59
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         3: goto 6
         4: .line 60
      StackMap locals: int java.nio.ByteBuffer int
      StackMap stack:
            aload 3 /* buffer */
            aload 1 /* input */
            iload 4 /* i */
            invokeinterface java.lang.CharSequence.charAt:(I)C
            invokevirtual java.nio.ByteBuffer.putChar:(C)Ljava/nio/ByteBuffer;
            pop
         5: .line 59
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            iload 2 /* len */
            if_icmplt 4
        end local 4 // int i
         7: .line 62
            aload 0 /* this */
            aload 3 /* buffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            invokevirtual com.google.common.hash.AbstractNonStreamingHashFunction.hashBytes:([B)Lcom/google/common/hash/HashCode;
            areturn
        end local 3 // java.nio.ByteBuffer buffer
        end local 2 // int len
        end local 1 // java.lang.CharSequence input
        end local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/google/common/hash/AbstractNonStreamingHashFunction;
            0    8     1   input  Ljava/lang/CharSequence;
            1    8     2     len  I
            2    8     3  buffer  Ljava/nio/ByteBuffer;
            3    7     4       i  I
    MethodParameters:
       Name  Flags
      input  

  public com.google.common.hash.HashCode hashString(java.lang.CharSequence, java.nio.charset.Charset);
    descriptor: (Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)Lcom/google/common/hash/HashCode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
        start local 1 // java.lang.CharSequence input
        start local 2 // java.nio.charset.Charset charset
         0: .line 67
            aload 0 /* this */
            aload 1 /* input */
            invokeinterface java.lang.CharSequence.toString:()Ljava/lang/String;
            aload 2 /* charset */
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokevirtual com.google.common.hash.AbstractNonStreamingHashFunction.hashBytes:([B)Lcom/google/common/hash/HashCode;
            areturn
        end local 2 // java.nio.charset.Charset charset
        end local 1 // java.lang.CharSequence input
        end local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/common/hash/AbstractNonStreamingHashFunction;
            0    1     1    input  Ljava/lang/CharSequence;
            0    1     2  charset  Ljava/nio/charset/Charset;
    MethodParameters:
         Name  Flags
      input    
      charset  

  public abstract com.google.common.hash.HashCode hashBytes(byte[], int, int);
    descriptor: ([BII)Lcom/google/common/hash/HashCode;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      input  
      off    
      len    

  public com.google.common.hash.HashCode hashBytes(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Lcom/google/common/hash/HashCode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
        start local 1 // java.nio.ByteBuffer input
         0: .line 75
            aload 0 /* this */
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokevirtual com.google.common.hash.AbstractNonStreamingHashFunction.newHasher:(I)Lcom/google/common/hash/Hasher;
            aload 1 /* input */
            invokeinterface com.google.common.hash.Hasher.putBytes:(Ljava/nio/ByteBuffer;)Lcom/google/common/hash/Hasher;
            invokeinterface com.google.common.hash.Hasher.hash:()Lcom/google/common/hash/HashCode;
            areturn
        end local 1 // java.nio.ByteBuffer input
        end local 0 // com.google.common.hash.AbstractNonStreamingHashFunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/hash/AbstractNonStreamingHashFunction;
            0    1     1  input  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      input  
}
SourceFile: "AbstractNonStreamingHashFunction.java"
NestMembers:
  com.google.common.hash.AbstractNonStreamingHashFunction$BufferingHasher  com.google.common.hash.AbstractNonStreamingHashFunction$ExposedByteArrayOutputStream
InnerClasses:
  private final BufferingHasher = com.google.common.hash.AbstractNonStreamingHashFunction$BufferingHasher of com.google.common.hash.AbstractNonStreamingHashFunction
  private final ExposedByteArrayOutputStream = com.google.common.hash.AbstractNonStreamingHashFunction$ExposedByteArrayOutputStream of com.google.common.hash.AbstractNonStreamingHashFunction
    RuntimeVisibleAnnotations: 
      com.google.errorprone.annotations.Immutable()