public final class com.ctc.wstx.io.BufferRecycler
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.ctc.wstx.io.BufferRecycler
  super_class: java.lang.Object
{
  private volatile char[] mSmallCBuffer;
    descriptor: [C
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile char[] mMediumCBuffer;
    descriptor: [C
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile char[] mFullCBuffer;
    descriptor: [C
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile byte[] mFullBBuffer;
    descriptor: [B
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.ctc.wstx.io.BufferRecycler this
         0: .line 27
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 21
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.io.BufferRecycler.mSmallCBuffer:[C
         2: .line 22
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.io.BufferRecycler.mMediumCBuffer:[C
         3: .line 23
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.io.BufferRecycler.mFullCBuffer:[C
         4: .line 25
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.io.BufferRecycler.mFullBBuffer:[B
         5: .line 27
            return
        end local 0 // com.ctc.wstx.io.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/ctc/wstx/io/BufferRecycler;

  public synchronized char[] getSmallCBuffer(int);
    descriptor: (I)[C
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.ctc.wstx.io.BufferRecycler this
        start local 1 // int minSize
         0: .line 35
            aload 0 /* this */
            getfield com.ctc.wstx.io.BufferRecycler.mSmallCBuffer:[C
            astore 2 /* result */
        start local 2 // char[] result
         1: .line 36
            aload 2 /* result */
            ifnull 4
            aload 2 /* result */
            arraylength
            iload 1 /* minSize */
            if_icmplt 4
         2: .line 37
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.io.BufferRecycler.mSmallCBuffer:[C
         3: .line 38
            aload 2 /* result */
            areturn
         4: .line 41
      StackMap locals: char[]
      StackMap stack:
            aconst_null
            areturn
        end local 2 // char[] result
        end local 1 // int minSize
        end local 0 // com.ctc.wstx.io.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/ctc/wstx/io/BufferRecycler;
            0    5     1  minSize  I
            1    5     2   result  [C
    MethodParameters:
         Name  Flags
      minSize  

  public synchronized void returnSmallCBuffer(char[]);
    descriptor: ([C)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.ctc.wstx.io.BufferRecycler this
        start local 1 // char[] buffer
         0: .line 47
            aload 0 /* this */
            aload 1 /* buffer */
            putfield com.ctc.wstx.io.BufferRecycler.mSmallCBuffer:[C
         1: .line 48
            return
        end local 1 // char[] buffer
        end local 0 // com.ctc.wstx.io.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/ctc/wstx/io/BufferRecycler;
            0    2     1  buffer  [C
    MethodParameters:
        Name  Flags
      buffer  

  public synchronized char[] getMediumCBuffer(int);
    descriptor: (I)[C
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.ctc.wstx.io.BufferRecycler this
        start local 1 // int minSize
         0: .line 54
            aload 0 /* this */
            getfield com.ctc.wstx.io.BufferRecycler.mMediumCBuffer:[C
            astore 2 /* result */
        start local 2 // char[] result
         1: .line 55
            aload 2 /* result */
            ifnull 4
            aload 2 /* result */
            arraylength
            iload 1 /* minSize */
            if_icmplt 4
         2: .line 56
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.io.BufferRecycler.mMediumCBuffer:[C
         3: .line 57
            aload 2 /* result */
            areturn
         4: .line 60
      StackMap locals: char[]
      StackMap stack:
            aconst_null
            areturn
        end local 2 // char[] result
        end local 1 // int minSize
        end local 0 // com.ctc.wstx.io.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/ctc/wstx/io/BufferRecycler;
            0    5     1  minSize  I
            1    5     2   result  [C
    MethodParameters:
         Name  Flags
      minSize  

  public synchronized void returnMediumCBuffer(char[]);
    descriptor: ([C)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.ctc.wstx.io.BufferRecycler this
        start local 1 // char[] buffer
         0: .line 65
            aload 0 /* this */
            aload 1 /* buffer */
            putfield com.ctc.wstx.io.BufferRecycler.mMediumCBuffer:[C
         1: .line 67
            return
        end local 1 // char[] buffer
        end local 0 // com.ctc.wstx.io.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/ctc/wstx/io/BufferRecycler;
            0    2     1  buffer  [C
    MethodParameters:
        Name  Flags
      buffer  

  public synchronized char[] getFullCBuffer(int);
    descriptor: (I)[C
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.ctc.wstx.io.BufferRecycler this
        start local 1 // int minSize
         0: .line 73
            aload 0 /* this */
            getfield com.ctc.wstx.io.BufferRecycler.mFullCBuffer:[C
            astore 2 /* result */
        start local 2 // char[] result
         1: .line 74
            aload 2 /* result */
            ifnull 4
            aload 2 /* result */
            arraylength
            iload 1 /* minSize */
            if_icmplt 4
         2: .line 75
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.io.BufferRecycler.mFullCBuffer:[C
         3: .line 76
            aload 2 /* result */
            areturn
         4: .line 79
      StackMap locals: char[]
      StackMap stack:
            aconst_null
            areturn
        end local 2 // char[] result
        end local 1 // int minSize
        end local 0 // com.ctc.wstx.io.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/ctc/wstx/io/BufferRecycler;
            0    5     1  minSize  I
            1    5     2   result  [C
    MethodParameters:
         Name  Flags
      minSize  

  public synchronized void returnFullCBuffer(char[]);
    descriptor: ([C)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.ctc.wstx.io.BufferRecycler this
        start local 1 // char[] buffer
         0: .line 84
            aload 0 /* this */
            aload 1 /* buffer */
            putfield com.ctc.wstx.io.BufferRecycler.mFullCBuffer:[C
         1: .line 86
            return
        end local 1 // char[] buffer
        end local 0 // com.ctc.wstx.io.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/ctc/wstx/io/BufferRecycler;
            0    2     1  buffer  [C
    MethodParameters:
        Name  Flags
      buffer  

  public synchronized byte[] getFullBBuffer(int);
    descriptor: (I)[B
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.ctc.wstx.io.BufferRecycler this
        start local 1 // int minSize
         0: .line 94
            aload 0 /* this */
            getfield com.ctc.wstx.io.BufferRecycler.mFullBBuffer:[B
            astore 2 /* result */
        start local 2 // byte[] result
         1: .line 95
            aload 2 /* result */
            ifnull 4
            aload 2 /* result */
            arraylength
            iload 1 /* minSize */
            if_icmplt 4
         2: .line 96
            aload 0 /* this */
            aconst_null
            putfield com.ctc.wstx.io.BufferRecycler.mFullBBuffer:[B
         3: .line 97
            aload 2 /* result */
            areturn
         4: .line 100
      StackMap locals: byte[]
      StackMap stack:
            aconst_null
            areturn
        end local 2 // byte[] result
        end local 1 // int minSize
        end local 0 // com.ctc.wstx.io.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/ctc/wstx/io/BufferRecycler;
            0    5     1  minSize  I
            1    5     2   result  [B
    MethodParameters:
         Name  Flags
      minSize  

  public synchronized void returnFullBBuffer(byte[]);
    descriptor: ([B)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.ctc.wstx.io.BufferRecycler this
        start local 1 // byte[] buffer
         0: .line 105
            aload 0 /* this */
            aload 1 /* buffer */
            putfield com.ctc.wstx.io.BufferRecycler.mFullBBuffer:[B
         1: .line 107
            return
        end local 1 // byte[] buffer
        end local 0 // com.ctc.wstx.io.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/ctc/wstx/io/BufferRecycler;
            0    2     1  buffer  [B
    MethodParameters:
        Name  Flags
      buffer  
}
SourceFile: "BufferRecycler.java"