final class com.google.common.hash.HashCode$IntHashCode extends com.google.common.hash.HashCode implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.common.hash.HashCode$IntHashCode
  super_class: com.google.common.hash.HashCode
{
  final int hash;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.hash.HashCode$IntHashCode this
        start local 1 // int hash
         0: .line 123
            aload 0 /* this */
            invokespecial com.google.common.hash.HashCode.<init>:()V
         1: .line 124
            aload 0 /* this */
            iload 1 /* hash */
            putfield com.google.common.hash.HashCode$IntHashCode.hash:I
         2: .line 125
            return
        end local 1 // int hash
        end local 0 // com.google.common.hash.HashCode$IntHashCode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/hash/HashCode$IntHashCode;
            0    3     1  hash  I
    MethodParameters:
      Name  Flags
      hash  

  public int bits();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.hash.HashCode$IntHashCode this
         0: .line 129
            bipush 32
            ireturn
        end local 0 // com.google.common.hash.HashCode$IntHashCode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/hash/HashCode$IntHashCode;

  public byte[] asBytes();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.google.common.hash.HashCode$IntHashCode this
         0: .line 134
            iconst_4
            newarray 8
            dup
            iconst_0
            aload 0 /* this */
            getfield com.google.common.hash.HashCode$IntHashCode.hash:I
            i2b
            bastore
            dup
            iconst_1
            aload 0 /* this */
            getfield com.google.common.hash.HashCode$IntHashCode.hash:I
            bipush 8
            ishr
            i2b
            bastore
            dup
            iconst_2
            aload 0 /* this */
            getfield com.google.common.hash.HashCode$IntHashCode.hash:I
            bipush 16
            ishr
            i2b
            bastore
            dup
            iconst_3
            aload 0 /* this */
            getfield com.google.common.hash.HashCode$IntHashCode.hash:I
            bipush 24
            ishr
            i2b
            bastore
            areturn
        end local 0 // com.google.common.hash.HashCode$IntHashCode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/hash/HashCode$IntHashCode;

  public int asInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.hash.HashCode$IntHashCode this
         0: .line 139
            aload 0 /* this */
            getfield com.google.common.hash.HashCode$IntHashCode.hash:I
            ireturn
        end local 0 // com.google.common.hash.HashCode$IntHashCode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/hash/HashCode$IntHashCode;

  public long asLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.hash.HashCode$IntHashCode this
         0: .line 144
            new java.lang.IllegalStateException
            dup
            ldc "this HashCode only has 32 bits; cannot create a long"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // com.google.common.hash.HashCode$IntHashCode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/hash/HashCode$IntHashCode;

  public long padToLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.hash.HashCode$IntHashCode this
         0: .line 149
            aload 0 /* this */
            getfield com.google.common.hash.HashCode$IntHashCode.hash:I
            invokestatic com.google.common.primitives.UnsignedInts.toLong:(I)J
            lreturn
        end local 0 // com.google.common.hash.HashCode$IntHashCode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/hash/HashCode$IntHashCode;

  void writeBytesToImpl(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // com.google.common.hash.HashCode$IntHashCode this
        start local 1 // byte[] dest
        start local 2 // int offset
        start local 3 // int maxLength
         0: .line 154
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 4
         2: .line 155
      StackMap locals: int
      StackMap stack:
            aload 1 /* dest */
            iload 2 /* offset */
            iload 4 /* i */
            iadd
            aload 0 /* this */
            getfield com.google.common.hash.HashCode$IntHashCode.hash:I
            iload 4 /* i */
            bipush 8
            imul
            ishr
            i2b
            bastore
         3: .line 154
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 4 /* i */
            iload 3 /* maxLength */
            if_icmplt 2
        end local 4 // int i
         5: .line 157
            return
        end local 3 // int maxLength
        end local 2 // int offset
        end local 1 // byte[] dest
        end local 0 // com.google.common.hash.HashCode$IntHashCode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lcom/google/common/hash/HashCode$IntHashCode;
            0    6     1       dest  [B
            0    6     2     offset  I
            0    6     3  maxLength  I
            1    5     4          i  I
    MethodParameters:
           Name  Flags
      dest       
      offset     
      maxLength  

  boolean equalsSameBits(com.google.common.hash.HashCode);
    descriptor: (Lcom/google/common/hash/HashCode;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.hash.HashCode$IntHashCode this
        start local 1 // com.google.common.hash.HashCode that
         0: .line 161
            aload 0 /* this */
            getfield com.google.common.hash.HashCode$IntHashCode.hash:I
            aload 1 /* that */
            invokevirtual com.google.common.hash.HashCode.asInt:()I
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // com.google.common.hash.HashCode that
        end local 0 // com.google.common.hash.HashCode$IntHashCode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/hash/HashCode$IntHashCode;
            0    2     1  that  Lcom/google/common/hash/HashCode;
    MethodParameters:
      Name  Flags
      that  
}
SourceFile: "HashCode.java"
NestHost: com.google.common.hash.HashCode
InnerClasses:
  private final IntHashCode = com.google.common.hash.HashCode$IntHashCode of com.google.common.hash.HashCode