public class com.carrotsearch.hppc.ObjectByteHashMap<KType> implements com.carrotsearch.hppc.ObjectByteMap<KType>, com.carrotsearch.hppc.Preallocable, java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.carrotsearch.hppc.ObjectByteHashMap
  super_class: java.lang.Object
{
  public java.lang.Object[] keys;
    descriptor: [Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC

  public byte[] values;
    descriptor: [B
    flags: (0x0001) ACC_PUBLIC

  protected int keyMixer;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int assigned;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int mask;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int resizeAt;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected boolean hasEmptyKey;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected double loadFactor;
    descriptor: D
    flags: (0x0004) ACC_PROTECTED

  protected com.carrotsearch.hppc.HashOrderMixingStrategy orderMixer;
    descriptor: Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
    flags: (0x0004) ACC_PROTECTED

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 27
            ldc Lcom/carrotsearch/hppc/ObjectByteHashMap;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
         0: .line 97
            aload 0 /* this */
            iconst_4
            invokespecial com.carrotsearch.hppc.ObjectByteHashMap.<init>:(I)V
         1: .line 98
            return
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int expectedElements
         0: .line 108
            aload 0 /* this */
            iload 1 /* expectedElements */
            ldc 0.75
            invokespecial com.carrotsearch.hppc.ObjectByteHashMap.<init>:(ID)V
         1: .line 109
            return
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    2     1  expectedElements  I
    MethodParameters:
                  Name  Flags
      expectedElements  

  public void <init>(int, double);
    descriptor: (ID)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int expectedElements
        start local 2 // double loadFactor
         0: .line 122
            aload 0 /* this */
            iload 1 /* expectedElements */
            dload 2 /* loadFactor */
            invokestatic com.carrotsearch.hppc.HashOrderMixing.defaultStrategy:()Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
            invokespecial com.carrotsearch.hppc.ObjectByteHashMap.<init>:(IDLcom/carrotsearch/hppc/HashOrderMixingStrategy;)V
         1: .line 123
            return
        end local 2 // double loadFactor
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    2     1  expectedElements  I
            0    2     2        loadFactor  D
    MethodParameters:
                  Name  Flags
      expectedElements  
      loadFactor        

  public void <init>(int, double, com.carrotsearch.hppc.HashOrderMixingStrategy);
    descriptor: (IDLcom/carrotsearch/hppc/HashOrderMixingStrategy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int expectedElements
        start local 2 // double loadFactor
        start local 4 // com.carrotsearch.hppc.HashOrderMixingStrategy orderMixer
         0: .line 138
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 139
            aload 0 /* this */
            aload 4 /* orderMixer */
            putfield com.carrotsearch.hppc.ObjectByteHashMap.orderMixer:Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
         2: .line 140
            aload 0 /* this */
            aload 0 /* this */
            dload 2 /* loadFactor */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.verifyLoadFactor:(D)D
            putfield com.carrotsearch.hppc.ObjectByteHashMap.loadFactor:D
         3: .line 141
            aload 0 /* this */
            iload 1 /* expectedElements */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.ensureCapacity:(I)V
         4: .line 142
            return
        end local 4 // com.carrotsearch.hppc.HashOrderMixingStrategy orderMixer
        end local 2 // double loadFactor
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    5     1  expectedElements  I
            0    5     2        loadFactor  D
            0    5     4        orderMixer  Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
    MethodParameters:
                  Name  Flags
      expectedElements  
      loadFactor        
      orderMixer        

  public void <init>(com.carrotsearch.hppc.ObjectByteAssociativeContainer<? extends KType>);
    descriptor: (Lcom/carrotsearch/hppc/ObjectByteAssociativeContainer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // com.carrotsearch.hppc.ObjectByteAssociativeContainer container
         0: .line 148
            aload 0 /* this */
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ObjectByteAssociativeContainer.size:()I
            invokespecial com.carrotsearch.hppc.ObjectByteHashMap.<init>:(I)V
         1: .line 149
            aload 0 /* this */
            aload 1 /* container */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.putAll:(Lcom/carrotsearch/hppc/ObjectByteAssociativeContainer;)I
            pop
         2: .line 150
            return
        end local 1 // com.carrotsearch.hppc.ObjectByteAssociativeContainer container
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    3     1  container  Lcom/carrotsearch/hppc/ObjectByteAssociativeContainer<+TKType;>;
    Signature: (Lcom/carrotsearch/hppc/ObjectByteAssociativeContainer<+TKType;>;)V
    MethodParameters:
           Name  Flags
      container  

  public byte put(KType, );
    descriptor: (Ljava/lang/Object;B)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object key
        start local 2 // byte value
         0: .line 157
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            if_icmplt 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 3 /* mask */
        start local 3 // int mask
         2: .line 160
            aload 1 /* key */
            ifnonnull 7
         3: .line 161
            aload 0 /* this */
            iconst_1
            putfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
         4: .line 162
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 3 /* mask */
            iconst_1
            iadd
            baload
            istore 4 /* previousValue */
        start local 4 // byte previousValue
         5: .line 163
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 3 /* mask */
            iconst_1
            iadd
            iload 2 /* value */
            bastore
         6: .line 164
            iload 4 /* previousValue */
            ireturn
        end local 4 // byte previousValue
         7: .line 166
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 4 /* keys */
        start local 4 // java.lang.Object[] keys
         8: .line 167
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.hashKey:(Ljava/lang/Object;)I
            iload 3 /* mask */
            iand
            istore 5 /* slot */
        start local 5 // int slot
         9: .line 170
            goto 15
        start local 6 // java.lang.Object existing
        10: .line 171
      StackMap locals: java.lang.Object[] int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 6 /* existing */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 14
        11: .line 172
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 5 /* slot */
            baload
            istore 7 /* previousValue */
        start local 7 // byte previousValue
        12: .line 173
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 5 /* slot */
            iload 2 /* value */
            bastore
        13: .line 174
            iload 7 /* previousValue */
            ireturn
        end local 7 // byte previousValue
        14: .line 176
      StackMap locals:
      StackMap stack:
            iload 5 /* slot */
            iconst_1
            iadd
            iload 3 /* mask */
            iand
            istore 5 /* slot */
        end local 6 // java.lang.Object existing
        15: .line 170
      StackMap locals:
      StackMap stack:
            aload 4 /* keys */
            iload 5 /* slot */
            aaload
            dup
            astore 6 /* existing */
        start local 6 // java.lang.Object existing
        16: ifnonnull 10
        17: .line 179
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.resizeAt:I
            if_icmpne 20
        18: .line 180
            aload 0 /* this */
            iload 5 /* slot */
            aload 1 /* key */
            iload 2 /* value */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.allocateThenInsertThenRehash:(ILjava/lang/Object;B)V
        19: .line 181
            goto 22
        20: .line 182
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 4 /* keys */
            iload 5 /* slot */
            aload 1 /* key */
            aastore
        21: .line 183
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 5 /* slot */
            iload 2 /* value */
            bastore
        22: .line 186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
            iconst_1
            iadd
            putfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
        23: .line 187
            iconst_0
            ireturn
        end local 6 // java.lang.Object existing
        end local 5 // int slot
        end local 4 // java.lang.Object[] keys
        end local 3 // int mask
        end local 2 // byte value
        end local 1 // java.lang.Object key
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   24     0           this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   24     1            key  TKType;
            0   24     2          value  B
            2   24     3           mask  I
            5    7     4  previousValue  B
            8   24     4           keys  [Ljava/lang/Object;
            9   24     5           slot  I
           10   15     6       existing  TKType;
           16   24     6       existing  TKType;
           12   14     7  previousValue  B
    Signature: (TKType;B)B
    MethodParameters:
       Name  Flags
      key    
      value  

  public int putAll(com.carrotsearch.hppc.ObjectByteAssociativeContainer<? extends KType>);
    descriptor: (Lcom/carrotsearch/hppc/ObjectByteAssociativeContainer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // com.carrotsearch.hppc.ObjectByteAssociativeContainer container
         0: .line 196
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            istore 2 /* count */
        start local 2 // int count
         1: .line 197
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ObjectByteAssociativeContainer.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap com.carrotsearch.hppc.ObjectByteAssociativeContainer int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectByteCursor
            astore 3 /* c */
        start local 3 // com.carrotsearch.hppc.cursors.ObjectByteCursor c
         3: .line 198
            aload 0 /* this */
            aload 3 /* c */
            getfield com.carrotsearch.hppc.cursors.ObjectByteCursor.key:Ljava/lang/Object;
            aload 3 /* c */
            getfield com.carrotsearch.hppc.cursors.ObjectByteCursor.value:B
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.put:(Ljava/lang/Object;B)B
            pop
        end local 3 // com.carrotsearch.hppc.cursors.ObjectByteCursor c
         4: .line 197
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 200
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            iload 2 /* count */
            isub
            ireturn
        end local 2 // int count
        end local 1 // com.carrotsearch.hppc.ObjectByteAssociativeContainer container
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    6     1  container  Lcom/carrotsearch/hppc/ObjectByteAssociativeContainer<+TKType;>;
            1    6     2      count  I
            3    4     3          c  Lcom/carrotsearch/hppc/cursors/ObjectByteCursor<+TKType;>;
    Signature: (Lcom/carrotsearch/hppc/ObjectByteAssociativeContainer<+TKType;>;)I
    MethodParameters:
           Name  Flags
      container  

  public int putAll(java.lang.Iterable<? extends com.carrotsearch.hppc.cursors.ObjectByteCursor<? extends KType>>);
    descriptor: (Ljava/lang/Iterable;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Iterable iterable
         0: .line 208
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            istore 2 /* count */
        start local 2 // int count
         1: .line 209
            aload 1 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap java.lang.Iterable int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectByteCursor
            astore 3 /* c */
        start local 3 // com.carrotsearch.hppc.cursors.ObjectByteCursor c
         3: .line 210
            aload 0 /* this */
            aload 3 /* c */
            getfield com.carrotsearch.hppc.cursors.ObjectByteCursor.key:Ljava/lang/Object;
            aload 3 /* c */
            getfield com.carrotsearch.hppc.cursors.ObjectByteCursor.value:B
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.put:(Ljava/lang/Object;B)B
            pop
        end local 3 // com.carrotsearch.hppc.cursors.ObjectByteCursor c
         4: .line 209
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 212
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            iload 2 /* count */
            isub
            ireturn
        end local 2 // int count
        end local 1 // java.lang.Iterable iterable
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    6     1  iterable  Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/ObjectByteCursor<+TKType;>;>;
            1    6     2     count  I
            3    4     3         c  Lcom/carrotsearch/hppc/cursors/ObjectByteCursor<+TKType;>;
    Signature: (Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/ObjectByteCursor<+TKType;>;>;)I
    MethodParameters:
          Name  Flags
      iterable  

  public boolean putIfAbsent(KType, );
    descriptor: (Ljava/lang/Object;B)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object key
        start local 2 // byte value
         0: .line 228
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.indexOf:(Ljava/lang/Object;)I
            istore 3 /* keyIndex */
        start local 3 // int keyIndex
         1: .line 229
            aload 0 /* this */
            iload 3 /* keyIndex */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.indexExists:(I)Z
            ifne 4
         2: .line 230
            aload 0 /* this */
            iload 3 /* keyIndex */
            aload 1 /* key */
            iload 2 /* value */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.indexInsert:(ILjava/lang/Object;B)V
         3: .line 231
            iconst_1
            ireturn
         4: .line 233
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // int keyIndex
        end local 2 // byte value
        end local 1 // java.lang.Object key
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    5     1       key  TKType;
            0    5     2     value  B
            1    5     3  keyIndex  I
    Signature: (TKType;B)Z
    MethodParameters:
       Name  Flags
      key    
      value  

  public byte putOrAdd(KType, byte, );
    descriptor: (Ljava/lang/Object;BB)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object key
        start local 2 // byte putValue
        start local 3 // byte incrementValue
         0: .line 253
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            if_icmplt 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 255
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.indexOf:(Ljava/lang/Object;)I
            istore 4 /* keyIndex */
        start local 4 // int keyIndex
         2: .line 256
            aload 0 /* this */
            iload 4 /* keyIndex */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.indexExists:(I)Z
            ifeq 6
         3: .line 257
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 4 /* keyIndex */
            baload
            iload 3 /* incrementValue */
            iadd
            i2b
            istore 2 /* putValue */
         4: .line 258
            aload 0 /* this */
            iload 4 /* keyIndex */
            iload 2 /* putValue */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.indexReplace:(IB)B
            pop
         5: .line 259
            goto 7
         6: .line 260
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* keyIndex */
            aload 1 /* key */
            iload 2 /* putValue */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.indexInsert:(ILjava/lang/Object;B)V
         7: .line 262
      StackMap locals:
      StackMap stack:
            iload 2 /* putValue */
            ireturn
        end local 4 // int keyIndex
        end local 3 // byte incrementValue
        end local 2 // byte putValue
        end local 1 // java.lang.Object key
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    8     1             key  TKType;
            0    8     2        putValue  B
            0    8     3  incrementValue  B
            2    8     4        keyIndex  I
    Signature: (TKType;BB)B
    MethodParameters:
                Name  Flags
      key             
      putValue        
      incrementValue  

  public byte addTo(KType, );
    descriptor: (Ljava/lang/Object;B)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object key
        start local 2 // byte incrementValue
         0: .line 278
            aload 0 /* this */
            aload 1 /* key */
            iload 2 /* incrementValue */
            iload 2 /* incrementValue */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.putOrAdd:(Ljava/lang/Object;BB)B
            ireturn
        end local 2 // byte incrementValue
        end local 1 // java.lang.Object key
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    1     1             key  TKType;
            0    1     2  incrementValue  B
    Signature: (TKType;B)B
    MethodParameters:
                Name  Flags
      key             
      incrementValue  

  public byte remove();
    descriptor: (Ljava/lang/Object;)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object key
         0: .line 287
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 2 /* mask */
        start local 2 // int mask
         1: .line 288
            aload 1 /* key */
            ifnonnull 6
         2: .line 289
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
         3: .line 290
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 2 /* mask */
            iconst_1
            iadd
            baload
            istore 3 /* previousValue */
        start local 3 // byte previousValue
         4: .line 291
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 2 /* mask */
            iconst_1
            iadd
            iconst_0
            bastore
         5: .line 292
            iload 3 /* previousValue */
            ireturn
        end local 3 // byte previousValue
         6: .line 294
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 3 /* keys */
        start local 3 // java.lang.Object[] keys
         7: .line 295
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.hashKey:(Ljava/lang/Object;)I
            iload 2 /* mask */
            iand
            istore 4 /* slot */
        start local 4 // int slot
         8: .line 298
            goto 14
        start local 5 // java.lang.Object existing
         9: .line 299
      StackMap locals: java.lang.Object[] int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 5 /* existing */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 13
        10: .line 300
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 4 /* slot */
            baload
            istore 6 /* previousValue */
        start local 6 // byte previousValue
        11: .line 301
            aload 0 /* this */
            iload 4 /* slot */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.shiftConflictingKeys:(I)V
        12: .line 302
            iload 6 /* previousValue */
            ireturn
        end local 6 // byte previousValue
        13: .line 304
      StackMap locals:
      StackMap stack:
            iload 4 /* slot */
            iconst_1
            iadd
            iload 2 /* mask */
            iand
            istore 4 /* slot */
        end local 5 // java.lang.Object existing
        14: .line 298
      StackMap locals:
      StackMap stack:
            aload 3 /* keys */
            iload 4 /* slot */
            aaload
            dup
            astore 5 /* existing */
        start local 5 // java.lang.Object existing
        15: ifnonnull 9
        16: .line 307
            iconst_0
            ireturn
        end local 5 // java.lang.Object existing
        end local 4 // int slot
        end local 3 // java.lang.Object[] keys
        end local 2 // int mask
        end local 1 // java.lang.Object key
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   17     1            key  TKType;
            1   17     2           mask  I
            4    6     3  previousValue  B
            7   17     3           keys  [Ljava/lang/Object;
            8   17     4           slot  I
            9   14     5       existing  TKType;
           15   17     5       existing  TKType;
           11   13     6  previousValue  B
    Signature: (TKType;)B
    MethodParameters:
      Name  Flags
      key   

  public int removeAll(com.carrotsearch.hppc.ObjectContainer<? super KType>);
    descriptor: (Lcom/carrotsearch/hppc/ObjectContainer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // com.carrotsearch.hppc.ObjectContainer other
         0: .line 316
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            istore 2 /* before */
        start local 2 // int before
         1: .line 322
            aload 1 /* other */
            invokeinterface com.carrotsearch.hppc.ObjectContainer.size:()I
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            if_icmplt 18
         2: .line 323
            aload 1 /* other */
            instanceof com.carrotsearch.hppc.ObjectLookupContainer
            ifeq 18
         3: .line 324
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifeq 7
         4: .line 325
            aload 1 /* other */
            aconst_null
            invokeinterface com.carrotsearch.hppc.ObjectContainer.contains:(Ljava/lang/Object;)Z
            ifeq 7
         5: .line 326
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
         6: .line 327
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            iconst_0
            bastore
         7: .line 331
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 3 /* keys */
        start local 3 // java.lang.Object[] keys
         8: .line 332
            iconst_0
            istore 4 /* slot */
        start local 4 // int slot
         9: aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 5 /* max */
        start local 5 // int max
        10: goto 16
        11: .line 334
      StackMap locals: java.lang.Object[] int int
      StackMap stack:
            aload 3 /* keys */
            iload 4 /* slot */
            aaload
            dup
            astore 6 /* existing */
        start local 6 // java.lang.Object existing
        12: ifnull 15
            aload 1 /* other */
            aload 6 /* existing */
            invokeinterface com.carrotsearch.hppc.ObjectContainer.contains:(Ljava/lang/Object;)Z
            ifeq 15
        13: .line 336
            aload 0 /* this */
            iload 4 /* slot */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.shiftConflictingKeys:(I)V
        14: .line 337
            goto 16
        15: .line 338
      StackMap locals: java.lang.Object
      StackMap stack:
            iinc 4 /* slot */ 1
        end local 6 // java.lang.Object existing
        16: .line 332
      StackMap locals:
      StackMap stack:
            iload 4 /* slot */
            iload 5 /* max */
            if_icmple 11
        end local 5 // int max
        end local 4 // int slot
        end local 3 // java.lang.Object[] keys
        17: .line 341
            goto 22
        18: .line 342
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            invokeinterface com.carrotsearch.hppc.ObjectContainer.iterator:()Ljava/util/Iterator;
            astore 4
            goto 21
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap com.carrotsearch.hppc.ObjectContainer int top java.util.Iterator
      StackMap stack:
        19: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectCursor
            astore 3 /* c */
        start local 3 // com.carrotsearch.hppc.cursors.ObjectCursor c
        20: .line 343
            aload 0 /* this */
            aload 3 /* c */
            getfield com.carrotsearch.hppc.cursors.ObjectCursor.value:Ljava/lang/Object;
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.remove:(Ljava/lang/Object;)B
            pop
        end local 3 // com.carrotsearch.hppc.cursors.ObjectCursor c
        21: .line 342
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 19
        22: .line 347
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap com.carrotsearch.hppc.ObjectContainer int
      StackMap stack:
            iload 2 /* before */
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            isub
            ireturn
        end local 2 // int before
        end local 1 // com.carrotsearch.hppc.ObjectContainer other
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   23     0      this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   23     1     other  Lcom/carrotsearch/hppc/ObjectContainer<-TKType;>;
            1   23     2    before  I
            8   17     3      keys  [Ljava/lang/Object;
            9   17     4      slot  I
           10   17     5       max  I
           12   16     6  existing  TKType;
           20   21     3         c  Lcom/carrotsearch/hppc/cursors/ObjectCursor<*>;
    Signature: (Lcom/carrotsearch/hppc/ObjectContainer<-TKType;>;)I
    MethodParameters:
       Name  Flags
      other  

  public int removeAll(com.carrotsearch.hppc.predicates.ObjectBytePredicate<? super KType>);
    descriptor: (Lcom/carrotsearch/hppc/predicates/ObjectBytePredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // com.carrotsearch.hppc.predicates.ObjectBytePredicate predicate
         0: .line 355
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            istore 2 /* before */
        start local 2 // int before
         1: .line 357
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 3 /* mask */
        start local 3 // int mask
         2: .line 359
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifeq 6
         3: .line 360
            aload 1 /* predicate */
            aconst_null
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 3 /* mask */
            iconst_1
            iadd
            baload
            invokeinterface com.carrotsearch.hppc.predicates.ObjectBytePredicate.apply:(Ljava/lang/Object;B)Z
            ifeq 6
         4: .line 361
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
         5: .line 362
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 3 /* mask */
            iconst_1
            iadd
            iconst_0
            bastore
         6: .line 366
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 4 /* keys */
        start local 4 // java.lang.Object[] keys
         7: .line 367
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            astore 5 /* values */
        start local 5 // byte[] values
         8: .line 368
            iconst_0
            istore 6 /* slot */
        start local 6 // int slot
         9: goto 16
        10: .line 370
      StackMap locals: java.lang.Object[] byte[] int
      StackMap stack:
            aload 4 /* keys */
            iload 6 /* slot */
            aaload
            dup
            astore 7 /* existing */
        start local 7 // java.lang.Object existing
        11: ifnull 15
        12: .line 371
            aload 1 /* predicate */
            aload 7 /* existing */
            aload 5 /* values */
            iload 6 /* slot */
            baload
            invokeinterface com.carrotsearch.hppc.predicates.ObjectBytePredicate.apply:(Ljava/lang/Object;B)Z
            ifeq 15
        13: .line 373
            aload 0 /* this */
            iload 6 /* slot */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.shiftConflictingKeys:(I)V
        14: .line 374
            goto 16
        15: .line 375
      StackMap locals: java.lang.Object
      StackMap stack:
            iinc 6 /* slot */ 1
        end local 7 // java.lang.Object existing
        16: .line 368
      StackMap locals:
      StackMap stack:
            iload 6 /* slot */
            iload 3 /* mask */
            if_icmple 10
        end local 6 // int slot
        17: .line 379
            iload 2 /* before */
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            isub
            ireturn
        end local 5 // byte[] values
        end local 4 // java.lang.Object[] keys
        end local 3 // int mask
        end local 2 // int before
        end local 1 // com.carrotsearch.hppc.predicates.ObjectBytePredicate predicate
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   18     1  predicate  Lcom/carrotsearch/hppc/predicates/ObjectBytePredicate<-TKType;>;
            1   18     2     before  I
            2   18     3       mask  I
            7   18     4       keys  [Ljava/lang/Object;
            8   18     5     values  [B
            9   17     6       slot  I
           11   16     7   existing  TKType;
    Signature: (Lcom/carrotsearch/hppc/predicates/ObjectBytePredicate<-TKType;>;)I
    MethodParameters:
           Name  Flags
      predicate  

  public int removeAll(com.carrotsearch.hppc.predicates.ObjectPredicate<? super KType>);
    descriptor: (Lcom/carrotsearch/hppc/predicates/ObjectPredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // com.carrotsearch.hppc.predicates.ObjectPredicate predicate
         0: .line 387
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            istore 2 /* before */
        start local 2 // int before
         1: .line 389
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifeq 5
         2: .line 390
            aload 1 /* predicate */
            aconst_null
            invokeinterface com.carrotsearch.hppc.predicates.ObjectPredicate.apply:(Ljava/lang/Object;)Z
            ifeq 5
         3: .line 391
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
         4: .line 392
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            iconst_0
            bastore
         5: .line 396
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 3 /* keys */
        start local 3 // java.lang.Object[] keys
         6: .line 397
            iconst_0
            istore 4 /* slot */
        start local 4 // int slot
         7: aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 5 /* max */
        start local 5 // int max
         8: goto 15
         9: .line 399
      StackMap locals: java.lang.Object[] int int
      StackMap stack:
            aload 3 /* keys */
            iload 4 /* slot */
            aaload
            dup
            astore 6 /* existing */
        start local 6 // java.lang.Object existing
        10: ifnull 14
        11: .line 400
            aload 1 /* predicate */
            aload 6 /* existing */
            invokeinterface com.carrotsearch.hppc.predicates.ObjectPredicate.apply:(Ljava/lang/Object;)Z
            ifeq 14
        12: .line 402
            aload 0 /* this */
            iload 4 /* slot */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.shiftConflictingKeys:(I)V
        13: .line 403
            goto 15
        14: .line 404
      StackMap locals: java.lang.Object
      StackMap stack:
            iinc 4 /* slot */ 1
        end local 6 // java.lang.Object existing
        15: .line 397
      StackMap locals:
      StackMap stack:
            iload 4 /* slot */
            iload 5 /* max */
            if_icmple 9
        end local 5 // int max
        end local 4 // int slot
        16: .line 408
            iload 2 /* before */
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            isub
            ireturn
        end local 3 // java.lang.Object[] keys
        end local 2 // int before
        end local 1 // com.carrotsearch.hppc.predicates.ObjectPredicate predicate
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   17     1  predicate  Lcom/carrotsearch/hppc/predicates/ObjectPredicate<-TKType;>;
            1   17     2     before  I
            6   17     3       keys  [Ljava/lang/Object;
            7   16     4       slot  I
            8   16     5        max  I
           10   15     6   existing  TKType;
    Signature: (Lcom/carrotsearch/hppc/predicates/ObjectPredicate<-TKType;>;)I
    MethodParameters:
           Name  Flags
      predicate  

  public byte get();
    descriptor: (Ljava/lang/Object;)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object key
         0: .line 416
            aload 1 /* key */
            ifnonnull 4
         1: .line 417
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifeq 2
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            baload
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: ireturn
         4: .line 419
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 2 /* keys */
        start local 2 // java.lang.Object[] keys
         5: .line 420
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 3 /* mask */
        start local 3 // int mask
         6: .line 421
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.hashKey:(Ljava/lang/Object;)I
            iload 3 /* mask */
            iand
            istore 4 /* slot */
        start local 4 // int slot
         7: .line 424
            goto 11
        start local 5 // java.lang.Object existing
         8: .line 425
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap java.lang.Object java.lang.Object[] int int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 5 /* existing */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 10
         9: .line 426
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 4 /* slot */
            baload
            ireturn
        10: .line 428
      StackMap locals:
      StackMap stack:
            iload 4 /* slot */
            iconst_1
            iadd
            iload 3 /* mask */
            iand
            istore 4 /* slot */
        end local 5 // java.lang.Object existing
        11: .line 424
      StackMap locals:
      StackMap stack:
            aload 2 /* keys */
            iload 4 /* slot */
            aaload
            dup
            astore 5 /* existing */
        start local 5 // java.lang.Object existing
        12: ifnonnull 8
        13: .line 431
            iconst_0
            ireturn
        end local 5 // java.lang.Object existing
        end local 4 // int slot
        end local 3 // int mask
        end local 2 // java.lang.Object[] keys
        end local 1 // java.lang.Object key
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   14     1       key  TKType;
            5   14     2      keys  [Ljava/lang/Object;
            6   14     3      mask  I
            7   14     4      slot  I
            8   11     5  existing  TKType;
           12   14     5  existing  TKType;
    Signature: (TKType;)B
    MethodParameters:
      Name  Flags
      key   

  public byte getOrDefault(KType, );
    descriptor: (Ljava/lang/Object;B)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object key
        start local 2 // byte defaultValue
         0: .line 440
            aload 1 /* key */
            ifnonnull 4
         1: .line 441
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifeq 2
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            baload
            goto 3
      StackMap locals:
      StackMap stack:
         2: iload 2 /* defaultValue */
      StackMap locals:
      StackMap stack: int
         3: ireturn
         4: .line 443
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 3 /* keys */
        start local 3 // java.lang.Object[] keys
         5: .line 444
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 4 /* mask */
        start local 4 // int mask
         6: .line 445
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.hashKey:(Ljava/lang/Object;)I
            iload 4 /* mask */
            iand
            istore 5 /* slot */
        start local 5 // int slot
         7: .line 448
            goto 11
        start local 6 // java.lang.Object existing
         8: .line 449
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap java.lang.Object int java.lang.Object[] int int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 6 /* existing */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 10
         9: .line 450
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 5 /* slot */
            baload
            ireturn
        10: .line 452
      StackMap locals:
      StackMap stack:
            iload 5 /* slot */
            iconst_1
            iadd
            iload 4 /* mask */
            iand
            istore 5 /* slot */
        end local 6 // java.lang.Object existing
        11: .line 448
      StackMap locals:
      StackMap stack:
            aload 3 /* keys */
            iload 5 /* slot */
            aaload
            dup
            astore 6 /* existing */
        start local 6 // java.lang.Object existing
        12: ifnonnull 8
        13: .line 455
            iload 2 /* defaultValue */
            ireturn
        end local 6 // java.lang.Object existing
        end local 5 // int slot
        end local 4 // int mask
        end local 3 // java.lang.Object[] keys
        end local 2 // byte defaultValue
        end local 1 // java.lang.Object key
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   14     0          this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   14     1           key  TKType;
            0   14     2  defaultValue  B
            5   14     3          keys  [Ljava/lang/Object;
            6   14     4          mask  I
            7   14     5          slot  I
            8   11     6      existing  TKType;
           12   14     6      existing  TKType;
    Signature: (TKType;B)B
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public boolean containsKey();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object key
         0: .line 464
            aload 1 /* key */
            ifnonnull 2
         1: .line 465
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ireturn
         2: .line 467
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 2 /* keys */
        start local 2 // java.lang.Object[] keys
         3: .line 468
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 3 /* mask */
        start local 3 // int mask
         4: .line 469
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.hashKey:(Ljava/lang/Object;)I
            iload 3 /* mask */
            iand
            istore 4 /* slot */
        start local 4 // int slot
         5: .line 472
            goto 9
        start local 5 // java.lang.Object existing
         6: .line 473
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap java.lang.Object java.lang.Object[] int int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 5 /* existing */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 8
         7: .line 474
            iconst_1
            ireturn
         8: .line 476
      StackMap locals:
      StackMap stack:
            iload 4 /* slot */
            iconst_1
            iadd
            iload 3 /* mask */
            iand
            istore 4 /* slot */
        end local 5 // java.lang.Object existing
         9: .line 472
      StackMap locals:
      StackMap stack:
            aload 2 /* keys */
            iload 4 /* slot */
            aaload
            dup
            astore 5 /* existing */
        start local 5 // java.lang.Object existing
        10: ifnonnull 6
        11: .line 479
            iconst_0
            ireturn
        end local 5 // java.lang.Object existing
        end local 4 // int slot
        end local 3 // int mask
        end local 2 // java.lang.Object[] keys
        end local 1 // java.lang.Object key
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   12     1       key  TKType;
            3   12     2      keys  [Ljava/lang/Object;
            4   12     3      mask  I
            5   12     4      slot  I
            6    9     5  existing  TKType;
           10   12     5  existing  TKType;
    Signature: (TKType;)Z
    MethodParameters:
      Name  Flags
      key   

  public int indexOf();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object key
         0: .line 488
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 2 /* mask */
        start local 2 // int mask
         1: .line 489
            aload 1 /* key */
            ifnonnull 5
         2: .line 490
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifeq 3
            iload 2 /* mask */
            iconst_1
            iadd
            goto 4
      StackMap locals: int
      StackMap stack:
         3: iload 2 /* mask */
            iconst_1
            iadd
            iconst_m1
            ixor
      StackMap locals:
      StackMap stack: int
         4: ireturn
         5: .line 492
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 3 /* keys */
        start local 3 // java.lang.Object[] keys
         6: .line 493
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.hashKey:(Ljava/lang/Object;)I
            iload 2 /* mask */
            iand
            istore 4 /* slot */
        start local 4 // int slot
         7: .line 496
            goto 11
        start local 5 // java.lang.Object existing
         8: .line 497
      StackMap locals: java.lang.Object[] int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 5 /* existing */
            aload 1 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 10
         9: .line 498
            iload 4 /* slot */
            ireturn
        10: .line 500
      StackMap locals:
      StackMap stack:
            iload 4 /* slot */
            iconst_1
            iadd
            iload 2 /* mask */
            iand
            istore 4 /* slot */
        end local 5 // java.lang.Object existing
        11: .line 496
      StackMap locals:
      StackMap stack:
            aload 3 /* keys */
            iload 4 /* slot */
            aaload
            dup
            astore 5 /* existing */
        start local 5 // java.lang.Object existing
        12: ifnonnull 8
        13: .line 503
            iload 4 /* slot */
            iconst_m1
            ixor
            ireturn
        end local 5 // java.lang.Object existing
        end local 4 // int slot
        end local 3 // java.lang.Object[] keys
        end local 2 // int mask
        end local 1 // java.lang.Object key
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   14     1       key  TKType;
            1   14     2      mask  I
            6   14     3      keys  [Ljava/lang/Object;
            7   14     4      slot  I
            8   11     5  existing  TKType;
           12   14     5  existing  TKType;
    Signature: (TKType;)I
    MethodParameters:
      Name  Flags
      key   

  public boolean indexExists(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int index
         0: .line 512
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 4
            iload 1 /* index */
            iflt 4
         1: .line 513
            iload 1 /* index */
            iflt 2
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            if_icmple 4
         2: .line 514
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            if_icmpne 3
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifne 4
      StackMap locals:
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 516
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iflt 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    6     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public byte indexGet(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int index
         0: .line 524
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 1
            iload 1 /* index */
            ifge 1
            new java.lang.AssertionError
            dup
            ldc "The index must point at an existing key."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 525
      StackMap locals:
      StackMap stack:
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 4
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            if_icmple 4
         2: .line 526
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            if_icmpne 3
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifne 4
      StackMap locals:
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 528
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 1 /* index */
            baload
            ireturn
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    5     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public byte indexReplace(int, byte);
    descriptor: (IB)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int index
        start local 2 // byte newValue
         0: .line 536
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 1
            iload 1 /* index */
            ifge 1
            new java.lang.AssertionError
            dup
            ldc "The index must point at an existing key."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 537
      StackMap locals:
      StackMap stack:
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 4
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            if_icmple 4
         2: .line 538
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            if_icmpne 3
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifne 4
      StackMap locals:
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 540
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 1 /* index */
            baload
            istore 3 /* previousValue */
        start local 3 // byte previousValue
         5: .line 541
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 1 /* index */
            iload 2 /* newValue */
            bastore
         6: .line 542
            iload 3 /* previousValue */
            ireturn
        end local 3 // byte previousValue
        end local 2 // byte newValue
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    7     1          index  I
            0    7     2       newValue  B
            5    7     3  previousValue  B
    MethodParameters:
          Name  Flags
      index     
      newValue  

  public void indexInsert(int, KType, );
    descriptor: (ILjava/lang/Object;B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int index
        start local 2 // java.lang.Object key
        start local 3 // byte value
         0: .line 550
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 1
            iload 1 /* index */
            iflt 1
            new java.lang.AssertionError
            dup
            ldc "The index must not point at an existing key."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 552
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iconst_m1
            ixor
            istore 1 /* index */
         2: .line 553
            aload 2 /* key */
            ifnonnull 7
         3: .line 554
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 4
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            if_icmpeq 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 555
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 1 /* index */
            iload 3 /* value */
            bastore
         5: .line 556
            aload 0 /* this */
            iconst_1
            putfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
         6: .line 557
            goto 14
         7: .line 558
      StackMap locals:
      StackMap stack:
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 8
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            iload 1 /* index */
            aaload
            ifnull 8
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         8: .line 560
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.resizeAt:I
            if_icmpne 11
         9: .line 561
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* key */
            iload 3 /* value */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.allocateThenInsertThenRehash:(ILjava/lang/Object;B)V
        10: .line 562
            goto 13
        11: .line 563
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            iload 1 /* index */
            aload 2 /* key */
            aastore
        12: .line 564
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            iload 1 /* index */
            iload 3 /* value */
            bastore
        13: .line 567
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
            iconst_1
            iadd
            putfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
        14: .line 569
      StackMap locals:
      StackMap stack:
            return
        end local 3 // byte value
        end local 2 // java.lang.Object key
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   15     1  index  I
            0   15     2    key  TKType;
            0   15     3  value  B
    Signature: (ITKType;B)V
    MethodParameters:
       Name  Flags
      index  
      key    
      value  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
         0: .line 576
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
         1: .line 577
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
         2: .line 579
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 582
            return
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;

  public void release();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
         0: .line 589
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
         1: .line 590
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
         2: .line 592
            aload 0 /* this */
            aconst_null
            putfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
         3: .line 593
            aload 0 /* this */
            aconst_null
            putfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
         4: .line 594
            aload 0 /* this */
            iconst_4
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.ensureCapacity:(I)V
         5: .line 595
            return
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
         0: .line 602
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: int
         1: iconst_0
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap
      StackMap stack: int int
         2: iadd
            ireturn
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
         0: .line 609
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
         0: .line 617
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifeq 1
            ldc -559038737
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 1 /* h */
        start local 1 // int h
         3: .line 618
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.iterator:()Ljava/util/Iterator;
            astore 3
            goto 8
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap int top java.util.Iterator
      StackMap stack:
         4: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectByteCursor
            astore 2 /* c */
        start local 2 // com.carrotsearch.hppc.cursors.ObjectByteCursor c
         5: .line 619
            iload 1 /* h */
            aload 2 /* c */
            getfield com.carrotsearch.hppc.cursors.ObjectByteCursor.key:Ljava/lang/Object;
            invokestatic com.carrotsearch.hppc.BitMixer.mix:(Ljava/lang/Object;)I
         6: .line 620
            aload 2 /* c */
            getfield com.carrotsearch.hppc.cursors.ObjectByteCursor.value:B
            invokestatic com.carrotsearch.hppc.BitMixer.mix:(B)I
         7: .line 619
            iadd
            iadd
            istore 1 /* h */
        end local 2 // com.carrotsearch.hppc.cursors.ObjectByteCursor c
         8: .line 618
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         9: .line 622
            iload 1 /* h */
            ireturn
        end local 1 // int h
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            3   10     1     h  I
            5    8     2     c  Lcom/carrotsearch/hppc/cursors/ObjectByteCursor<TKType;>;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object obj
         0: .line 630
            aload 1 /* obj */
            ifnull 4
         1: .line 631
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpne 4
         2: .line 632
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.ObjectByteHashMap
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.equalElements:(Lcom/carrotsearch/hppc/ObjectByteHashMap;)Z
            ifeq 4
         3: .line 630
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    5     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  protected boolean equalElements(com.carrotsearch.hppc.ObjectByteHashMap<?>);
    descriptor: (Lcom/carrotsearch/hppc/ObjectByteHashMap;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // com.carrotsearch.hppc.ObjectByteHashMap other
         0: .line 641
            aload 1 /* other */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            if_icmpeq 2
         1: .line 642
            iconst_0
            ireturn
         2: .line 645
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.iterator:()Ljava/util/Iterator;
            astore 3
            goto 8
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap com.carrotsearch.hppc.ObjectByteHashMap top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectByteCursor
            astore 2 /* c */
        start local 2 // com.carrotsearch.hppc.cursors.ObjectByteCursor c
         4: .line 646
            aload 2 /* c */
            getfield com.carrotsearch.hppc.cursors.ObjectByteCursor.key:Ljava/lang/Object;
            astore 4 /* key */
        start local 4 // java.lang.Object key
         5: .line 647
            aload 0 /* this */
            aload 4 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.containsKey:(Ljava/lang/Object;)Z
            ifeq 7
         6: .line 648
            aload 0 /* this */
            aload 4 /* key */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.get:(Ljava/lang/Object;)B
            aload 2 /* c */
            getfield com.carrotsearch.hppc.cursors.ObjectByteCursor.value:B
            if_icmpeq 8
         7: .line 649
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap com.carrotsearch.hppc.ObjectByteHashMap com.carrotsearch.hppc.cursors.ObjectByteCursor java.util.Iterator java.lang.Object
      StackMap stack:
            iconst_0
            ireturn
        end local 4 // java.lang.Object key
        end local 2 // com.carrotsearch.hppc.cursors.ObjectByteCursor c
         8: .line 645
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap com.carrotsearch.hppc.ObjectByteHashMap top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         9: .line 653
            iconst_1
            ireturn
        end local 1 // com.carrotsearch.hppc.ObjectByteHashMap other
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   10     1  other  Lcom/carrotsearch/hppc/ObjectByteHashMap<*>;
            4    8     2      c  Lcom/carrotsearch/hppc/cursors/ObjectByteCursor<*>;
            5    8     4    key  TKType;
    Signature: (Lcom/carrotsearch/hppc/ObjectByteHashMap<*>;)Z
    MethodParameters:
       Name  Flags
      other  

  public void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int expectedElements
         0: .line 664
            iload 1 /* expectedElements */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.resizeAt:I
            if_icmpgt 1
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            ifnonnull 6
         1: .line 665
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 2 /* prevKeys */
        start local 2 // java.lang.Object[] prevKeys
         2: .line 666
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            astore 3 /* prevValues */
        start local 3 // byte[] prevValues
         3: .line 667
            aload 0 /* this */
            iload 1 /* expectedElements */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.loadFactor:D
            invokestatic com.carrotsearch.hppc.HashContainers.minBufferSize:(ID)I
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.allocateBuffers:(I)V
         4: .line 668
            aload 2 /* prevKeys */
            ifnull 6
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.isEmpty:()Z
            ifne 6
         5: .line 669
            aload 0 /* this */
            aload 2 /* prevKeys */
            aload 3 /* prevValues */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.rehash:([Ljava/lang/Object;[B)V
        end local 3 // byte[] prevValues
        end local 2 // java.lang.Object[] prevKeys
         6: .line 672
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    7     0              this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    7     1  expectedElements  I
            2    6     2          prevKeys  [Ljava/lang/Object;
            3    6     3        prevValues  [B
    MethodParameters:
                  Name  Flags
      expectedElements  

  public java.util.Iterator<com.carrotsearch.hppc.cursors.ObjectByteCursor<KType>> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
         0: .line 717
            new com.carrotsearch.hppc.ObjectByteHashMap$EntryIterator
            dup
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.ObjectByteHashMap$EntryIterator.<init>:(Lcom/carrotsearch/hppc/ObjectByteHashMap;)V
            areturn
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
    Signature: ()Ljava/util/Iterator<Lcom/carrotsearch/hppc/cursors/ObjectByteCursor<TKType;>;>;

  public <T extends com.carrotsearch.hppc.procedures.ObjectByteProcedure<? super KType>> T forEach();
    descriptor: (Lcom/carrotsearch/hppc/procedures/ObjectByteProcedure;)Lcom/carrotsearch/hppc/procedures/ObjectByteProcedure;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // com.carrotsearch.hppc.procedures.ObjectByteProcedure procedure
         0: .line 725
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 2 /* keys */
        start local 2 // java.lang.Object[] keys
         1: .line 726
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            astore 3 /* values */
        start local 3 // byte[] values
         2: .line 728
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifeq 4
         3: .line 729
            aload 1 /* procedure */
            aconst_null
            aload 3 /* values */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            baload
            invokeinterface com.carrotsearch.hppc.procedures.ObjectByteProcedure.apply:(Ljava/lang/Object;B)V
         4: .line 732
      StackMap locals: java.lang.Object[] byte[]
      StackMap stack:
            iconst_0
            istore 4 /* slot */
        start local 4 // int slot
         5: aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 5 /* max */
        start local 5 // int max
         6: goto 10
         7: .line 733
      StackMap locals: int int
      StackMap stack:
            aload 2 /* keys */
            iload 4 /* slot */
            aaload
            ifnull 9
         8: .line 734
            aload 1 /* procedure */
            aload 2 /* keys */
            iload 4 /* slot */
            aaload
            aload 3 /* values */
            iload 4 /* slot */
            baload
            invokeinterface com.carrotsearch.hppc.procedures.ObjectByteProcedure.apply:(Ljava/lang/Object;B)V
         9: .line 732
      StackMap locals:
      StackMap stack:
            iinc 4 /* slot */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* slot */
            iload 5 /* max */
            if_icmple 7
        end local 5 // int max
        end local 4 // int slot
        11: .line 738
            aload 1 /* procedure */
            areturn
        end local 3 // byte[] values
        end local 2 // java.lang.Object[] keys
        end local 1 // com.carrotsearch.hppc.procedures.ObjectByteProcedure procedure
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   12     1  procedure  TT;
            1   12     2       keys  [Ljava/lang/Object;
            2   12     3     values  [B
            5   11     4       slot  I
            6   11     5        max  I
    Signature: <T::Lcom/carrotsearch/hppc/procedures/ObjectByteProcedure<-TKType;>;>(TT;)TT;
    MethodParameters:
           Name  Flags
      procedure  

  public <T extends com.carrotsearch.hppc.predicates.ObjectBytePredicate<? super KType>> T forEach();
    descriptor: (Lcom/carrotsearch/hppc/predicates/ObjectBytePredicate;)Lcom/carrotsearch/hppc/predicates/ObjectBytePredicate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // com.carrotsearch.hppc.predicates.ObjectBytePredicate predicate
         0: .line 746
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 2 /* keys */
        start local 2 // java.lang.Object[] keys
         1: .line 747
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            astore 3 /* values */
        start local 3 // byte[] values
         2: .line 749
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            ifeq 5
         3: .line 750
            aload 1 /* predicate */
            aconst_null
            aload 3 /* values */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            baload
            invokeinterface com.carrotsearch.hppc.predicates.ObjectBytePredicate.apply:(Ljava/lang/Object;B)Z
            ifne 5
         4: .line 751
            aload 1 /* predicate */
            areturn
         5: .line 755
      StackMap locals: java.lang.Object[] byte[]
      StackMap stack:
            iconst_0
            istore 4 /* slot */
        start local 4 // int slot
         6: aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 5 /* max */
        start local 5 // int max
         7: goto 12
         8: .line 756
      StackMap locals: int int
      StackMap stack:
            aload 2 /* keys */
            iload 4 /* slot */
            aaload
            ifnull 11
         9: .line 757
            aload 1 /* predicate */
            aload 2 /* keys */
            iload 4 /* slot */
            aaload
            aload 3 /* values */
            iload 4 /* slot */
            baload
            invokeinterface com.carrotsearch.hppc.predicates.ObjectBytePredicate.apply:(Ljava/lang/Object;B)Z
            ifne 11
        10: .line 758
            goto 13
        11: .line 755
      StackMap locals:
      StackMap stack:
            iinc 4 /* slot */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* slot */
            iload 5 /* max */
            if_icmple 8
        end local 5 // int max
        end local 4 // int slot
        13: .line 763
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            areturn
        end local 3 // byte[] values
        end local 2 // java.lang.Object[] keys
        end local 1 // com.carrotsearch.hppc.predicates.ObjectBytePredicate predicate
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   14     1  predicate  TT;
            1   14     2       keys  [Ljava/lang/Object;
            2   14     3     values  [B
            6   13     4       slot  I
            7   13     5        max  I
    Signature: <T::Lcom/carrotsearch/hppc/predicates/ObjectBytePredicate<-TKType;>;>(TT;)TT;
    MethodParameters:
           Name  Flags
      predicate  

  public com.carrotsearch.hppc.ObjectByteHashMap<KType>.KeysContainer keys();
    descriptor: ()Lcom/carrotsearch/hppc/ObjectByteHashMap$KeysContainer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
         0: .line 771
            new com.carrotsearch.hppc.ObjectByteHashMap$KeysContainer
            dup
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.ObjectByteHashMap$KeysContainer.<init>:(Lcom/carrotsearch/hppc/ObjectByteHashMap;)V
            areturn
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
    Signature: ()Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>.KeysContainer;

  public com.carrotsearch.hppc.ByteCollection values();
    descriptor: ()Lcom/carrotsearch/hppc/ByteCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
         0: .line 893
            new com.carrotsearch.hppc.ObjectByteHashMap$ValuesContainer
            dup
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.ObjectByteHashMap$ValuesContainer.<init>:(Lcom/carrotsearch/hppc/ObjectByteHashMap;)V
            areturn
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;

  public com.carrotsearch.hppc.ObjectByteHashMap<KType> clone();
    descriptor: ()Lcom/carrotsearch/hppc/ObjectByteHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
         0: .line 1018
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.ObjectByteHashMap
            astore 1 /* cloned */
        start local 1 // com.carrotsearch.hppc.ObjectByteHashMap cloned
         1: .line 1019
            aload 1 /* cloned */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            putfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
         2: .line 1020
            aload 1 /* cloned */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
         3: .line 1021
            aload 1 /* cloned */
            aload 1 /* cloned */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
            putfield com.carrotsearch.hppc.ObjectByteHashMap.hasEmptyKey:Z
         4: .line 1022
            aload 1 /* cloned */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.orderMixer:Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
            invokeinterface com.carrotsearch.hppc.HashOrderMixingStrategy.clone:()Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
            putfield com.carrotsearch.hppc.ObjectByteHashMap.orderMixer:Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
         5: .line 1023
            aload 1 /* cloned */
         6: areturn
        end local 1 // com.carrotsearch.hppc.ObjectByteHashMap cloned
         7: .line 1024
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
            astore 1 /* e */
        start local 1 // java.lang.CloneNotSupportedException e
         8: .line 1025
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.CloneNotSupportedException e
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            1    7     1  cloned  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            8    9     1       e  Ljava/lang/CloneNotSupportedException;
      Exception table:
        from    to  target  type
           0     6       7  Class java.lang.CloneNotSupportedException
    Signature: ()Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
         0: .line 1034
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* buffer */
        start local 1 // java.lang.StringBuilder buffer
         1: .line 1035
            aload 1 /* buffer */
            ldc "["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 1037
            iconst_1
            istore 2 /* first */
        start local 2 // boolean first
         3: .line 1038
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.iterator:()Ljava/util/Iterator;
            astore 4
            goto 11
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap java.lang.StringBuilder int top java.util.Iterator
      StackMap stack:
         4: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ObjectByteCursor
            astore 3 /* cursor */
        start local 3 // com.carrotsearch.hppc.cursors.ObjectByteCursor cursor
         5: .line 1039
            iload 2 /* first */
            ifne 7
         6: .line 1040
            aload 1 /* buffer */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 1042
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap java.lang.StringBuilder int com.carrotsearch.hppc.cursors.ObjectByteCursor java.util.Iterator
      StackMap stack:
            aload 1 /* buffer */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.ObjectByteCursor.key:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         8: .line 1043
            aload 1 /* buffer */
            ldc "=>"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         9: .line 1044
            aload 1 /* buffer */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.ObjectByteCursor.value:B
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        10: .line 1045
            iconst_0
            istore 2 /* first */
        end local 3 // com.carrotsearch.hppc.cursors.ObjectByteCursor cursor
        11: .line 1038
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap java.lang.StringBuilder int top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        12: .line 1047
            aload 1 /* buffer */
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        13: .line 1048
            aload 1 /* buffer */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // boolean first
        end local 1 // java.lang.StringBuilder buffer
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            1   14     1  buffer  Ljava/lang/StringBuilder;
            3   14     2   first  Z
            5   11     3  cursor  Lcom/carrotsearch/hppc/cursors/ObjectByteCursor<TKType;>;

  public java.lang.String visualizeKeyDistribution(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int characters
         0: .line 1053
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iload 1 /* characters */
            invokestatic com.carrotsearch.hppc.ObjectBufferVisualizer.visualizeKeyDistribution:([Ljava/lang/Object;II)Ljava/lang/String;
            areturn
        end local 1 // int characters
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    1     1  characters  I
    MethodParameters:
            Name  Flags
      characters  

  public static <KType> com.carrotsearch.hppc.ObjectByteHashMap<KType> from(KType[], byte[]);
    descriptor: ([Ljava/lang/Object;[B)Lcom/carrotsearch/hppc/ObjectByteHashMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // java.lang.Object[] keys
        start local 1 // byte[] values
         0: .line 1060
            aload 0 /* keys */
            arraylength
            aload 1 /* values */
            arraylength
            if_icmpeq 2
         1: .line 1061
            new java.lang.IllegalArgumentException
            dup
            ldc "Arrays of keys and values must have an identical length."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1064
      StackMap locals:
      StackMap stack:
            new com.carrotsearch.hppc.ObjectByteHashMap
            dup
            aload 0 /* keys */
            arraylength
            invokespecial com.carrotsearch.hppc.ObjectByteHashMap.<init>:(I)V
            astore 2 /* map */
        start local 2 // com.carrotsearch.hppc.ObjectByteHashMap map
         3: .line 1065
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 7
         5: .line 1066
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap int
      StackMap stack:
            aload 2 /* map */
            aload 0 /* keys */
            iload 3 /* i */
            aaload
            aload 1 /* values */
            iload 3 /* i */
            baload
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.put:(Ljava/lang/Object;B)B
            pop
         6: .line 1065
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 0 /* keys */
            arraylength
            if_icmplt 5
        end local 3 // int i
         8: .line 1069
            aload 2 /* map */
            areturn
        end local 2 // com.carrotsearch.hppc.ObjectByteHashMap map
        end local 1 // byte[] values
        end local 0 // java.lang.Object[] keys
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    keys  [Ljava/lang/Object;
            0    9     1  values  [B
            3    9     2     map  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            4    8     3       i  I
    Signature: <KType:Ljava/lang/Object;>([TKType;[B)Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
    MethodParameters:
        Name  Flags
      keys    
      values  

  protected int hashKey();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object key
         0: .line 1085
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 1
            aload 1 /* key */
            ifnonnull 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 1086
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keyMixer:I
            invokestatic com.carrotsearch.hppc.BitMixer.mix:(Ljava/lang/Object;I)I
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    2     1   key  TKType;
    Signature: (TKType;)I
    MethodParameters:
      Name  Flags
      key   

  protected double verifyLoadFactor(double);
    descriptor: (D)D
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // double loadFactor
         0: .line 1094
            dload 1 /* loadFactor */
            ldc 0.009999999776482582
            ldc 0.9900000095367432
            invokestatic com.carrotsearch.hppc.HashContainers.checkLoadFactor:(DDD)V
         1: .line 1095
            dload 1 /* loadFactor */
            dreturn
        end local 1 // double loadFactor
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    2     1  loadFactor  D
    MethodParameters:
            Name  Flags
      loadFactor  

  protected void rehash(KType[], );
    descriptor: ([Ljava/lang/Object;[B)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object[] fromKeys
        start local 2 // byte[] fromValues
         0: .line 1102
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 3
            aload 1 /* fromKeys */
            arraylength
            aload 2 /* fromValues */
            arraylength
            if_icmpne 2
         1: .line 1103
            aload 1 /* fromKeys */
            arraylength
            iconst_1
            isub
            invokestatic com.carrotsearch.hppc.HashContainers.checkPowerOfTwo:(I)Z
            ifne 3
      StackMap locals:
      StackMap stack:
         2: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 1106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 3 /* keys */
        start local 3 // java.lang.Object[] keys
         4: .line 1107
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            astore 4 /* values */
        start local 4 // byte[] values
         5: .line 1108
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 5 /* mask */
        start local 5 // int mask
         6: .line 1112
            aload 1 /* fromKeys */
            arraylength
            iconst_1
            isub
            istore 7 /* from */
        start local 7 // int from
         7: .line 1113
            aload 3 /* keys */
            aload 3 /* keys */
            arraylength
            iconst_1
            isub
            aload 1 /* fromKeys */
            iload 7 /* from */
            aaload
            aastore
         8: .line 1114
            aload 4 /* values */
            aload 4 /* values */
            arraylength
            iconst_1
            isub
            aload 2 /* fromValues */
            iload 7 /* from */
            baload
            bastore
         9: .line 1115
            goto 18
        10: .line 1116
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap java.lang.Object[] byte[] java.lang.Object[] byte[] int top int
      StackMap stack:
            aload 1 /* fromKeys */
            iload 7 /* from */
            aaload
            dup
            astore 6 /* existing */
        start local 6 // java.lang.Object existing
        11: ifnull 18
        12: .line 1117
            aload 0 /* this */
            aload 6 /* existing */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.hashKey:(Ljava/lang/Object;)I
            iload 5 /* mask */
            iand
            istore 8 /* slot */
        start local 8 // int slot
        13: .line 1118
            goto 15
        14: .line 1119
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap java.lang.Object[] byte[] java.lang.Object[] byte[] int java.lang.Object int int
      StackMap stack:
            iload 8 /* slot */
            iconst_1
            iadd
            iload 5 /* mask */
            iand
            istore 8 /* slot */
        15: .line 1118
      StackMap locals:
      StackMap stack:
            aload 3 /* keys */
            iload 8 /* slot */
            aaload
            ifnonnull 14
        16: .line 1121
            aload 3 /* keys */
            iload 8 /* slot */
            aload 6 /* existing */
            aastore
        17: .line 1122
            aload 4 /* values */
            iload 8 /* slot */
            aload 2 /* fromValues */
            iload 7 /* from */
            baload
            bastore
        end local 8 // int slot
        end local 6 // java.lang.Object existing
        18: .line 1115
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap java.lang.Object[] byte[] java.lang.Object[] byte[] int top int
      StackMap stack:
            iinc 7 /* from */ -1
            iload 7 /* from */
            ifge 10
        19: .line 1125
            return
        end local 7 // int from
        end local 5 // int mask
        end local 4 // byte[] values
        end local 3 // java.lang.Object[] keys
        end local 2 // byte[] fromValues
        end local 1 // java.lang.Object[] fromKeys
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   20     0        this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   20     1    fromKeys  [Ljava/lang/Object;
            0   20     2  fromValues  [B
            4   20     3        keys  [Ljava/lang/Object;
            5   20     4      values  [B
            6   20     5        mask  I
           11   18     6    existing  TKType;
            7   20     7        from  I
           13   18     8        slot  I
    Signature: ([TKType;[B)V
    MethodParameters:
            Name  Flags
      fromKeys    
      fromValues  

  protected void allocateBuffers(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=9, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int arraySize
         0: .line 1132
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 1
            iload 1 /* arraySize */
            invokestatic java.lang.Integer.bitCount:(I)I
            iconst_1
            if_icmpeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 1135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.orderMixer:Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
            iload 1 /* arraySize */
            invokeinterface com.carrotsearch.hppc.HashOrderMixingStrategy.newKeyMixer:(I)I
            istore 2 /* newKeyMixer */
        start local 2 // int newKeyMixer
         2: .line 1138
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 3 /* prevKeys */
        start local 3 // java.lang.Object[] prevKeys
         3: .line 1139
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            astore 4 /* prevValues */
        start local 4 // byte[] prevValues
         4: .line 1141
            iconst_1
            istore 5 /* emptyElementSlot */
        start local 5 // int emptyElementSlot
         5: .line 1142
            aload 0 /* this */
            iload 1 /* arraySize */
            iload 5 /* emptyElementSlot */
            iadd
            anewarray java.lang.Object
            putfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
         6: .line 1143
            aload 0 /* this */
            iload 1 /* arraySize */
            iload 5 /* emptyElementSlot */
            iadd
            newarray 8
            putfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
        end local 5 // int emptyElementSlot
         7: .line 1144
            goto 17
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap int int java.lang.Object[] byte[]
      StackMap stack: java.lang.OutOfMemoryError
         8: astore 5 /* e */
        start local 5 // java.lang.OutOfMemoryError e
         9: .line 1145
            aload 0 /* this */
            aload 3 /* prevKeys */
            putfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
        10: .line 1146
            aload 0 /* this */
            aload 4 /* prevValues */
            putfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
        11: .line 1147
            new com.carrotsearch.hppc.BufferAllocationException
            dup
        12: .line 1148
            ldc "Not enough memory to allocate buffers for rehashing: %,d -> %,d"
        13: .line 1149
            aload 5 /* e */
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
        14: .line 1150
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
        15: .line 1151
            iload 1 /* arraySize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
        16: .line 1147
            aastore
            invokespecial com.carrotsearch.hppc.BufferAllocationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;[Ljava/lang/Object;)V
            athrow
        end local 5 // java.lang.OutOfMemoryError e
        17: .line 1154
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* arraySize */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.loadFactor:D
            invokestatic com.carrotsearch.hppc.HashContainers.expandAtCount:(ID)I
            putfield com.carrotsearch.hppc.ObjectByteHashMap.resizeAt:I
        18: .line 1155
            aload 0 /* this */
            iload 2 /* newKeyMixer */
            putfield com.carrotsearch.hppc.ObjectByteHashMap.keyMixer:I
        19: .line 1156
            aload 0 /* this */
            iload 1 /* arraySize */
            iconst_1
            isub
            putfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
        20: .line 1157
            return
        end local 4 // byte[] prevValues
        end local 3 // java.lang.Object[] prevKeys
        end local 2 // int newKeyMixer
        end local 1 // int arraySize
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   21     0              this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   21     1         arraySize  I
            2   21     2       newKeyMixer  I
            3   21     3          prevKeys  [Ljava/lang/Object;
            4   21     4        prevValues  [B
            5    7     5  emptyElementSlot  I
            9   17     5                 e  Ljava/lang/OutOfMemoryError;
      Exception table:
        from    to  target  type
           4     7       8  Class java.lang.OutOfMemoryError
    MethodParameters:
           Name  Flags
      arraySize  

  protected void allocateThenInsertThenRehash(int, KType, );
    descriptor: (ILjava/lang/Object;B)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int slot
        start local 2 // java.lang.Object pendingKey
        start local 3 // byte pendingValue
         0: .line 1169
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 4
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.resizeAt:I
            if_icmpne 3
         1: .line 1170
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            iload 1 /* slot */
            aaload
            ifnonnull 3
         2: .line 1171
            aload 2 /* pendingKey */
            ifnonnull 4
      StackMap locals:
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 1174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 4 /* prevKeys */
        start local 4 // java.lang.Object[] prevKeys
         5: .line 1175
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            astore 5 /* prevValues */
        start local 5 // byte[] prevValues
         6: .line 1176
            aload 0 /* this */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            iconst_1
            iadd
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.size:()I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.loadFactor:D
            invokestatic com.carrotsearch.hppc.HashContainers.nextBufferSize:(IID)I
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.allocateBuffers:(I)V
         7: .line 1177
            getstatic com.carrotsearch.hppc.ObjectByteHashMap.$assertionsDisabled:Z
            ifne 8
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            arraylength
            aload 4 /* prevKeys */
            arraylength
            if_icmpgt 8
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         8: .line 1181
      StackMap locals: java.lang.Object[] byte[]
      StackMap stack:
            aload 4 /* prevKeys */
            iload 1 /* slot */
            aload 2 /* pendingKey */
            aastore
         9: .line 1182
            aload 5 /* prevValues */
            iload 1 /* slot */
            iload 3 /* pendingValue */
            bastore
        10: .line 1185
            aload 0 /* this */
            aload 4 /* prevKeys */
            aload 5 /* prevValues */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.rehash:([Ljava/lang/Object;[B)V
        11: .line 1186
            return
        end local 5 // byte[] prevValues
        end local 4 // java.lang.Object[] prevKeys
        end local 3 // byte pendingValue
        end local 2 // java.lang.Object pendingKey
        end local 1 // int slot
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   12     1          slot  I
            0   12     2    pendingKey  TKType;
            0   12     3  pendingValue  B
            5   12     4      prevKeys  [Ljava/lang/Object;
            6   12     5    prevValues  [B
    Signature: (ITKType;B)V
    MethodParameters:
              Name  Flags
      slot          
      pendingKey    
      pendingValue  

  protected void shiftConflictingKeys(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=10, args_size=2
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // int gapSlot
         0: .line 1193
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.keys:[Ljava/lang/Object;
            astore 2 /* keys */
        start local 2 // java.lang.Object[] keys
         1: .line 1194
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.values:[B
            astore 3 /* values */
        start local 3 // byte[] values
         2: .line 1195
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ObjectByteHashMap.mask:I
            istore 4 /* mask */
        start local 4 // int mask
         3: .line 1198
            iconst_0
            istore 5 /* distance */
        start local 5 // int distance
         4: .line 1200
      StackMap locals: com.carrotsearch.hppc.ObjectByteHashMap int java.lang.Object[] byte[] int int
      StackMap stack:
            iload 1 /* gapSlot */
            iinc 5 /* distance */ 1
            iload 5 /* distance */
            iadd
            iload 4 /* mask */
            iand
            istore 6 /* slot */
        start local 6 // int slot
         5: .line 1201
            aload 2 /* keys */
            iload 6 /* slot */
            aaload
            astore 7 /* existing */
        start local 7 // java.lang.Object existing
         6: .line 1202
            aload 7 /* existing */
            ifnonnull 8
         7: .line 1203
            goto 16
         8: .line 1206
      StackMap locals: int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 7 /* existing */
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.hashKey:(Ljava/lang/Object;)I
            istore 8 /* idealSlot */
        start local 8 // int idealSlot
         9: .line 1207
            iload 6 /* slot */
            iload 8 /* idealSlot */
            isub
            iload 4 /* mask */
            iand
            istore 9 /* shift */
        start local 9 // int shift
        10: .line 1208
            iload 9 /* shift */
            iload 5 /* distance */
            if_icmplt 4
        11: .line 1213
            aload 2 /* keys */
            iload 1 /* gapSlot */
            aload 7 /* existing */
            aastore
        12: .line 1214
            aload 3 /* values */
            iload 1 /* gapSlot */
            aload 3 /* values */
            iload 6 /* slot */
            baload
            bastore
        13: .line 1215
            iload 6 /* slot */
            istore 1 /* gapSlot */
        14: .line 1216
            iconst_0
            istore 5 /* distance */
        end local 9 // int shift
        end local 8 // int idealSlot
        end local 7 // java.lang.Object existing
        end local 6 // int slot
        15: .line 1199
            goto 4
        16: .line 1221
      StackMap locals:
      StackMap stack:
            aload 2 /* keys */
            iload 1 /* gapSlot */
            aconst_null
            aastore
        17: .line 1222
            aload 3 /* values */
            iload 1 /* gapSlot */
            iconst_0
            bastore
        18: .line 1223
            aload 0 /* this */
            dup
            getfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
            iconst_1
            isub
            putfield com.carrotsearch.hppc.ObjectByteHashMap.assigned:I
        19: .line 1224
            return
        end local 5 // int distance
        end local 4 // int mask
        end local 3 // byte[] values
        end local 2 // java.lang.Object[] keys
        end local 1 // int gapSlot
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0   20     1    gapSlot  I
            1   20     2       keys  [Ljava/lang/Object;
            2   20     3     values  [B
            3   20     4       mask  I
            4   20     5   distance  I
            5   15     6       slot  I
            6   15     7   existing  TKType;
            9   15     8  idealSlot  I
           10   15     9      shift  I
    MethodParameters:
         Name  Flags
      gapSlot  

  protected boolean equals(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
        start local 1 // java.lang.Object v1
        start local 2 // java.lang.Object v2
         0: .line 1228
            aload 1 /* v1 */
            aload 2 /* v2 */
            if_acmpeq 2
            aload 1 /* v1 */
            ifnull 1
            aload 1 /* v1 */
            aload 2 /* v2 */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_1
            ireturn
        end local 2 // java.lang.Object v2
        end local 1 // java.lang.Object v1
        end local 0 // com.carrotsearch.hppc.ObjectByteHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/carrotsearch/hppc/ObjectByteHashMap<TKType;>;
            0    3     1    v1  Ljava/lang/Object;
            0    3     2    v2  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      v1    
      v2    

  public com.carrotsearch.hppc.ObjectCollection keys();
    descriptor: ()Lcom/carrotsearch/hppc/ObjectCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.keys:()Lcom/carrotsearch/hppc/ObjectByteHashMap$KeysContainer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.carrotsearch.hppc.ByteContainer values();
    descriptor: ()Lcom/carrotsearch/hppc/ByteContainer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.values:()Lcom/carrotsearch/hppc/ByteCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.carrotsearch.hppc.ObjectByteHashMap.clone:()Lcom/carrotsearch/hppc/ObjectByteHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
Signature: <KType:Ljava/lang/Object;>Ljava/lang/Object;Lcom/carrotsearch/hppc/ObjectByteMap<TKType;>;Lcom/carrotsearch/hppc/Preallocable;Ljava/lang/Cloneable;
SourceFile: "ObjectByteHashMap.java"
NestMembers:
  com.carrotsearch.hppc.ObjectByteHashMap$EntryIterator  com.carrotsearch.hppc.ObjectByteHashMap$KeysContainer  com.carrotsearch.hppc.ObjectByteHashMap$KeysContainer$1  com.carrotsearch.hppc.ObjectByteHashMap$KeysContainer$2  com.carrotsearch.hppc.ObjectByteHashMap$KeysIterator  com.carrotsearch.hppc.ObjectByteHashMap$ValuesContainer  com.carrotsearch.hppc.ObjectByteHashMap$ValuesContainer$1  com.carrotsearch.hppc.ObjectByteHashMap$ValuesContainer$2  com.carrotsearch.hppc.ObjectByteHashMap$ValuesIterator
InnerClasses:
  private final EntryIterator = com.carrotsearch.hppc.ObjectByteHashMap$EntryIterator of com.carrotsearch.hppc.ObjectByteHashMap
  public final KeysContainer = com.carrotsearch.hppc.ObjectByteHashMap$KeysContainer of com.carrotsearch.hppc.ObjectByteHashMap
  private final KeysIterator = com.carrotsearch.hppc.ObjectByteHashMap$KeysIterator of com.carrotsearch.hppc.ObjectByteHashMap
  private final ValuesContainer = com.carrotsearch.hppc.ObjectByteHashMap$ValuesContainer of com.carrotsearch.hppc.ObjectByteHashMap
  private final ValuesIterator = com.carrotsearch.hppc.ObjectByteHashMap$ValuesIterator of com.carrotsearch.hppc.ObjectByteHashMap