public class sun.java2d.xr.GrowableByteArray
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.java2d.xr.GrowableByteArray
  super_class: java.lang.Object
{
  byte[] array;
    descriptor: [B
    flags: (0x0000) 

  int size;
    descriptor: I
    flags: (0x0000) 

  int cellSize;
    descriptor: I
    flags: (0x0000) 

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // sun.java2d.xr.GrowableByteArray this
        start local 1 // int cellSize
        start local 2 // int initialSize
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            iload 2 /* initialSize */
            newarray 8
            putfield sun.java2d.xr.GrowableByteArray.array:[B
         2: .line 47
            aload 0 /* this */
            iconst_0
            putfield sun.java2d.xr.GrowableByteArray.size:I
         3: .line 48
            aload 0 /* this */
            iload 1 /* cellSize */
            putfield sun.java2d.xr.GrowableByteArray.cellSize:I
         4: .line 49
            return
        end local 2 // int initialSize
        end local 1 // int cellSize
        end local 0 // sun.java2d.xr.GrowableByteArray this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lsun/java2d/xr/GrowableByteArray;
            0    5     1     cellSize  I
            0    5     2  initialSize  I
    MethodParameters:
             Name  Flags
      cellSize     
      initialSize  

  private int getNextCellIndex();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.java2d.xr.GrowableByteArray this
         0: .line 53
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.size:I
            istore 1 /* oldSize */
        start local 1 // int oldSize
         1: .line 54
            aload 0 /* this */
            dup
            getfield sun.java2d.xr.GrowableByteArray.size:I
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.cellSize:I
            iadd
            putfield sun.java2d.xr.GrowableByteArray.size:I
         2: .line 56
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.size:I
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.array:[B
            arraylength
            if_icmplt 4
         3: .line 58
            aload 0 /* this */
            invokevirtual sun.java2d.xr.GrowableByteArray.growArray:()V
         4: .line 61
      StackMap locals: int
      StackMap stack:
            iload 1 /* oldSize */
            ireturn
        end local 1 // int oldSize
        end local 0 // sun.java2d.xr.GrowableByteArray this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lsun/java2d/xr/GrowableByteArray;
            1    5     1  oldSize  I

  public byte[] getArray();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.java2d.xr.GrowableByteArray this
         0: .line 69
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.array:[B
            areturn
        end local 0 // sun.java2d.xr.GrowableByteArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/java2d/xr/GrowableByteArray;

  public byte[] getSizedArray();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.java2d.xr.GrowableByteArray this
         0: .line 77
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.array:[B
            aload 0 /* this */
            invokevirtual sun.java2d.xr.GrowableByteArray.getSize:()I
            invokestatic java.util.Arrays.copyOf:([BI)[B
            areturn
        end local 0 // sun.java2d.xr.GrowableByteArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/java2d/xr/GrowableByteArray;

  public final int getByte(int);
    descriptor: (I)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.java2d.xr.GrowableByteArray this
        start local 1 // int index
         0: .line 82
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.array:[B
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual sun.java2d.xr.GrowableByteArray.getCellIndex:(I)I
            baload
            ireturn
        end local 1 // int index
        end local 0 // sun.java2d.xr.GrowableByteArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lsun/java2d/xr/GrowableByteArray;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public final int getNextIndex();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.java2d.xr.GrowableByteArray this
         0: .line 91
            aload 0 /* this */
            invokevirtual sun.java2d.xr.GrowableByteArray.getNextCellIndex:()I
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.cellSize:I
            idiv
            ireturn
        end local 0 // sun.java2d.xr.GrowableByteArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/java2d/xr/GrowableByteArray;

  protected final int getCellIndex(int);
    descriptor: (I)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.java2d.xr.GrowableByteArray this
        start local 1 // int cellIndex
         0: .line 96
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.cellSize:I
            iload 1 /* cellIndex */
            imul
            ireturn
        end local 1 // int cellIndex
        end local 0 // sun.java2d.xr.GrowableByteArray this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lsun/java2d/xr/GrowableByteArray;
            0    1     1  cellIndex  I
    MethodParameters:
           Name  Flags
      cellIndex  

  public final void addByte(byte);
    descriptor: (B)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.java2d.xr.GrowableByteArray this
        start local 1 // byte i
         0: .line 101
            aload 0 /* this */
            invokevirtual sun.java2d.xr.GrowableByteArray.getNextIndex:()I
            istore 2 /* nextIndex */
        start local 2 // int nextIndex
         1: .line 102
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.array:[B
            iload 2 /* nextIndex */
            iload 1 /* i */
            bastore
         2: .line 103
            return
        end local 2 // int nextIndex
        end local 1 // byte i
        end local 0 // sun.java2d.xr.GrowableByteArray this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lsun/java2d/xr/GrowableByteArray;
            0    3     1          i  B
            1    3     2  nextIndex  I
    MethodParameters:
      Name  Flags
      i     

  public final int getSize();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.java2d.xr.GrowableByteArray this
         0: .line 110
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.size:I
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.cellSize:I
            idiv
            ireturn
        end local 0 // sun.java2d.xr.GrowableByteArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/java2d/xr/GrowableByteArray;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.java2d.xr.GrowableByteArray this
         0: .line 115
            aload 0 /* this */
            iconst_0
            putfield sun.java2d.xr.GrowableByteArray.size:I
         1: .line 116
            return
        end local 0 // sun.java2d.xr.GrowableByteArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/java2d/xr/GrowableByteArray;

  protected void growArray();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // sun.java2d.xr.GrowableByteArray this
         0: .line 120
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.array:[B
            arraylength
            iconst_2
            imul
            bipush 10
            invokestatic java.lang.Math.max:(II)I
            istore 1 /* newSize */
        start local 1 // int newSize
         1: .line 121
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.array:[B
            astore 2 /* oldArray */
        start local 2 // byte[] oldArray
         2: .line 122
            aload 0 /* this */
            iload 1 /* newSize */
            newarray 8
            putfield sun.java2d.xr.GrowableByteArray.array:[B
         3: .line 124
            aload 2 /* oldArray */
            iconst_0
            aload 0 /* this */
            getfield sun.java2d.xr.GrowableByteArray.array:[B
            iconst_0
            aload 2 /* oldArray */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 125
            return
        end local 2 // byte[] oldArray
        end local 1 // int newSize
        end local 0 // sun.java2d.xr.GrowableByteArray this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lsun/java2d/xr/GrowableByteArray;
            1    5     1   newSize  I
            2    5     2  oldArray  [B
}
SourceFile: "GrowableByteArray.java"