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

  public <T> com.google.common.hash.HashCode hashObject(T, com.google.common.hash.Funnel<? super T>);
    descriptor: (Ljava/lang/Object;Lcom/google/common/hash/Funnel;)Lcom/google/common/hash/HashCode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.hash.AbstractHashFunction this
        start local 1 // java.lang.Object instance
        start local 2 // com.google.common.hash.Funnel funnel
         0: .line 33
            aload 0 /* this */
            invokevirtual com.google.common.hash.AbstractHashFunction.newHasher:()Lcom/google/common/hash/Hasher;
            aload 1 /* instance */
            aload 2 /* funnel */
            invokeinterface com.google.common.hash.Hasher.putObject:(Ljava/lang/Object;Lcom/google/common/hash/Funnel;)Lcom/google/common/hash/Hasher;
            invokeinterface com.google.common.hash.Hasher.hash:()Lcom/google/common/hash/HashCode;
            areturn
        end local 2 // com.google.common.hash.Funnel funnel
        end local 1 // java.lang.Object instance
        end local 0 // com.google.common.hash.AbstractHashFunction this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/google/common/hash/AbstractHashFunction;
            0    1     1  instance  TT;
            0    1     2    funnel  Lcom/google/common/hash/Funnel<-TT;>;
    Signature: <T:Ljava/lang/Object;>(TT;Lcom/google/common/hash/Funnel<-TT;>;)Lcom/google/common/hash/HashCode;
    MethodParameters:
          Name  Flags
      instance  
      funnel    

  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=3, args_size=2
        start local 0 // com.google.common.hash.AbstractHashFunction this
        start local 1 // java.lang.CharSequence input
         0: .line 38
            aload 1 /* input */
            invokeinterface java.lang.CharSequence.length:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 39
            aload 0 /* this */
            iload 2 /* len */
            iconst_2
            imul
            invokevirtual com.google.common.hash.AbstractHashFunction.newHasher:(I)Lcom/google/common/hash/Hasher;
            aload 1 /* input */
            invokeinterface com.google.common.hash.Hasher.putUnencodedChars:(Ljava/lang/CharSequence;)Lcom/google/common/hash/Hasher;
            invokeinterface com.google.common.hash.Hasher.hash:()Lcom/google/common/hash/HashCode;
            areturn
        end local 2 // int len
        end local 1 // java.lang.CharSequence input
        end local 0 // com.google.common.hash.AbstractHashFunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/google/common/hash/AbstractHashFunction;
            0    2     1  input  Ljava/lang/CharSequence;
            1    2     2    len  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.AbstractHashFunction this
        start local 1 // java.lang.CharSequence input
        start local 2 // java.nio.charset.Charset charset
         0: .line 44
            aload 0 /* this */
            invokevirtual com.google.common.hash.AbstractHashFunction.newHasher:()Lcom/google/common/hash/Hasher;
            aload 1 /* input */
            aload 2 /* charset */
            invokeinterface com.google.common.hash.Hasher.putString:(Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)Lcom/google/common/hash/Hasher;
            invokeinterface com.google.common.hash.Hasher.hash:()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.AbstractHashFunction this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/common/hash/AbstractHashFunction;
            0    1     1    input  Ljava/lang/CharSequence;
            0    1     2  charset  Ljava/nio/charset/Charset;
    MethodParameters:
         Name  Flags
      input    
      charset  

  public com.google.common.hash.HashCode hashInt(int);
    descriptor: (I)Lcom/google/common/hash/HashCode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractHashFunction this
        start local 1 // int input
         0: .line 49
            aload 0 /* this */
            iconst_4
            invokevirtual com.google.common.hash.AbstractHashFunction.newHasher:(I)Lcom/google/common/hash/Hasher;
            iload 1 /* input */
            invokeinterface com.google.common.hash.Hasher.putInt:(I)Lcom/google/common/hash/Hasher;
            invokeinterface com.google.common.hash.Hasher.hash:()Lcom/google/common/hash/HashCode;
            areturn
        end local 1 // int input
        end local 0 // com.google.common.hash.AbstractHashFunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/hash/AbstractHashFunction;
            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=3, locals=3, args_size=2
        start local 0 // com.google.common.hash.AbstractHashFunction this
        start local 1 // long input
         0: .line 54
            aload 0 /* this */
            bipush 8
            invokevirtual com.google.common.hash.AbstractHashFunction.newHasher:(I)Lcom/google/common/hash/Hasher;
            lload 1 /* input */
            invokeinterface com.google.common.hash.Hasher.putLong:(J)Lcom/google/common/hash/Hasher;
            invokeinterface com.google.common.hash.Hasher.hash:()Lcom/google/common/hash/HashCode;
            areturn
        end local 1 // long input
        end local 0 // com.google.common.hash.AbstractHashFunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/hash/AbstractHashFunction;
            0    1     1  input  J
    MethodParameters:
       Name  Flags
      input  

  public com.google.common.hash.HashCode hashBytes(byte[]);
    descriptor: ([B)Lcom/google/common/hash/HashCode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractHashFunction this
        start local 1 // byte[] input
         0: .line 59
            aload 0 /* this */
            aload 1 /* input */
            iconst_0
            aload 1 /* input */
            arraylength
            invokevirtual com.google.common.hash.AbstractHashFunction.hashBytes:([BII)Lcom/google/common/hash/HashCode;
            areturn
        end local 1 // byte[] input
        end local 0 // com.google.common.hash.AbstractHashFunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/hash/AbstractHashFunction;
            0    1     1  input  [B
    MethodParameters:
       Name  Flags
      input  

  public com.google.common.hash.HashCode hashBytes(byte[], int, int);
    descriptor: ([BII)Lcom/google/common/hash/HashCode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.google.common.hash.AbstractHashFunction this
        start local 1 // byte[] input
        start local 2 // int off
        start local 3 // int len
         0: .line 64
            iload 2 /* off */
            iload 2 /* off */
            iload 3 /* len */
            iadd
            aload 1 /* input */
            arraylength
            invokestatic com.google.common.base.Preconditions.checkPositionIndexes:(III)V
         1: .line 65
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.google.common.hash.AbstractHashFunction.newHasher:(I)Lcom/google/common/hash/Hasher;
            aload 1 /* input */
            iload 2 /* off */
            iload 3 /* len */
            invokeinterface com.google.common.hash.Hasher.putBytes:([BII)Lcom/google/common/hash/Hasher;
            invokeinterface com.google.common.hash.Hasher.hash:()Lcom/google/common/hash/HashCode;
            areturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] input
        end local 0 // com.google.common.hash.AbstractHashFunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/google/common/hash/AbstractHashFunction;
            0    2     1  input  [B
            0    2     2    off  I
            0    2     3    len  I
    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.AbstractHashFunction this
        start local 1 // java.nio.ByteBuffer input
         0: .line 70
            aload 0 /* this */
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokevirtual com.google.common.hash.AbstractHashFunction.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.AbstractHashFunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/hash/AbstractHashFunction;
            0    1     1  input  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      input  

  public com.google.common.hash.Hasher newHasher(int);
    descriptor: (I)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractHashFunction this
        start local 1 // int expectedInputSize
         0: .line 76
            iload 1 /* expectedInputSize */
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "expectedInputSize must be >= 0 but was %s"
            iload 1 /* expectedInputSize */
         3: .line 75
            invokestatic com.google.common.base.Preconditions.checkArgument:(ZLjava/lang/String;I)V
         4: .line 77
            aload 0 /* this */
            invokevirtual com.google.common.hash.AbstractHashFunction.newHasher:()Lcom/google/common/hash/Hasher;
            areturn
        end local 1 // int expectedInputSize
        end local 0 // com.google.common.hash.AbstractHashFunction this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lcom/google/common/hash/AbstractHashFunction;
            0    5     1  expectedInputSize  I
    MethodParameters:
                   Name  Flags
      expectedInputSize  
}
SourceFile: "AbstractHashFunction.java"
    RuntimeVisibleAnnotations: 
      com.google.errorprone.annotations.Immutable()