public class com.sun.xml.internal.stream.util.BufferAllocator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.xml.internal.stream.util.BufferAllocator
  super_class: java.lang.Object
{
  private static final int SMALL_SIZE_LIMIT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 128

  private static final int MEDIUM_SIZE_LIMIT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2048

  private static final int LARGE_SIZE_LIMIT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8192

  char[] smallCharBuffer;
    descriptor: [C
    flags: (0x0000) 

  char[] mediumCharBuffer;
    descriptor: [C
    flags: (0x0000) 

  char[] largeCharBuffer;
    descriptor: [C
    flags: (0x0000) 

  byte[] smallByteBuffer;
    descriptor: [B
    flags: (0x0000) 

  byte[] mediumByteBuffer;
    descriptor: [B
    flags: (0x0000) 

  byte[] largeByteBuffer;
    descriptor: [B
    flags: (0x0000) 

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.stream.util.BufferAllocator this
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            return
        end local 0 // com.sun.xml.internal.stream.util.BufferAllocator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/xml/internal/stream/util/BufferAllocator;

  public char[] getCharBuffer(int);
    descriptor: (I)[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.xml.internal.stream.util.BufferAllocator this
        start local 1 // int size
         0: .line 54
            iload 1 /* size */
            sipush 128
            if_icmpgt 4
         1: .line 55
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.util.BufferAllocator.smallCharBuffer:[C
            astore 2 /* buffer */
        start local 2 // char[] buffer
         2: .line 56
            aload 0 /* this */
            aconst_null
            putfield com.sun.xml.internal.stream.util.BufferAllocator.smallCharBuffer:[C
         3: .line 57
            aload 2 /* buffer */
            areturn
        end local 2 // char[] buffer
         4: .line 59
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            sipush 2048
            if_icmpgt 8
         5: .line 60
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.util.BufferAllocator.mediumCharBuffer:[C
            astore 2 /* buffer */
        start local 2 // char[] buffer
         6: .line 61
            aload 0 /* this */
            aconst_null
            putfield com.sun.xml.internal.stream.util.BufferAllocator.mediumCharBuffer:[C
         7: .line 62
            aload 2 /* buffer */
            areturn
        end local 2 // char[] buffer
         8: .line 64
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            sipush 8192
            if_icmpgt 12
         9: .line 65
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.util.BufferAllocator.largeCharBuffer:[C
            astore 2 /* buffer */
        start local 2 // char[] buffer
        10: .line 66
            aload 0 /* this */
            aconst_null
            putfield com.sun.xml.internal.stream.util.BufferAllocator.largeCharBuffer:[C
        11: .line 67
            aload 2 /* buffer */
            areturn
        end local 2 // char[] buffer
        12: .line 69
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // int size
        end local 0 // com.sun.xml.internal.stream.util.BufferAllocator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lcom/sun/xml/internal/stream/util/BufferAllocator;
            0   13     1    size  I
            2    4     2  buffer  [C
            6    8     2  buffer  [C
           10   12     2  buffer  [C
    MethodParameters:
      Name  Flags
      size  

  public void returnCharBuffer(char[]);
    descriptor: ([C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.xml.internal.stream.util.BufferAllocator this
        start local 1 // char[] c
         0: .line 73
            aload 1 /* c */
            ifnonnull 2
         1: .line 74
            return
         2: .line 76
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            arraylength
            sipush 128
            if_icmpgt 5
         3: .line 77
            aload 0 /* this */
            aload 1 /* c */
            putfield com.sun.xml.internal.stream.util.BufferAllocator.smallCharBuffer:[C
         4: .line 78
            goto 10
         5: .line 79
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            arraylength
            sipush 2048
            if_icmpgt 8
         6: .line 80
            aload 0 /* this */
            aload 1 /* c */
            putfield com.sun.xml.internal.stream.util.BufferAllocator.mediumCharBuffer:[C
         7: .line 81
            goto 10
         8: .line 82
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            arraylength
            sipush 8192
            if_icmpgt 10
         9: .line 83
            aload 0 /* this */
            aload 1 /* c */
            putfield com.sun.xml.internal.stream.util.BufferAllocator.largeCharBuffer:[C
        10: .line 85
      StackMap locals:
      StackMap stack:
            return
        end local 1 // char[] c
        end local 0 // com.sun.xml.internal.stream.util.BufferAllocator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/sun/xml/internal/stream/util/BufferAllocator;
            0   11     1     c  [C
    MethodParameters:
      Name  Flags
      c     

  public byte[] getByteBuffer(int);
    descriptor: (I)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.xml.internal.stream.util.BufferAllocator this
        start local 1 // int size
         0: .line 88
            iload 1 /* size */
            sipush 128
            if_icmpgt 4
         1: .line 89
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.util.BufferAllocator.smallByteBuffer:[B
            astore 2 /* buffer */
        start local 2 // byte[] buffer
         2: .line 90
            aload 0 /* this */
            aconst_null
            putfield com.sun.xml.internal.stream.util.BufferAllocator.smallByteBuffer:[B
         3: .line 91
            aload 2 /* buffer */
            areturn
        end local 2 // byte[] buffer
         4: .line 93
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            sipush 2048
            if_icmpgt 8
         5: .line 94
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.util.BufferAllocator.mediumByteBuffer:[B
            astore 2 /* buffer */
        start local 2 // byte[] buffer
         6: .line 95
            aload 0 /* this */
            aconst_null
            putfield com.sun.xml.internal.stream.util.BufferAllocator.mediumByteBuffer:[B
         7: .line 96
            aload 2 /* buffer */
            areturn
        end local 2 // byte[] buffer
         8: .line 98
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            sipush 8192
            if_icmpgt 12
         9: .line 99
            aload 0 /* this */
            getfield com.sun.xml.internal.stream.util.BufferAllocator.largeByteBuffer:[B
            astore 2 /* buffer */
        start local 2 // byte[] buffer
        10: .line 100
            aload 0 /* this */
            aconst_null
            putfield com.sun.xml.internal.stream.util.BufferAllocator.largeByteBuffer:[B
        11: .line 101
            aload 2 /* buffer */
            areturn
        end local 2 // byte[] buffer
        12: .line 103
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // int size
        end local 0 // com.sun.xml.internal.stream.util.BufferAllocator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lcom/sun/xml/internal/stream/util/BufferAllocator;
            0   13     1    size  I
            2    4     2  buffer  [B
            6    8     2  buffer  [B
           10   12     2  buffer  [B
    MethodParameters:
      Name  Flags
      size  

  public void returnByteBuffer(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.xml.internal.stream.util.BufferAllocator this
        start local 1 // byte[] b
         0: .line 107
            aload 1 /* b */
            ifnonnull 2
         1: .line 108
            return
         2: .line 110
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            arraylength
            sipush 128
            if_icmpgt 5
         3: .line 111
            aload 0 /* this */
            aload 1 /* b */
            putfield com.sun.xml.internal.stream.util.BufferAllocator.smallByteBuffer:[B
         4: .line 112
            goto 10
         5: .line 113
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            arraylength
            sipush 2048
            if_icmpgt 8
         6: .line 114
            aload 0 /* this */
            aload 1 /* b */
            putfield com.sun.xml.internal.stream.util.BufferAllocator.mediumByteBuffer:[B
         7: .line 115
            goto 10
         8: .line 116
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            arraylength
            sipush 8192
            if_icmpgt 10
         9: .line 117
            aload 0 /* this */
            aload 1 /* b */
            putfield com.sun.xml.internal.stream.util.BufferAllocator.largeByteBuffer:[B
        10: .line 119
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] b
        end local 0 // com.sun.xml.internal.stream.util.BufferAllocator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/sun/xml/internal/stream/util/BufferAllocator;
            0   11     1     b  [B
    MethodParameters:
      Name  Flags
      b     
}
SourceFile: "BufferAllocator.java"