public class com.sun.org.apache.xml.internal.utils.SuballocatedIntVector
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xml.internal.utils.SuballocatedIntVector
  super_class: java.lang.Object
{
  protected int m_blocksize;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

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

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

  protected static final int NUMBLOCKS_DEFAULT;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 32

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

  protected int[][] m_map;
    descriptor: [[I
    flags: (0x0004) ACC_PROTECTED

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

  protected int[] m_map0;
    descriptor: [I
    flags: (0x0004) ACC_PROTECTED

  protected int[] m_buildCache;
    descriptor: [I
    flags: (0x0004) ACC_PROTECTED

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
         0: .line 82
            aload 0 /* this */
            sipush 2048
            invokespecial com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.<init>:(I)V
         1: .line 83
            return
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int blocksize
        start local 2 // int numblocks
         0: .line 93
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 56
            aload 0 /* this */
            bipush 32
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_numblocks:I
         2: .line 62
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
         3: .line 96
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            goto 5
      StackMap locals: com.sun.org.apache.xml.internal.utils.SuballocatedIntVector int int
      StackMap stack:
         4: aload 0 /* this */
            dup
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iconst_1
            iadd
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
      StackMap locals:
      StackMap stack:
         5: iload 1 /* blocksize */
            iconst_1
            iushr
            dup
            istore 1 /* blocksize */
            ifne 4
         6: .line 98
            aload 0 /* this */
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            ishl
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
         7: .line 99
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            iconst_1
            isub
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_MASK:I
         8: .line 100
            aload 0 /* this */
            iload 2 /* numblocks */
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_numblocks:I
         9: .line 102
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            newarray 10
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map0:[I
        10: .line 103
            aload 0 /* this */
            iload 2 /* numblocks */
            anewarray int[]
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
        11: .line 104
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map0:[I
            aastore
        12: .line 105
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map0:[I
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_buildCache:[I
        13: .line 106
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_buildCacheStartIndex:I
        14: .line 107
            return
        end local 2 // int numblocks
        end local 1 // int blocksize
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0   15     1  blocksize  I
            0   15     2  numblocks  I
    MethodParameters:
           Name  Flags
      blocksize  
      numblocks  

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int blocksize
         0: .line 116
            aload 0 /* this */
            iload 1 /* blocksize */
            bipush 32
            invokespecial com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.<init>:(II)V
         1: .line 117
            return
        end local 1 // int blocksize
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0    2     1  blocksize  I
    MethodParameters:
           Name  Flags
      blocksize  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
         0: .line 126
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            ireturn
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;

  public void setSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int sz
         0: .line 137
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            iload 1 /* sz */
            if_icmple 2
         1: .line 138
            aload 0 /* this */
            iload 1 /* sz */
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
         2: .line 139
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int sz
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0    3     1    sz  I
    MethodParameters:
      Name  Flags
      sz    

  public void addElement(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int value
         0: .line 148
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_buildCacheStartIndex:I
            isub
            istore 2 /* indexRelativeToCache */
        start local 2 // int indexRelativeToCache
         1: .line 151
            iload 2 /* indexRelativeToCache */
            iflt 5
            iload 2 /* indexRelativeToCache */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            if_icmpge 5
         2: .line 152
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_buildCache:[I
            iload 2 /* indexRelativeToCache */
            iload 1 /* value */
            iastore
         3: .line 153
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            iconst_1
            iadd
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
         4: .line 154
            goto 19
         5: .line 162
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 3 /* index */
        start local 3 // int index
         6: .line 163
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_MASK:I
            iand
            istore 4 /* offset */
        start local 4 // int offset
         7: .line 165
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            arraylength
            if_icmplt 12
         8: .line 167
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_numblocks:I
            iadd
            istore 5 /* newsize */
        start local 5 // int newsize
         9: .line 168
            iload 5 /* newsize */
            anewarray int[]
            astore 6 /* newMap */
        start local 6 // int[][] newMap
        10: .line 169
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iconst_0
            aload 6 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 170
            aload 0 /* this */
            aload 6 /* newMap */
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
        end local 6 // int[][] newMap
        end local 5 // int newsize
        12: .line 172
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* index */
            aaload
            astore 5 /* block */
        start local 5 // int[] block
        13: .line 173
            aload 5 /* block */
            ifnonnull 15
        14: .line 174
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            newarray 10
            dup_x2
            aastore
            astore 5 /* block */
        15: .line 175
      StackMap locals: int[]
      StackMap stack:
            aload 5 /* block */
            iload 4 /* offset */
            iload 1 /* value */
            iastore
        16: .line 179
            aload 0 /* this */
            aload 5 /* block */
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_buildCache:[I
        17: .line 180
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            iload 4 /* offset */
            isub
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_buildCacheStartIndex:I
        18: .line 182
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            iconst_1
            iadd
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
        end local 5 // int[] block
        end local 4 // int offset
        end local 3 // int index
        19: .line 184
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int indexRelativeToCache
        end local 1 // int value
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   20     0                  this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0   20     1                 value  I
            1   20     2  indexRelativeToCache  I
            6   19     3                 index  I
            7   19     4                offset  I
            9   12     5               newsize  I
           10   12     6                newMap  [[I
           13   19     5                 block  [I
    MethodParameters:
       Name  Flags
      value  

  private void addElements(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int value
        start local 2 // int numberOfElements
         0: .line 193
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            iload 2 /* numberOfElements */
            iadd
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            if_icmpge 7
         1: .line 194
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 196
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map0:[I
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            iload 1 /* value */
            iastore
         4: .line 194
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            iload 2 /* numberOfElements */
            if_icmplt 3
        end local 3 // int i
         6: .line 197
            goto 29
         7: .line 200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 3 /* index */
        start local 3 // int index
         8: .line 201
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_MASK:I
            iand
            istore 4 /* offset */
        start local 4 // int offset
         9: .line 202
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            iload 2 /* numberOfElements */
            iadd
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
        10: .line 203
            goto 28
        11: .line 205
      StackMap locals: int int
      StackMap stack:
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            arraylength
            if_icmplt 16
        12: .line 207
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_numblocks:I
            iadd
            istore 5 /* newsize */
        start local 5 // int newsize
        13: .line 208
            iload 5 /* newsize */
            anewarray int[]
            astore 6 /* newMap */
        start local 6 // int[][] newMap
        14: .line 209
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iconst_0
            aload 6 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 210
            aload 0 /* this */
            aload 6 /* newMap */
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
        end local 6 // int[][] newMap
        end local 5 // int newsize
        16: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* index */
            aaload
            astore 5 /* block */
        start local 5 // int[] block
        17: .line 213
            aload 5 /* block */
            ifnonnull 19
        18: .line 214
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            newarray 10
            dup_x2
            aastore
            astore 5 /* block */
        19: .line 215
      StackMap locals: int[]
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            iload 4 /* offset */
            isub
            iload 2 /* numberOfElements */
            if_icmpge 21
        20: .line 216
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            iload 4 /* offset */
            isub
            goto 22
      StackMap locals:
      StackMap stack:
        21: iload 2 /* numberOfElements */
        22: .line 215
      StackMap locals:
      StackMap stack: int
            istore 6 /* copied */
        start local 6 // int copied
        23: .line 217
            iload 2 /* numberOfElements */
            iload 6 /* copied */
            isub
            istore 2 /* numberOfElements */
        24: .line 218
            goto 26
        25: .line 219
      StackMap locals: int
      StackMap stack:
            aload 5 /* block */
            iload 4 /* offset */
            iinc 4 /* offset */ 1
            iload 1 /* value */
            iastore
        26: .line 218
      StackMap locals:
      StackMap stack:
            iload 6 /* copied */
            iinc 6 /* copied */ -1
            ifgt 25
        27: .line 221
            iinc 3 /* index */ 1
            iconst_0
            istore 4 /* offset */
        end local 6 // int copied
        end local 5 // int[] block
        28: .line 203
      StackMap locals:
      StackMap stack:
            iload 2 /* numberOfElements */
            ifgt 11
        end local 4 // int offset
        end local 3 // int index
        29: .line 224
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int numberOfElements
        end local 1 // int value
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   30     0              this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0   30     1             value  I
            0   30     2  numberOfElements  I
            2    6     3                 i  I
            8   29     3             index  I
            9   29     4            offset  I
           13   16     5           newsize  I
           14   16     6            newMap  [[I
           17   28     5             block  [I
           23   28     6            copied  I
    MethodParameters:
                  Name  Flags
      value             
      numberOfElements  

  private void addElements(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int numberOfElements
         0: .line 234
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            iload 1 /* numberOfElements */
            iadd
            istore 2 /* newlen */
        start local 2 // int newlen
         1: .line 235
            iload 2 /* newlen */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            if_icmple 9
         2: .line 237
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 3 /* index */
        start local 3 // int index
         3: .line 238
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            iload 1 /* numberOfElements */
            iadd
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 4 /* newindex */
        start local 4 // int newindex
         4: .line 239
            iload 3 /* index */
            iconst_1
            iadd
            istore 5 /* i */
        start local 5 // int i
         5: goto 8
         6: .line 240
      StackMap locals: com.sun.org.apache.xml.internal.utils.SuballocatedIntVector int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 5 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            newarray 10
            aastore
         7: .line 239
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 4 /* newindex */
            if_icmple 6
        end local 5 // int i
        end local 4 // int newindex
        end local 3 // int index
         9: .line 242
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* newlen */
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
        10: .line 243
            return
        end local 2 // int newlen
        end local 1 // int numberOfElements
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   11     0              this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0   11     1  numberOfElements  I
            1   11     2            newlen  I
            3    9     3             index  I
            4    9     4          newindex  I
            5    9     5                 i  I
    MethodParameters:
                  Name  Flags
      numberOfElements  

  private void insertElementAt(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, args_size=3
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int value
        start local 2 // int at
         0: .line 258
            iload 2 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            if_icmpne 2
         1: .line 259
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.addElement:(I)V
            goto 34
         2: .line 260
      StackMap locals:
      StackMap stack:
            iload 2 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            if_icmple 16
         3: .line 262
            iload 2 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 3 /* index */
        start local 3 // int index
         4: .line 263
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            arraylength
            if_icmplt 9
         5: .line 265
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_numblocks:I
            iadd
            istore 4 /* newsize */
        start local 4 // int newsize
         6: .line 266
            iload 4 /* newsize */
            anewarray int[]
            astore 5 /* newMap */
        start local 5 // int[][] newMap
         7: .line 267
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iconst_0
            aload 5 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 268
            aload 0 /* this */
            aload 5 /* newMap */
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
        end local 5 // int[][] newMap
        end local 4 // int newsize
         9: .line 270
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* index */
            aaload
            astore 4 /* block */
        start local 4 // int[] block
        10: .line 271
            aload 4 /* block */
            ifnonnull 12
        11: .line 272
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            newarray 10
            dup_x2
            aastore
            astore 4 /* block */
        12: .line 273
      StackMap locals: int[]
      StackMap stack:
            iload 2 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_MASK:I
            iand
            istore 5 /* offset */
        start local 5 // int offset
        13: .line 274
            aload 4 /* block */
            iload 5 /* offset */
            iload 1 /* value */
            iastore
        14: .line 275
            aload 0 /* this */
            iload 5 /* offset */
            iconst_1
            iadd
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
        end local 5 // int offset
        end local 4 // int[] block
        end local 3 // int index
        15: .line 276
            goto 34
        16: .line 279
      StackMap locals:
      StackMap stack:
            iload 2 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 3 /* index */
        start local 3 // int index
        17: .line 280
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 4 /* maxindex */
        start local 4 // int maxindex
        18: .line 281
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            iconst_1
            iadd
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
        19: .line 282
            iload 2 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_MASK:I
            iand
            istore 5 /* offset */
        start local 5 // int offset
        20: .line 286
            goto 33
        21: .line 288
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            iload 5 /* offset */
            isub
            iconst_1
            isub
            istore 7 /* copylen */
        start local 7 // int copylen
        22: .line 289
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* index */
            aaload
            astore 8 /* block */
        start local 8 // int[] block
        23: .line 290
            aload 8 /* block */
            ifnonnull 27
        24: .line 292
            iconst_0
            istore 6 /* push */
        start local 6 // int push
        25: .line 293
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            newarray 10
            dup_x2
            aastore
            astore 8 /* block */
        26: .line 294
            goto 29
        end local 6 // int push
        27: .line 297
      StackMap locals: com.sun.org.apache.xml.internal.utils.SuballocatedIntVector int int int int int top int int[]
      StackMap stack:
            aload 8 /* block */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            iconst_1
            isub
            iaload
            istore 6 /* push */
        start local 6 // int push
        28: .line 298
            aload 8 /* block */
            iload 5 /* offset */
            aload 8 /* block */
            iload 5 /* offset */
            iconst_1
            iadd
            iload 7 /* copylen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        29: .line 300
      StackMap locals: com.sun.org.apache.xml.internal.utils.SuballocatedIntVector int int int int int int int int[]
      StackMap stack:
            aload 8 /* block */
            iload 5 /* offset */
            iload 1 /* value */
            iastore
        30: .line 301
            iload 6 /* push */
            istore 1 /* value */
        31: .line 302
            iconst_0
            istore 5 /* offset */
        32: .line 303
            iinc 3 /* index */ 1
        end local 8 // int[] block
        end local 7 // int copylen
        end local 6 // int push
        33: .line 286
      StackMap locals:
      StackMap stack:
            iload 3 /* index */
            iload 4 /* maxindex */
            if_icmple 21
        end local 5 // int offset
        end local 4 // int maxindex
        end local 3 // int index
        34: .line 306
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int at
        end local 1 // int value
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   35     0      this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0   35     1     value  I
            0   35     2        at  I
            4   15     3     index  I
            6    9     4   newsize  I
            7    9     5    newMap  [[I
           10   15     4     block  [I
           13   15     5    offset  I
           17   34     3     index  I
           18   34     4  maxindex  I
           20   34     5    offset  I
           25   27     6      push  I
           28   33     6      push  I
           22   33     7   copylen  I
           23   33     8     block  [I
    MethodParameters:
       Name  Flags
      value  
      at     

  public void removeAllElements();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
         0: .line 313
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
         1: .line 314
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map0:[I
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_buildCache:[I
         2: .line 315
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_buildCacheStartIndex:I
         3: .line 316
            return
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;

  private boolean removeElement(int);
    descriptor: (I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int s
         0: .line 331
            aload 0 /* this */
            iload 1 /* s */
            iconst_0
            invokevirtual com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.indexOf:(II)I
            istore 2 /* at */
        start local 2 // int at
         1: .line 332
            iload 2 /* at */
            ifge 3
         2: .line 333
            iconst_0
            ireturn
         3: .line 334
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* at */
            invokevirtual com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.removeElementAt:(I)V
         4: .line 335
            iconst_1
            ireturn
        end local 2 // int at
        end local 1 // int s
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0    5     1     s  I
            1    5     2    at  I
    MethodParameters:
      Name  Flags
      s     

  private void removeElementAt(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int at
         0: .line 349
            iload 1 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            if_icmpge 21
         1: .line 351
            iload 1 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 2 /* index */
        start local 2 // int index
         2: .line 352
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 3 /* maxindex */
        start local 3 // int maxindex
         3: .line 353
            iload 1 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_MASK:I
            iand
            istore 4 /* offset */
        start local 4 // int offset
         4: .line 355
            goto 20
         5: .line 357
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            iload 4 /* offset */
            isub
            iconst_1
            isub
            istore 5 /* copylen */
        start local 5 // int copylen
         6: .line 358
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 2 /* index */
            aaload
            astore 6 /* block */
        start local 6 // int[] block
         7: .line 359
            aload 6 /* block */
            ifnonnull 9
         8: .line 360
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 2 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            newarray 10
            dup_x2
            aastore
            astore 6 /* block */
            goto 10
         9: .line 362
      StackMap locals: int int[]
      StackMap stack:
            aload 6 /* block */
            iload 4 /* offset */
            iconst_1
            iadd
            aload 6 /* block */
            iload 4 /* offset */
            iload 5 /* copylen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 363
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            iload 3 /* maxindex */
            if_icmpge 17
        11: .line 365
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 2 /* index */
            iconst_1
            iadd
            aaload
            astore 7 /* next */
        start local 7 // int[] next
        12: .line 366
            aload 7 /* next */
            ifnull 18
        13: .line 367
            aload 6 /* block */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            iconst_1
            isub
            aload 7 /* next */
            ifnull 14
            aload 7 /* next */
            iconst_0
            iaload
            goto 15
      StackMap locals: com.sun.org.apache.xml.internal.utils.SuballocatedIntVector int int int int int int[] int[]
      StackMap stack: int[] int
        14: iconst_0
      StackMap locals: com.sun.org.apache.xml.internal.utils.SuballocatedIntVector int int int int int int[] int[]
      StackMap stack: int[] int int
        15: iastore
        end local 7 // int[] next
        16: .line 368
            goto 18
        17: .line 370
      StackMap locals:
      StackMap stack:
            aload 6 /* block */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            iconst_1
            isub
            iconst_0
            iastore
        18: .line 371
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* offset */
        19: .line 372
            iinc 2 /* index */ 1
        end local 6 // int[] block
        end local 5 // int copylen
        20: .line 355
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            iload 3 /* maxindex */
            if_icmple 5
        end local 4 // int offset
        end local 3 // int maxindex
        end local 2 // int index
        21: .line 375
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            iconst_1
            isub
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
        22: .line 376
            return
        end local 1 // int at
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   23     0      this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0   23     1        at  I
            2   21     2     index  I
            3   21     3  maxindex  I
            4   21     4    offset  I
            6   20     5   copylen  I
            7   20     6     block  [I
           12   16     7      next  [I
    MethodParameters:
      Name  Flags
      at    

  public void setElementAt(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int value
        start local 2 // int at
         0: .line 390
            iload 2 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            if_icmpge 2
         1: .line 391
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map0:[I
            iload 2 /* at */
            iload 1 /* value */
            iastore
            goto 13
         2: .line 394
      StackMap locals:
      StackMap stack:
            iload 2 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 3 /* index */
        start local 3 // int index
         3: .line 395
            iload 2 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_MASK:I
            iand
            istore 4 /* offset */
        start local 4 // int offset
         4: .line 397
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            arraylength
            if_icmplt 9
         5: .line 399
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_numblocks:I
            iadd
            istore 5 /* newsize */
        start local 5 // int newsize
         6: .line 400
            iload 5 /* newsize */
            anewarray int[]
            astore 6 /* newMap */
        start local 6 // int[][] newMap
         7: .line 401
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iconst_0
            aload 6 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 402
            aload 0 /* this */
            aload 6 /* newMap */
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
        end local 6 // int[][] newMap
        end local 5 // int newsize
         9: .line 405
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* index */
            aaload
            astore 5 /* block */
        start local 5 // int[] block
        10: .line 406
            aload 5 /* block */
            ifnonnull 12
        11: .line 407
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            newarray 10
            dup_x2
            aastore
            astore 5 /* block */
        12: .line 408
      StackMap locals: int[]
      StackMap stack:
            aload 5 /* block */
            iload 4 /* offset */
            iload 1 /* value */
            iastore
        end local 5 // int[] block
        end local 4 // int offset
        end local 3 // int index
        13: .line 411
      StackMap locals:
      StackMap stack:
            iload 2 /* at */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            if_icmplt 15
        14: .line 412
            aload 0 /* this */
            iload 2 /* at */
            iconst_1
            iadd
            putfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
        15: .line 413
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int at
        end local 1 // int value
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0   16     1    value  I
            0   16     2       at  I
            3   13     3    index  I
            4   13     4   offset  I
            6    9     5  newsize  I
            7    9     6   newMap  [[I
           10   13     5    block  [I
    MethodParameters:
       Name  Flags
      value  
      at     

  public int elementAt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int i
         0: .line 440
            iload 1 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            if_icmpge 2
         1: .line 441
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map0:[I
            iload 1 /* i */
            iaload
            ireturn
         2: .line 443
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 1 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            aaload
            iload 1 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_MASK:I
            iand
            iaload
            ireturn
        end local 1 // int i
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  private boolean contains(int);
    descriptor: (I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int s
         0: .line 455
            aload 0 /* this */
            iload 1 /* s */
            iconst_0
            invokevirtual com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.indexOf:(II)I
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int s
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0    2     1     s  I
    MethodParameters:
      Name  Flags
      s     

  public int indexOf(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=9, args_size=3
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int elem
        start local 2 // int index
         0: .line 471
            iload 2 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            if_icmplt 2
         1: .line 472
            iconst_m1
            ireturn
         2: .line 474
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 3 /* bindex */
        start local 3 // int bindex
         3: .line 475
            iload 2 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_MASK:I
            iand
            istore 4 /* boffset */
        start local 4 // int boffset
         4: .line 476
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 5 /* maxindex */
        start local 5 // int maxindex
         5: .line 479
            goto 16
         6: .line 481
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* bindex */
            aaload
            astore 6 /* block */
        start local 6 // int[] block
         7: .line 482
            aload 6 /* block */
            ifnull 14
         8: .line 483
            iload 4 /* boffset */
            istore 7 /* offset */
        start local 7 // int offset
         9: goto 13
        10: .line 484
      StackMap locals: int[] int
      StackMap stack:
            aload 6 /* block */
            iload 7 /* offset */
            iaload
            iload 1 /* elem */
            if_icmpne 12
        11: .line 485
            iload 7 /* offset */
            iload 3 /* bindex */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            imul
            iadd
            ireturn
        12: .line 483
      StackMap locals:
      StackMap stack:
            iinc 7 /* offset */ 1
      StackMap locals:
      StackMap stack:
        13: iload 7 /* offset */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            if_icmplt 10
        end local 7 // int offset
        14: .line 486
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* boffset */
        15: .line 479
            iinc 3 /* bindex */ 1
        end local 6 // int[] block
      StackMap locals:
      StackMap stack:
        16: iload 3 /* bindex */
            iload 5 /* maxindex */
            if_icmplt 6
        17: .line 489
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_MASK:I
            iand
            istore 7 /* maxoffset */
        start local 7 // int maxoffset
        18: .line 490
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 5 /* maxindex */
            aaload
            astore 6 /* block */
        start local 6 // int[] block
        19: .line 491
            iload 4 /* boffset */
            istore 8 /* offset */
        start local 8 // int offset
        20: goto 24
        21: .line 492
      StackMap locals: int[] int int
      StackMap stack:
            aload 6 /* block */
            iload 8 /* offset */
            iaload
            iload 1 /* elem */
            if_icmpne 23
        22: .line 493
            iload 8 /* offset */
            iload 5 /* maxindex */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            imul
            iadd
            ireturn
        23: .line 491
      StackMap locals:
      StackMap stack:
            iinc 8 /* offset */ 1
      StackMap locals:
      StackMap stack:
        24: iload 8 /* offset */
            iload 7 /* maxoffset */
            if_icmplt 21
        end local 8 // int offset
        25: .line 495
            iconst_m1
            ireturn
        end local 7 // int maxoffset
        end local 6 // int[] block
        end local 5 // int maxindex
        end local 4 // int boffset
        end local 3 // int bindex
        end local 2 // int index
        end local 1 // int elem
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   26     0       this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0   26     1       elem  I
            0   26     2      index  I
            3   26     3     bindex  I
            4   26     4    boffset  I
            5   26     5   maxindex  I
            7   16     6      block  [I
           19   26     6      block  [I
            9   14     7     offset  I
           18   26     7  maxoffset  I
           20   25     8     offset  I
    MethodParameters:
       Name  Flags
      elem   
      index  

  public int indexOf(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int elem
         0: .line 510
            aload 0 /* this */
            iload 1 /* elem */
            iconst_0
            invokevirtual com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.indexOf:(II)I
            ireturn
        end local 1 // int elem
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0    1     1  elem  I
    MethodParameters:
      Name  Flags
      elem  

  private int lastIndexOf(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
        start local 1 // int elem
         0: .line 525
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_MASK:I
            iand
            istore 2 /* boffset */
        start local 2 // int boffset
         1: .line 526
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_firstFree:I
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_SHIFT:I
            iushr
            istore 3 /* index */
        start local 3 // int index
         2: .line 527
            goto 13
         3: .line 530
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            iload 3 /* index */
            aaload
            astore 4 /* block */
        start local 4 // int[] block
         4: .line 531
            aload 4 /* block */
            ifnull 11
         5: .line 532
            iload 2 /* boffset */
            istore 5 /* offset */
        start local 5 // int offset
         6: goto 10
         7: .line 533
      StackMap locals: int[] int
      StackMap stack:
            aload 4 /* block */
            iload 5 /* offset */
            iaload
            iload 1 /* elem */
            if_icmpne 9
         8: .line 534
            iload 5 /* offset */
            iload 3 /* index */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_blocksize:I
            imul
            iadd
            ireturn
         9: .line 532
      StackMap locals:
      StackMap stack:
            iinc 5 /* offset */ -1
      StackMap locals:
      StackMap stack:
        10: iload 5 /* offset */
            ifge 7
        end local 5 // int offset
        11: .line 535
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* boffset */
        end local 4 // int[] block
        12: .line 528
            iinc 3 /* index */ -1
        13: .line 527
      StackMap locals:
      StackMap stack:
            iload 3 /* index */
        14: .line 526
            ifge 3
        end local 3 // int index
        15: .line 537
            iconst_m1
            ireturn
        end local 2 // int boffset
        end local 1 // int elem
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
            0   16     1     elem  I
            1   16     2  boffset  I
            2   15     3    index  I
            4   12     4    block  [I
            6   11     5   offset  I
    MethodParameters:
      Name  Flags
      elem  

  public final int[] getMap0();
    descriptor: ()[I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
         0: .line 546
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map0:[I
            areturn
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;

  public final int[][] getMap();
    descriptor: ()[[I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
         0: .line 555
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.utils.SuballocatedIntVector.m_map:[[I
            areturn
        end local 0 // com.sun.org.apache.xml.internal.utils.SuballocatedIntVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xml/internal/utils/SuballocatedIntVector;
}
SourceFile: "SuballocatedIntVector.java"