public class org.hsqldb.lib.DoubleIntIndex implements org.hsqldb.lib.LongLookup
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hsqldb.lib.DoubleIntIndex
  super_class: java.lang.Object
{
  private int count;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int capacity;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean sorted;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean sortOnValues;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final boolean fixedSize;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int[] keys;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  private int[] values;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  private int targetSearchValue;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int capacity
         0: .line 69
            aload 0 /* this */
            iload 1 /* capacity */
            iconst_0
            invokespecial org.hsqldb.lib.DoubleIntIndex.<init>:(IZ)V
         1: .line 71
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
         2: .line 72
            return
        end local 1 // int capacity
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    3     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public void <init>(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int capacity
        start local 2 // boolean fixedSize
         0: .line 74
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 56
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.count:I
         2: .line 58
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         3: .line 59
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
         4: .line 76
            aload 0 /* this */
            iload 1 /* capacity */
            putfield org.hsqldb.lib.DoubleIntIndex.capacity:I
         5: .line 77
            aload 0 /* this */
            iload 1 /* capacity */
            newarray 10
            putfield org.hsqldb.lib.DoubleIntIndex.keys:[I
         6: .line 78
            aload 0 /* this */
            iload 1 /* capacity */
            newarray 10
            putfield org.hsqldb.lib.DoubleIntIndex.values:[I
         7: .line 79
            aload 0 /* this */
            iload 2 /* fixedSize */
            putfield org.hsqldb.lib.DoubleIntIndex.fixedSize:Z
         8: .line 80
            return
        end local 2 // boolean fixedSize
        end local 1 // int capacity
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    9     1   capacity  I
            0    9     2  fixedSize  Z
    MethodParameters:
           Name  Flags
      capacity   
      fixedSize  

  public int getKey(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int i
         0: .line 84
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            if_icmplt 2
         1: .line 85
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* i */
            iaload
            ireturn
        end local 1 // int i
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public long getLongKey(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int i
         0: .line 93
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            if_icmplt 2
         1: .line 94
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* i */
            iaload
            i2l
            ldc 4294967295
            land
            lreturn
        end local 1 // int i
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public long getLongValue(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int i
         0: .line 101
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* i */
            iaload
            i2l
            lreturn
        end local 1 // int i
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public int getValue(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int i
         0: .line 106
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            if_icmplt 2
         1: .line 107
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* i */
            iaload
            ireturn
        end local 1 // int i
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public void setKey(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int i
        start local 2 // int key
         0: .line 120
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            if_icmplt 2
         1: .line 121
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifne 4
         3: .line 125
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         4: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* i */
            iload 2 /* key */
            iastore
         5: .line 129
            return
        end local 2 // int key
        end local 1 // int i
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    6     1     i  I
            0    6     2   key  I
    MethodParameters:
      Name  Flags
      i     
      key   

  public void setValue(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int i
        start local 2 // int value
         0: .line 138
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            if_icmplt 2
         1: .line 139
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 142
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 4
         3: .line 143
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         4: .line 146
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* i */
            iload 2 /* value */
            iastore
         5: .line 147
            return
        end local 2 // int value
        end local 1 // int i
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    6     1      i  I
            0    6     2  value  I
    MethodParameters:
       Name  Flags
      i      
      value  

  public void setLongValue(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int i
        start local 2 // long value
         0: .line 156
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            if_icmplt 2
         1: .line 157
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 160
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 4
         3: .line 161
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         4: .line 164
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* i */
            lload 2 /* value */
            l2i
            iastore
         5: .line 165
            return
        end local 2 // long value
        end local 1 // int i
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    6     1      i  I
            0    6     2  value  J
    MethodParameters:
       Name  Flags
      i      
      value  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 168
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            ireturn
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  public int capacity();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 172
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.capacity:I
            ireturn
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  public int[] getKeys();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 176
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            areturn
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  public int[] getValues();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 180
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            areturn
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  public long getTotalValues();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 185
            lconst_0
            lstore 1 /* total */
        start local 1 // long total
         1: .line 187
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 188
      StackMap locals: long int
      StackMap stack:
            lload 1 /* total */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 3 /* i */
            iaload
            i2l
            ladd
            lstore 1 /* total */
         4: .line 187
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            if_icmplt 3
        end local 3 // int i
         6: .line 191
            lload 1 /* total */
            lreturn
        end local 1 // long total
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            1    7     1  total  J
            2    6     3      i  I

  public void setSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int newSize
         0: .line 195
            aload 0 /* this */
            iload 1 /* newSize */
            putfield org.hsqldb.lib.DoubleIntIndex.count:I
         1: .line 196
            return
        end local 1 // int newSize
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    2     1  newSize  I
    MethodParameters:
         Name  Flags
      newSize  

  public boolean addUnsorted(long, long);
    descriptor: (JJ)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // long key
        start local 3 // long value
         0: .line 200
            lload 1 /* key */
            ldc 2147483647
            lcmp
            ifgt 1
            lload 1 /* key */
            ldc -2147483648
            lcmp
            ifge 2
         1: .line 201
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 204
      StackMap locals:
      StackMap stack:
            lload 3 /* value */
            ldc 2147483647
            lcmp
            ifgt 3
            lload 3 /* value */
            ldc -2147483648
            lcmp
            ifge 4
         3: .line 205
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         4: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            l2i
            lload 3 /* value */
            l2i
            invokevirtual org.hsqldb.lib.DoubleIntIndex.addUnsorted:(II)Z
            ireturn
        end local 3 // long value
        end local 1 // long key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    5     1    key  J
            0    5     3  value  J
    MethodParameters:
       Name  Flags
      key    
      value  

  public boolean addUnsorted(int, int);
    descriptor: (II)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int key
        start local 2 // int value
         0: .line 220
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.capacity:I
            if_icmpne 4
         1: .line 221
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.fixedSize:Z
            ifeq 3
         2: .line 222
            iconst_0
            ireturn
         3: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.doubleCapacity:()V
         4: .line 228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
            ifeq 11
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            ifeq 11
         5: .line 229
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 9
         6: .line 230
            iload 2 /* value */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            iaload
            if_icmpge 11
         7: .line 231
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         8: .line 233
            goto 11
         9: .line 234
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            iaload
            if_icmpge 11
        10: .line 235
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
        11: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 1 /* key */
            iastore
        12: .line 241
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 2 /* value */
            iastore
        13: .line 243
            aload 0 /* this */
            dup
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            iadd
            putfield org.hsqldb.lib.DoubleIntIndex.count:I
        14: .line 245
            iconst_1
            ireturn
        end local 2 // int value
        end local 1 // int key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0   15     1    key  I
            0   15     2  value  I
    MethodParameters:
       Name  Flags
      key    
      value  

  public boolean addUnsorted(org.hsqldb.lib.LongLookup);
    descriptor: (Lorg/hsqldb/lib/LongLookup;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // org.hsqldb.lib.LongLookup other
         0: .line 250
            aload 0 /* this */
            aload 1 /* other */
            invokeinterface org.hsqldb.lib.LongLookup.size:()I
            invokevirtual org.hsqldb.lib.DoubleIntIndex.ensureCapacityToAdd:(I)Z
            ifne 2
         1: .line 251
            iconst_0
            ireturn
         2: .line 254
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         3: .line 256
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         4: goto 9
         5: .line 257
      StackMap locals: int
      StackMap stack:
            aload 1 /* other */
            iload 2 /* i */
            invokeinterface org.hsqldb.lib.LongLookup.getLongKey:(I)J
            lstore 3 /* key */
        start local 3 // long key
         6: .line 258
            aload 1 /* other */
            iload 2 /* i */
            invokeinterface org.hsqldb.lib.LongLookup.getLongValue:(I)J
            lstore 5 /* value */
        start local 5 // long value
         7: .line 260
            aload 0 /* this */
            lload 3 /* key */
            lload 5 /* value */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.addUnsorted:(JJ)Z
            pop
        end local 5 // long value
        end local 3 // long key
         8: .line 256
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 1 /* other */
            invokeinterface org.hsqldb.lib.LongLookup.size:()I
            if_icmplt 5
        end local 2 // int i
        10: .line 263
            iconst_1
            ireturn
        end local 1 // org.hsqldb.lib.LongLookup other
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0   11     1  other  Lorg/hsqldb/lib/LongLookup;
            4   10     2      i  I
            6    8     3    key  J
            7    8     5  value  J
    MethodParameters:
       Name  Flags
      other  

  private boolean ensureCapacityToAdd(int);
    descriptor: (I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int extra
         0: .line 268
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 1 /* extra */
            iadd
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.capacity:I
            if_icmple 5
         1: .line 269
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.fixedSize:Z
            ifeq 4
         2: .line 270
            iconst_0
            ireturn
         3: .line 273
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.doubleCapacity:()V
         4: .line 272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 1 /* extra */
            iadd
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.capacity:I
            if_icmpgt 3
         5: .line 278
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // int extra
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    6     1  extra  I
    MethodParameters:
       Name  Flags
      extra  

  public boolean addSorted(int, int);
    descriptor: (II)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int key
        start local 2 // int value
         0: .line 292
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.capacity:I
            if_icmpne 4
         1: .line 293
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.fixedSize:Z
            ifeq 3
         2: .line 294
            iconst_0
            ireturn
         3: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.doubleCapacity:()V
         4: .line 300
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            ifeq 13
         5: .line 301
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 11
         6: .line 302
            iload 2 /* value */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            iaload
            if_icmpge 8
         7: .line 303
            iconst_0
            ireturn
         8: .line 304
      StackMap locals:
      StackMap stack:
            iload 2 /* value */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            iaload
            if_icmpne 13
         9: .line 305
            iload 1 /* key */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            iaload
            if_icmpge 13
        10: .line 306
            iconst_0
            ireturn
        11: .line 309
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            iaload
            if_icmpge 13
        12: .line 310
            iconst_0
            ireturn
        13: .line 315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 1 /* key */
            iastore
        14: .line 316
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 2 /* value */
            iastore
        15: .line 318
            aload 0 /* this */
            dup
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            iadd
            putfield org.hsqldb.lib.DoubleIntIndex.count:I
        16: .line 320
            iconst_1
            ireturn
        end local 2 // int value
        end local 1 // int key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   17     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0   17     1    key  I
            0   17     2  value  I
    MethodParameters:
       Name  Flags
      key    
      value  

  public boolean addUnique(int, int);
    descriptor: (II)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int key
        start local 2 // int value
         0: .line 332
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.capacity:I
            if_icmpne 4
         1: .line 333
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.fixedSize:Z
            ifeq 3
         2: .line 334
            iconst_0
            ireturn
         3: .line 336
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.doubleCapacity:()V
         4: .line 340
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
            ifne 6
         5: .line 341
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.fastQuickSort:()V
         6: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 7
            iload 2 /* value */
            goto 8
         7: .line 345
      StackMap locals:
      StackMap stack: org.hsqldb.lib.DoubleIntIndex
            iload 1 /* key */
         8: .line 344
      StackMap locals: org.hsqldb.lib.DoubleIntIndex int int
      StackMap stack: org.hsqldb.lib.DoubleIntIndex int
            putfield org.hsqldb.lib.DoubleIntIndex.targetSearchValue:I
         9: .line 347
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.binaryEmptySlotSearch:()I
            istore 3 /* i */
        start local 3 // int i
        10: .line 349
            iload 3 /* i */
            iconst_m1
            if_icmpne 12
        11: .line 350
            iconst_0
            ireturn
        12: .line 353
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 3 /* i */
            if_icmpeq 14
        13: .line 354
            aload 0 /* this */
            iload 3 /* i */
            iload 3 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 3 /* i */
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.moveRows:(III)V
        14: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 3 /* i */
            iload 1 /* key */
            iastore
        15: .line 358
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 3 /* i */
            iload 2 /* value */
            iastore
        16: .line 360
            aload 0 /* this */
            dup
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            iadd
            putfield org.hsqldb.lib.DoubleIntIndex.count:I
        17: .line 362
            iconst_1
            ireturn
        end local 3 // int i
        end local 2 // int value
        end local 1 // int key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0   18     1    key  I
            0   18     2  value  I
           10   18     3      i  I
    MethodParameters:
       Name  Flags
      key    
      value  

  public int add(long, long);
    descriptor: (JJ)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // long key
        start local 3 // long value
         0: .line 367
            lload 1 /* key */
            ldc 2147483647
            lcmp
            ifgt 1
            lload 1 /* key */
            ldc -2147483648
            lcmp
            ifge 2
         1: .line 368
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 371
      StackMap locals:
      StackMap stack:
            lload 3 /* value */
            ldc 2147483647
            lcmp
            ifgt 3
            lload 3 /* value */
            ldc -2147483648
            lcmp
            ifge 4
         3: .line 372
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         4: .line 375
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            l2i
            lload 3 /* value */
            l2i
            invokevirtual org.hsqldb.lib.DoubleIntIndex.add:(II)I
            ireturn
        end local 3 // long value
        end local 1 // long key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    5     1    key  J
            0    5     3  value  J
    MethodParameters:
       Name  Flags
      key    
      value  

  public int add(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int key
        start local 2 // int value
         0: .line 387
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.capacity:I
            if_icmpne 4
         1: .line 388
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.fixedSize:Z
            ifeq 3
         2: .line 389
            iconst_m1
            ireturn
         3: .line 391
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.doubleCapacity:()V
         4: .line 395
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
            ifne 6
         5: .line 396
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.fastQuickSort:()V
         6: .line 399
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 7
            iload 2 /* value */
            goto 8
         7: .line 400
      StackMap locals:
      StackMap stack: org.hsqldb.lib.DoubleIntIndex
            iload 1 /* key */
         8: .line 399
      StackMap locals: org.hsqldb.lib.DoubleIntIndex int int
      StackMap stack: org.hsqldb.lib.DoubleIntIndex int
            putfield org.hsqldb.lib.DoubleIntIndex.targetSearchValue:I
         9: .line 402
            aload 0 /* this */
            iconst_1
            invokevirtual org.hsqldb.lib.DoubleIntIndex.binarySlotSearch:(Z)I
            istore 3 /* i */
        start local 3 // int i
        10: .line 404
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 3 /* i */
            if_icmpeq 12
        11: .line 405
            aload 0 /* this */
            iload 3 /* i */
            iload 3 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 3 /* i */
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.moveRows:(III)V
        12: .line 408
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 3 /* i */
            iload 1 /* key */
            iastore
        13: .line 409
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 3 /* i */
            iload 2 /* value */
            iastore
        14: .line 411
            aload 0 /* this */
            dup
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            iadd
            putfield org.hsqldb.lib.DoubleIntIndex.count:I
        15: .line 413
            iload 3 /* i */
            ireturn
        end local 3 // int i
        end local 2 // int value
        end local 1 // int key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0   16     1    key  I
            0   16     2  value  I
           10   16     3      i  I
    MethodParameters:
       Name  Flags
      key    
      value  

  public long lookup(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // long key
         0: .line 418
            lload 1 /* key */
            ldc 2147483647
            lcmp
            ifgt 1
            lload 1 /* key */
            ldc -2147483648
            lcmp
            ifge 2
         1: .line 419
      StackMap locals:
      StackMap stack:
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 422
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            l2i
            invokevirtual org.hsqldb.lib.DoubleIntIndex.lookup:(I)I
            i2l
            lreturn
        end local 1 // long key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    3     1   key  J
    Exceptions:
      throws java.util.NoSuchElementException
    MethodParameters:
      Name  Flags
      key   

  public int lookup(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int key
         0: .line 427
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 3
         1: .line 428
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         2: .line 429
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
         3: .line 432
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.findFirstEqualKeyIndex:(I)I
            istore 2 /* i */
        start local 2 // int i
         4: .line 434
            iload 2 /* i */
            iconst_m1
            if_icmpne 6
         5: .line 435
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         6: .line 438
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.getValue:(I)I
            ireturn
        end local 2 // int i
        end local 1 // int key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    7     1   key  I
            4    7     2     i  I
    Exceptions:
      throws java.util.NoSuchElementException
    MethodParameters:
      Name  Flags
      key   

  public long lookup(long, long);
    descriptor: (JJ)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // long key
        start local 3 // long def
         0: .line 443
            lload 1 /* key */
            ldc 2147483647
            lcmp
            ifgt 1
            lload 1 /* key */
            ldc -2147483648
            lcmp
            ifge 2
         1: .line 444
      StackMap locals:
      StackMap stack:
            lload 3 /* def */
            lreturn
         2: .line 447
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 5
         3: .line 448
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         4: .line 449
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
         5: .line 452
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            l2i
            invokevirtual org.hsqldb.lib.DoubleIntIndex.findFirstEqualKeyIndex:(I)I
            istore 5 /* i */
        start local 5 // int i
         6: .line 454
            iload 5 /* i */
            iconst_m1
            if_icmpne 8
         7: .line 455
            lload 3 /* def */
            lreturn
         8: .line 458
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 5 /* i */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.getValue:(I)I
            i2l
            lreturn
        end local 5 // int i
        end local 3 // long def
        end local 1 // long key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    9     1   key  J
            0    9     3   def  J
            6    9     5     i  I
    MethodParameters:
      Name  Flags
      key   
      def   

  public int lookup(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int key
        start local 2 // int def
         0: .line 463
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 3
         1: .line 464
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         2: .line 465
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
         3: .line 468
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.findFirstEqualKeyIndex:(I)I
            istore 3 /* i */
        start local 3 // int i
         4: .line 470
            iload 3 /* i */
            iconst_m1
            if_icmpne 6
         5: .line 471
            iload 2 /* def */
            ireturn
         6: .line 474
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.getValue:(I)I
            ireturn
        end local 3 // int i
        end local 2 // int def
        end local 1 // int key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    7     1   key  I
            0    7     2   def  I
            4    7     3     i  I
    MethodParameters:
      Name  Flags
      key   
      def   

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 478
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.removeAll:()V
         1: .line 479
            return
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  public int lookupFirstGreaterEqual(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int key
         0: .line 483
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 3
         1: .line 484
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         2: .line 485
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
         3: .line 488
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.findFirstGreaterEqualKeyIndex:(I)I
            istore 2 /* i */
        start local 2 // int i
         4: .line 490
            iload 2 /* i */
            iconst_m1
            if_icmpne 6
         5: .line 491
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         6: .line 494
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.getValue:(I)I
            ireturn
        end local 2 // int i
        end local 1 // int key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    7     1   key  I
            4    7     2     i  I
    Exceptions:
      throws java.util.NoSuchElementException
    MethodParameters:
      Name  Flags
      key   

  public void setValuesSearchTarget();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 499
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifne 2
         1: .line 500
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         2: .line 503
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
         3: .line 504
            return
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  public void setKeysSearchTarget();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 508
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 2
         1: .line 509
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         2: .line 512
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
         3: .line 513
            return
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  public int findFirstGreaterEqualKeyIndex(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int value
         0: .line 521
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.findFirstGreaterEqualSlotIndex:(I)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 523
            iload 2 /* index */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            if_icmpne 2
            iconst_m1
            goto 3
         2: .line 524
      StackMap locals: int
      StackMap stack:
            iload 2 /* index */
         3: .line 523
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 2 // int index
        end local 1 // int value
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    4     1  value  I
            1    4     2  index  I
    MethodParameters:
       Name  Flags
      value  

  public int findFirstEqualKeyIndex(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int value
         0: .line 533
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
            ifne 2
         1: .line 534
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.fastQuickSort:()V
         2: .line 537
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* value */
            putfield org.hsqldb.lib.DoubleIntIndex.targetSearchValue:I
         3: .line 539
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.binaryFirstSearch:()I
            ireturn
        end local 1 // int value
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    4     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public boolean compactLookupAsIntervals();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 544
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.size:()I
            ifne 2
         1: .line 545
            iconst_0
            ireturn
         2: .line 548
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.setKeysSearchTarget:()V
         3: .line 550
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
            ifne 5
         4: .line 551
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.fastQuickSort:()V
         5: .line 554
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* base */
        start local 1 // int base
         6: .line 556
            iconst_1
            istore 2 /* i */
        start local 2 // int i
         7: goto 16
         8: .line 557
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* base */
            iaload
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* base */
            iaload
            iadd
            i2l
            lstore 3 /* limit */
        start local 3 // long limit
         9: .line 559
            lload 3 /* limit */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 2 /* i */
            iaload
            i2l
            lcmp
            ifne 12
        10: .line 560
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* base */
            dup2
            iaload
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 2 /* i */
            iaload
            iadd
            iastore
        11: .line 561
            goto 15
        12: .line 562
      StackMap locals: long
      StackMap stack:
            iinc 1 /* base */ 1
        13: .line 564
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* base */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 2 /* i */
            iaload
            iastore
        14: .line 565
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* base */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 2 /* i */
            iaload
            iastore
        end local 3 // long limit
        15: .line 556
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 2 /* i */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            if_icmplt 8
        end local 2 // int i
        17: .line 569
            iload 1 /* base */
            iconst_1
            iadd
            istore 2 /* i */
        start local 2 // int i
        18: goto 22
        19: .line 570
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 2 /* i */
            iconst_0
            iastore
        20: .line 571
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 2 /* i */
            iconst_0
            iastore
        21: .line 569
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        22: iload 2 /* i */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            if_icmplt 19
        end local 2 // int i
        23: .line 574
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 1 /* base */
            iconst_1
            iadd
            if_icmpeq 26
        24: .line 575
            aload 0 /* this */
            iload 1 /* base */
            iconst_1
            iadd
            invokevirtual org.hsqldb.lib.DoubleIntIndex.setSize:(I)V
        25: .line 577
            iconst_1
            ireturn
        26: .line 580
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // int base
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   27     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            6   27     1   base  I
            7   17     2      i  I
            9   15     3  limit  J
           18   23     2      i  I

  public int findFirstGreaterEqualSlotIndex(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int value
         0: .line 593
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
            ifne 2
         1: .line 594
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.fastQuickSort:()V
         2: .line 597
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* value */
            putfield org.hsqldb.lib.DoubleIntIndex.targetSearchValue:I
         3: .line 599
            aload 0 /* this */
            iconst_0
            invokevirtual org.hsqldb.lib.DoubleIntIndex.binarySlotSearch:(Z)I
            ireturn
        end local 1 // int value
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    4     1  value  I
    MethodParameters:
       Name  Flags
      value  

  private int binaryFirstSearch();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 609
            iconst_0
            istore 1 /* low */
        start local 1 // int low
         1: .line 610
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            istore 2 /* high */
        start local 2 // int high
         2: .line 611
            iconst_0
            istore 3 /* mid */
        start local 3 // int mid
         3: .line 612
            iconst_0
            istore 4 /* compare */
        start local 4 // int compare
         4: .line 613
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            istore 5 /* found */
        start local 5 // int found
         5: .line 615
            goto 16
         6: .line 616
      StackMap locals: org.hsqldb.lib.DoubleIntIndex int int int int int
      StackMap stack:
            iload 1 /* low */
            iload 2 /* high */
            iadd
            iconst_1
            iushr
            istore 3 /* mid */
         7: .line 617
            aload 0 /* this */
            iload 3 /* mid */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.compare:(I)I
            istore 4 /* compare */
         8: .line 619
            iload 4 /* compare */
            ifge 11
         9: .line 620
            iload 3 /* mid */
            istore 2 /* high */
        10: .line 621
            goto 16
      StackMap locals:
      StackMap stack:
        11: iload 4 /* compare */
            ifle 14
        12: .line 622
            iload 3 /* mid */
            iconst_1
            iadd
            istore 1 /* low */
        13: .line 623
            goto 16
        14: .line 624
      StackMap locals:
      StackMap stack:
            iload 3 /* mid */
            istore 2 /* high */
        15: .line 625
            iload 3 /* mid */
            istore 5 /* found */
        16: .line 615
      StackMap locals:
      StackMap stack:
            iload 1 /* low */
            iload 2 /* high */
            if_icmplt 6
        17: .line 629
            iload 5 /* found */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            if_icmpne 18
            iconst_m1
            goto 19
        18: .line 630
      StackMap locals:
      StackMap stack:
            iload 5 /* found */
        19: .line 629
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 5 // int found
        end local 4 // int compare
        end local 3 // int mid
        end local 2 // int high
        end local 1 // int low
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   20     0     this  Lorg/hsqldb/lib/DoubleIntIndex;
            1   20     1      low  I
            2   20     2     high  I
            3   20     3      mid  I
            4   20     4  compare  I
            5   20     5    found  I

  private int binarySlotSearch(boolean);
    descriptor: (Z)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // boolean fullCompare
         0: .line 640
            iconst_0
            istore 2 /* low */
        start local 2 // int low
         1: .line 641
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            istore 3 /* high */
        start local 3 // int high
         2: .line 642
            iconst_0
            istore 4 /* mid */
        start local 4 // int mid
         3: .line 643
            iconst_0
            istore 5 /* compare */
        start local 5 // int compare
         4: .line 645
            goto 11
         5: .line 646
      StackMap locals: org.hsqldb.lib.DoubleIntIndex int int int int int
      StackMap stack:
            iload 2 /* low */
            iload 3 /* high */
            iadd
            iconst_1
            iushr
            istore 4 /* mid */
         6: .line 647
            aload 0 /* this */
            iload 4 /* mid */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.compare:(I)I
            istore 5 /* compare */
         7: .line 649
            iload 5 /* compare */
            ifgt 10
         8: .line 650
            iload 4 /* mid */
            istore 3 /* high */
         9: .line 651
            goto 11
        10: .line 652
      StackMap locals:
      StackMap stack:
            iload 4 /* mid */
            iconst_1
            iadd
            istore 2 /* low */
        11: .line 645
      StackMap locals:
      StackMap stack:
            iload 2 /* low */
            iload 3 /* high */
            if_icmplt 5
        12: .line 656
            iload 2 /* low */
            ireturn
        end local 5 // int compare
        end local 4 // int mid
        end local 3 // int high
        end local 2 // int low
        end local 1 // boolean fullCompare
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lorg/hsqldb/lib/DoubleIntIndex;
            0   13     1  fullCompare  Z
            1   13     2          low  I
            2   13     3         high  I
            3   13     4          mid  I
            4   13     5      compare  I
    MethodParameters:
             Name  Flags
      fullCompare  

  private int binaryEmptySlotSearch();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 666
            iconst_0
            istore 1 /* low */
        start local 1 // int low
         1: .line 667
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            istore 2 /* high */
        start local 2 // int high
         2: .line 668
            iconst_0
            istore 3 /* mid */
        start local 3 // int mid
         3: .line 669
            iconst_0
            istore 4 /* compare */
        start local 4 // int compare
         4: .line 671
            goto 14
         5: .line 672
      StackMap locals: org.hsqldb.lib.DoubleIntIndex int int int int
      StackMap stack:
            iload 1 /* low */
            iload 2 /* high */
            iadd
            iconst_1
            iushr
            istore 3 /* mid */
         6: .line 673
            aload 0 /* this */
            iload 3 /* mid */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.compare:(I)I
            istore 4 /* compare */
         7: .line 675
            iload 4 /* compare */
            ifge 10
         8: .line 676
            iload 3 /* mid */
            istore 2 /* high */
         9: .line 677
            goto 14
      StackMap locals:
      StackMap stack:
        10: iload 4 /* compare */
            ifle 13
        11: .line 678
            iload 3 /* mid */
            iconst_1
            iadd
            istore 1 /* low */
        12: .line 679
            goto 14
        13: .line 680
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        14: .line 671
      StackMap locals:
      StackMap stack:
            iload 1 /* low */
            iload 2 /* high */
            if_icmplt 5
        15: .line 684
            iload 1 /* low */
            ireturn
        end local 4 // int compare
        end local 3 // int mid
        end local 2 // int high
        end local 1 // int low
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lorg/hsqldb/lib/DoubleIntIndex;
            1   16     1      low  I
            2   16     2     high  I
            3   16     3      mid  I
            4   16     4  compare  I

  public void sortOnKeys();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 689
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
         1: .line 691
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.fastQuickSort:()V
         2: .line 692
            return
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  public void sortOnValues();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 696
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
         1: .line 698
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.fastQuickSort:()V
         2: .line 699
            return
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  public void sort();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 703
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifne 1
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            sipush 16384
            if_icmpgt 3
         1: .line 704
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.fastQuickSortRecursive:()V
         2: .line 705
            goto 4
         3: .line 706
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.fastQuickSort:()V
         4: .line 708
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  private void fastQuickSort();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 715
            new org.hsqldb.lib.DoubleIntIndex
            dup
            ldc 32768
            invokespecial org.hsqldb.lib.DoubleIntIndex.<init>:(I)V
            astore 1 /* indices */
        start local 1 // org.hsqldb.lib.DoubleIntIndex indices
         1: .line 716
            bipush 16
            istore 2 /* threshold */
        start local 2 // int threshold
         2: .line 718
            aload 1 /* indices */
            iconst_0
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.push:(II)Z
            pop
         3: .line 720
            goto 15
         4: .line 721
      StackMap locals: org.hsqldb.lib.DoubleIntIndex int
      StackMap stack:
            aload 1 /* indices */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.peekKey:()I
            istore 3 /* start */
        start local 3 // int start
         5: .line 722
            aload 1 /* indices */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.peekValue:()I
            istore 4 /* end */
        start local 4 // int end
         6: .line 724
            aload 1 /* indices */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.pop:()Z
            pop
         7: .line 726
            iload 4 /* end */
            iload 3 /* start */
            isub
            iload 2 /* threshold */
            if_icmplt 14
         8: .line 727
            aload 0 /* this */
            iload 3 /* start */
            iload 4 /* end */
         9: .line 728
            iload 3 /* start */
            iload 4 /* end */
            iload 3 /* start */
            isub
            iconst_1
            iushr
            iadd
        10: .line 727
            invokevirtual org.hsqldb.lib.DoubleIntIndex.partition:(III)I
            istore 5 /* pivot */
        start local 5 // int pivot
        11: .line 730
            aload 1 /* indices */
            iload 3 /* start */
            iload 5 /* pivot */
            iconst_1
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.push:(II)Z
            pop
        12: .line 731
            aload 1 /* indices */
            iload 5 /* pivot */
            iconst_1
            iadd
            iload 4 /* end */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.push:(II)Z
            pop
        end local 5 // int pivot
        13: .line 732
            goto 15
        14: .line 733
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* start */
            iload 4 /* end */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.insertionSort:(II)V
        end local 4 // int end
        end local 3 // int start
        15: .line 720
      StackMap locals:
      StackMap stack:
            aload 1 /* indices */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.size:()I
            ifgt 4
        16: .line 737
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
        17: .line 738
            return
        end local 2 // int threshold
        end local 1 // org.hsqldb.lib.DoubleIntIndex indices
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lorg/hsqldb/lib/DoubleIntIndex;
            1   18     1    indices  Lorg/hsqldb/lib/DoubleIntIndex;
            2   18     2  threshold  I
            5   15     3      start  I
            6   15     4        end  I
           11   13     5      pivot  I

  private int partition(int, int, int);
    descriptor: (III)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int start
        start local 2 // int end
        start local 3 // int pivot
         0: .line 742
            iload 1 /* start */
            istore 4 /* store */
        start local 4 // int store
         1: .line 744
            aload 0 /* this */
            iload 3 /* pivot */
            iload 2 /* end */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.swap:(II)V
         2: .line 746
            iload 1 /* start */
            istore 5 /* i */
        start local 5 // int i
         3: goto 8
         4: .line 747
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 5 /* i */
            iload 2 /* end */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.lessThan:(II)Z
            ifeq 7
         5: .line 748
            aload 0 /* this */
            iload 5 /* i */
            iload 4 /* store */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.swap:(II)V
         6: .line 750
            iinc 4 /* store */ 1
         7: .line 746
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 2 /* end */
            iconst_1
            isub
            if_icmple 4
        end local 5 // int i
         9: .line 754
            aload 0 /* this */
            iload 4 /* store */
            iload 2 /* end */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.swap:(II)V
        10: .line 756
            iload 4 /* store */
            ireturn
        end local 4 // int store
        end local 3 // int pivot
        end local 2 // int end
        end local 1 // int start
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0   11     1  start  I
            0   11     2    end  I
            0   11     3  pivot  I
            1   11     4  store  I
            3    9     5      i  I
    MethodParameters:
       Name  Flags
      start  
      end    
      pivot  

  private void fastQuickSortRecursive();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 764
            aload 0 /* this */
            iconst_0
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.quickSort:(II)V
         1: .line 765
            aload 0 /* this */
            iconst_0
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.insertionSort:(II)V
         2: .line 767
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         3: .line 768
            return
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  private void quickSort(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int l
        start local 2 // int r
         0: .line 772
            bipush 16
            istore 3 /* M */
        start local 3 // int M
         1: .line 777
            iload 2 /* r */
            iload 1 /* l */
            isub
            iload 3 /* M */
            if_icmple 22
         2: .line 778
            iload 2 /* r */
            iload 1 /* l */
            iadd
            iconst_1
            iushr
            istore 4 /* i */
        start local 4 // int i
         3: .line 780
            aload 0 /* this */
            iload 4 /* i */
            iload 1 /* l */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.lessThan:(II)Z
            ifeq 5
         4: .line 781
            aload 0 /* this */
            iload 1 /* l */
            iload 4 /* i */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.swap:(II)V
         5: .line 784
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* r */
            iload 1 /* l */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.lessThan:(II)Z
            ifeq 7
         6: .line 785
            aload 0 /* this */
            iload 1 /* l */
            iload 2 /* r */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.swap:(II)V
         7: .line 788
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* r */
            iload 4 /* i */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.lessThan:(II)Z
            ifeq 9
         8: .line 789
            aload 0 /* this */
            iload 4 /* i */
            iload 2 /* r */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.swap:(II)V
         9: .line 792
      StackMap locals:
      StackMap stack:
            iload 2 /* r */
            iconst_1
            isub
            istore 5 /* j */
        start local 5 // int j
        10: .line 794
            aload 0 /* this */
            iload 4 /* i */
            iload 5 /* j */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.swap:(II)V
        11: .line 796
            iload 1 /* l */
            istore 4 /* i */
        12: .line 797
            iload 5 /* j */
            istore 6 /* v */
        start local 6 // int v
        13: .line 800
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iinc 4 /* i */ 1
            iload 4 /* i */
            iload 6 /* v */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.lessThan:(II)Z
            ifne 13
        14: .line 802
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* v */
            iinc 5 /* j */ -1
            iload 5 /* j */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.lessThan:(II)Z
            ifne 14
        15: .line 804
            iload 5 /* j */
            iload 4 /* i */
            if_icmpge 17
        16: .line 805
            goto 19
        17: .line 808
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            iload 5 /* j */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.swap:(II)V
        18: .line 799
            goto 13
        19: .line 811
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            iload 2 /* r */
            iconst_1
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.swap:(II)V
        20: .line 812
            aload 0 /* this */
            iload 1 /* l */
            iload 5 /* j */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.quickSort:(II)V
        21: .line 813
            aload 0 /* this */
            iload 4 /* i */
            iconst_1
            iadd
            iload 2 /* r */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.quickSort:(II)V
        end local 6 // int v
        end local 5 // int j
        end local 4 // int i
        22: .line 815
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int M
        end local 2 // int r
        end local 1 // int l
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   23     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0   23     1     l  I
            0   23     2     r  I
            1   23     3     M  I
            3   22     4     i  I
           10   22     5     j  I
           13   22     6     v  I
    MethodParameters:
      Name  Flags
      l     
      r     

  private void insertionSort(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int lo0
        start local 2 // int hi0
         0: .line 822
            iload 1 /* lo0 */
            iconst_1
            iadd
            istore 3 /* i */
        start local 3 // int i
         1: goto 9
         2: .line 823
      StackMap locals: int
      StackMap stack:
            iload 3 /* i */
            istore 4 /* j */
        start local 4 // int j
         3: .line 825
            goto 5
         4: .line 826
      StackMap locals: int
      StackMap stack:
            iinc 4 /* j */ -1
         5: .line 825
      StackMap locals:
      StackMap stack:
            iload 4 /* j */
            iload 1 /* lo0 */
            if_icmple 6
            aload 0 /* this */
            iload 3 /* i */
            iload 4 /* j */
            iconst_1
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.lessThan:(II)Z
            ifne 4
         6: .line 829
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            iload 4 /* j */
            if_icmpeq 8
         7: .line 830
            aload 0 /* this */
            iload 3 /* i */
            iload 4 /* j */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.moveAndInsertRow:(II)V
         8: .line 822
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
        end local 4 // int j
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            iload 2 /* hi0 */
            if_icmple 2
        10: .line 833
            return
        end local 3 // int i
        end local 2 // int hi0
        end local 1 // int lo0
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0   11     1   lo0  I
            0   11     2   hi0  I
            1   11     3     i  I
            3    9     4     j  I
    MethodParameters:
      Name  Flags
      lo0   
      hi0   

  protected void moveAndInsertRow(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int i
        start local 2 // int j
         0: .line 837
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* i */
            iaload
            istore 3 /* col1 */
        start local 3 // int col1
         1: .line 838
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* i */
            iaload
            istore 4 /* col2 */
        start local 4 // int col2
         2: .line 840
            aload 0 /* this */
            iload 2 /* j */
            iload 2 /* j */
            iconst_1
            iadd
            iload 1 /* i */
            iload 2 /* j */
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.moveRows:(III)V
         3: .line 842
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 2 /* j */
            iload 3 /* col1 */
            iastore
         4: .line 843
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 2 /* j */
            iload 4 /* col2 */
            iastore
         5: .line 844
            return
        end local 4 // int col2
        end local 3 // int col1
        end local 2 // int j
        end local 1 // int i
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    6     1     i  I
            0    6     2     j  I
            1    6     3  col1  I
            2    6     4  col2  I
    MethodParameters:
      Name  Flags
      i     
      j     

  protected void swap(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int i1
        start local 2 // int i2
         0: .line 848
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* i1 */
            iaload
            istore 3 /* col1 */
        start local 3 // int col1
         1: .line 849
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* i1 */
            iaload
            istore 4 /* col2 */
        start local 4 // int col2
         2: .line 851
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* i1 */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 2 /* i2 */
            iaload
            iastore
         3: .line 852
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* i1 */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 2 /* i2 */
            iaload
            iastore
         4: .line 853
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 2 /* i2 */
            iload 3 /* col1 */
            iastore
         5: .line 854
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 2 /* i2 */
            iload 4 /* col2 */
            iastore
         6: .line 855
            return
        end local 4 // int col2
        end local 3 // int col1
        end local 2 // int i2
        end local 1 // int i1
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    7     1    i1  I
            0    7     2    i2  I
            1    7     3  col1  I
            2    7     4  col2  I
    MethodParameters:
      Name  Flags
      i1    
      i2    

  protected int compare(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int i
         0: .line 865
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 6
         1: .line 866
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.targetSearchValue:I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* i */
            iaload
            if_icmple 3
         2: .line 867
            iconst_1
            ireturn
         3: .line 868
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.targetSearchValue:I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* i */
            iaload
            if_icmpge 5
         4: .line 869
            iconst_m1
            ireturn
         5: .line 871
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         6: .line 875
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.targetSearchValue:I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* i */
            iaload
            if_icmple 8
         7: .line 876
            iconst_1
            ireturn
         8: .line 877
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.targetSearchValue:I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* i */
            iaload
            if_icmpge 10
         9: .line 878
            iconst_m1
            ireturn
        10: .line 881
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // int i
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0   11     1     i  I
    MethodParameters:
      Name  Flags
      i     

  protected boolean lessThan(int, int);
    descriptor: (II)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int i
        start local 2 // int j
         0: .line 892
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.sortOnValues:Z
            ifeq 5
         1: .line 893
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* i */
            iaload
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 2 /* j */
            iaload
            if_icmpge 3
         2: .line 894
            iconst_1
            ireturn
         3: .line 895
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* i */
            iaload
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 2 /* j */
            iaload
            if_icmple 5
         4: .line 896
            iconst_0
            ireturn
         5: .line 900
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* i */
            iaload
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 2 /* j */
            iaload
            if_icmpge 7
         6: .line 901
            iconst_1
            ireturn
         7: .line 904
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int j
        end local 1 // int i
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    8     1     i  I
            0    8     2     j  I
    MethodParameters:
      Name  Flags
      i     
      j     

  protected void moveRows(int, int, int);
    descriptor: (III)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int fromIndex
        start local 2 // int toIndex
        start local 3 // int rows
         0: .line 908
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 1 /* fromIndex */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iload 2 /* toIndex */
            iload 3 /* rows */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 909
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 1 /* fromIndex */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iload 2 /* toIndex */
            iload 3 /* rows */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 910
            return
        end local 3 // int rows
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    3     1  fromIndex  I
            0    3     2    toIndex  I
            0    3     3       rows  I
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    
      rows       

  protected void doubleCapacity();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 914
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.capacity:I
            iconst_2
            imul
            invokestatic org.hsqldb.lib.ArrayUtil.resizeArray:(Ljava/lang/Object;I)Ljava/lang/Object;
            checkcast int[]
            putfield org.hsqldb.lib.DoubleIntIndex.keys:[I
         1: .line 915
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.capacity:I
            iconst_2
            imul
            invokestatic org.hsqldb.lib.ArrayUtil.resizeArray:(Ljava/lang/Object;I)Ljava/lang/Object;
            checkcast int[]
            putfield org.hsqldb.lib.DoubleIntIndex.values:[I
         2: .line 916
            aload 0 /* this */
            dup
            getfield org.hsqldb.lib.DoubleIntIndex.capacity:I
            iconst_2
            imul
            putfield org.hsqldb.lib.DoubleIntIndex.capacity:I
         3: .line 917
            return
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  public void removeRange(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int start
        start local 2 // int limit
         0: .line 921
            bipush 73
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 1 /* start */
         1: .line 922
            iload 1 /* start */
            iload 2 /* limit */
            isub
         2: .line 921
            invokestatic org.hsqldb.lib.ArrayUtil.adjustArray:(ILjava/lang/Object;III)V
         3: .line 923
            bipush 73
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 1 /* start */
         4: .line 924
            iload 1 /* start */
            iload 2 /* limit */
            isub
         5: .line 923
            invokestatic org.hsqldb.lib.ArrayUtil.adjustArray:(ILjava/lang/Object;III)V
         6: .line 926
            aload 0 /* this */
            dup
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 2 /* limit */
            iload 1 /* start */
            isub
            isub
            putfield org.hsqldb.lib.DoubleIntIndex.count:I
         7: .line 927
            return
        end local 2 // int limit
        end local 1 // int start
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    8     1  start  I
            0    8     2  limit  I
    MethodParameters:
       Name  Flags
      start  
      limit  

  public void removeAll();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 931
            bipush 73
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iconst_0
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            invokestatic org.hsqldb.lib.ArrayUtil.clearArray:(ILjava/lang/Object;II)V
         1: .line 932
            bipush 73
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iconst_0
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            invokestatic org.hsqldb.lib.ArrayUtil.clearArray:(ILjava/lang/Object;II)V
         2: .line 934
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.lib.DoubleIntIndex.count:I
         3: .line 935
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.lib.DoubleIntIndex.sorted:Z
         4: .line 936
            return
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  public void copyTo(org.hsqldb.lib.DoubleIntIndex);
    descriptor: (Lorg/hsqldb/lib/DoubleIntIndex;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // org.hsqldb.lib.DoubleIntIndex other
         0: .line 940
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iconst_0
            aload 1 /* other */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            iconst_0
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 941
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iconst_0
            aload 1 /* other */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            iconst_0
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 942
            aload 1 /* other */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            invokevirtual org.hsqldb.lib.DoubleIntIndex.setSize:(I)V
         3: .line 943
            return
        end local 1 // org.hsqldb.lib.DoubleIntIndex other
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    4     1  other  Lorg/hsqldb/lib/DoubleIntIndex;
    MethodParameters:
       Name  Flags
      other  

  public final void remove(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int position
         0: .line 947
            aload 0 /* this */
            iload 1 /* position */
            iconst_1
            iadd
            iload 1 /* position */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iload 1 /* position */
            isub
            iconst_1
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.moveRows:(III)V
         1: .line 949
            aload 0 /* this */
            dup
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            putfield org.hsqldb.lib.DoubleIntIndex.count:I
         2: .line 951
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.keys:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_0
            iastore
         3: .line 952
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.values:[I
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_0
            iastore
         4: .line 953
            return
        end local 1 // int position
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    5     1  position  I
    MethodParameters:
          Name  Flags
      position  

  int peekKey();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 960
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.getKey:(I)I
            ireturn
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  int peekValue();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 968
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            invokevirtual org.hsqldb.lib.DoubleIntIndex.getValue:(I)I
            ireturn
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  boolean pop();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
         0: .line 977
            aload 0 /* this */
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            ifle 3
         1: .line 978
            aload 0 /* this */
            dup
            getfield org.hsqldb.lib.DoubleIntIndex.count:I
            iconst_1
            isub
            putfield org.hsqldb.lib.DoubleIntIndex.count:I
         2: .line 980
            iconst_1
            ireturn
         3: .line 983
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hsqldb/lib/DoubleIntIndex;

  boolean push(int, int);
    descriptor: (II)Z
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hsqldb.lib.DoubleIntIndex this
        start local 1 // int key
        start local 2 // int value
         0: .line 991
            aload 0 /* this */
            iload 1 /* key */
            iload 2 /* value */
            invokevirtual org.hsqldb.lib.DoubleIntIndex.addUnsorted:(II)Z
            ireturn
        end local 2 // int value
        end local 1 // int key
        end local 0 // org.hsqldb.lib.DoubleIntIndex this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/hsqldb/lib/DoubleIntIndex;
            0    1     1    key  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      key    
      value  
}
SourceFile: "DoubleIntIndex.java"