public class com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream
  super_class: java.io.OutputStream
{
  private static final int INITIAL_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8192

  private static java.lang.ThreadLocal bufCache;
    descriptor: Ljava/lang/ThreadLocal;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private byte[] buf;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 32
            new com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream$1
            dup
            invokespecial com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream$1.<init>:()V
            putstatic com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.bufCache:Ljava/lang/ThreadLocal;
         1: .line 36
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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.security.utils.UnsyncByteArrayOutputStream this
         0: .line 42
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 39
            aload 0 /* this */
            sipush 8192
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.size:I
         2: .line 40
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
         3: .line 43
            aload 0 /* this */
            getstatic com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.bufCache:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast byte[]
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.buf:[B
         4: .line 44
            return
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncByteArrayOutputStream;

  public void write(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
        start local 1 // byte[] arg0
         0: .line 47
            ldc 2147483647
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            isub
            aload 1 /* arg0 */
            arraylength
            if_icmpge 2
         1: .line 48
            new java.lang.OutOfMemoryError
            dup
            invokespecial java.lang.OutOfMemoryError.<init>:()V
            athrow
         2: .line 50
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            aload 1 /* arg0 */
            arraylength
            iadd
            istore 2 /* newPos */
        start local 2 // int newPos
         3: .line 51
            iload 2 /* newPos */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.size:I
            if_icmple 5
         4: .line 52
            aload 0 /* this */
            iload 2 /* newPos */
            invokevirtual com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.expandSize:(I)V
         5: .line 54
      StackMap locals: int
      StackMap stack:
            aload 1 /* arg0 */
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.buf:[B
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            aload 1 /* arg0 */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 55
            aload 0 /* this */
            iload 2 /* newPos */
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
         7: .line 56
            return
        end local 2 // int newPos
        end local 1 // byte[] arg0
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncByteArrayOutputStream;
            0    8     1    arg0  [B
            3    8     2  newPos  I
    MethodParameters:
      Name  Flags
      arg0  

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
        start local 1 // byte[] arg0
        start local 2 // int arg1
        start local 3 // int arg2
         0: .line 59
            ldc 2147483647
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            isub
            iload 3 /* arg2 */
            if_icmpge 2
         1: .line 60
            new java.lang.OutOfMemoryError
            dup
            invokespecial java.lang.OutOfMemoryError.<init>:()V
            athrow
         2: .line 62
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            iload 3 /* arg2 */
            iadd
            istore 4 /* newPos */
        start local 4 // int newPos
         3: .line 63
            iload 4 /* newPos */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.size:I
            if_icmple 5
         4: .line 64
            aload 0 /* this */
            iload 4 /* newPos */
            invokevirtual com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.expandSize:(I)V
         5: .line 66
      StackMap locals: int
      StackMap stack:
            aload 1 /* arg0 */
            iload 2 /* arg1 */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.buf:[B
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            iload 3 /* arg2 */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 67
            aload 0 /* this */
            iload 4 /* newPos */
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
         7: .line 68
            return
        end local 4 // int newPos
        end local 3 // int arg2
        end local 2 // int arg1
        end local 1 // byte[] arg0
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncByteArrayOutputStream;
            0    8     1    arg0  [B
            0    8     2    arg1  I
            0    8     3    arg2  I
            3    8     4  newPos  I
    MethodParameters:
      Name  Flags
      arg0  
      arg1  
      arg2  

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
        start local 1 // int arg0
         0: .line 71
            ldc 2147483647
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            isub
            ifne 2
         1: .line 72
            new java.lang.OutOfMemoryError
            dup
            invokespecial java.lang.OutOfMemoryError.<init>:()V
            athrow
         2: .line 74
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            iconst_1
            iadd
            istore 2 /* newPos */
        start local 2 // int newPos
         3: .line 75
            iload 2 /* newPos */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.size:I
            if_icmple 5
         4: .line 76
            aload 0 /* this */
            iload 2 /* newPos */
            invokevirtual com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.expandSize:(I)V
         5: .line 78
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.buf:[B
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            iload 1 /* arg0 */
            i2b
            bastore
         6: .line 79
            return
        end local 2 // int newPos
        end local 1 // int arg0
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncByteArrayOutputStream;
            0    7     1    arg0  I
            3    7     2  newPos  I
    MethodParameters:
      Name  Flags
      arg0  

  public byte[] toByteArray();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
         0: .line 82
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            newarray 8
            astore 1 /* result */
        start local 1 // byte[] result
         1: .line 83
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.buf:[B
            iconst_0
            aload 1 /* result */
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 84
            aload 1 /* result */
            areturn
        end local 1 // byte[] result
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncByteArrayOutputStream;
            1    3     1  result  [B

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
         0: .line 88
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
         1: .line 89
            return
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncByteArrayOutputStream;

  private void expandSize(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
        start local 1 // int newPos
         0: .line 92
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.size:I
            istore 2 /* newSize */
        start local 2 // int newSize
         1: .line 93
            goto 5
         2: .line 94
      StackMap locals: int
      StackMap stack:
            iload 2 /* newSize */
            iconst_1
            ishl
            istore 2 /* newSize */
         3: .line 96
            iload 2 /* newSize */
            ifge 5
         4: .line 97
            ldc 2147483647
            istore 2 /* newSize */
         5: .line 93
      StackMap locals:
      StackMap stack:
            iload 1 /* newPos */
            iload 2 /* newSize */
            if_icmpgt 2
         6: .line 100
            iload 2 /* newSize */
            newarray 8
            astore 3 /* newBuf */
        start local 3 // byte[] newBuf
         7: .line 101
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.buf:[B
            iconst_0
            aload 3 /* newBuf */
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.pos:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 102
            aload 0 /* this */
            aload 3 /* newBuf */
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.buf:[B
         9: .line 103
            aload 0 /* this */
            iload 2 /* newSize */
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.size:I
        10: .line 104
            return
        end local 3 // byte[] newBuf
        end local 2 // int newSize
        end local 1 // int newPos
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncByteArrayOutputStream;
            0   11     1   newPos  I
            1   11     2  newSize  I
            7   11     3   newBuf  [B
    MethodParameters:
        Name  Flags
      newPos  
}
SourceFile: "UnsyncByteArrayOutputStream.java"
NestMembers:
  com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream$1
InnerClasses:
  com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream$1