public abstract class sun.io.ByteToCharSingleByte extends sun.io.ByteToCharConverter
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: sun.io.ByteToCharSingleByte
  super_class: sun.io.ByteToCharConverter
{
  protected java.lang.String byteToCharTable;
    descriptor: Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.io.ByteToCharSingleByte this
         0: .line 35
            aload 0 /* this */
            invokespecial sun.io.ByteToCharConverter.<init>:()V
            return
        end local 0 // sun.io.ByteToCharSingleByte this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/io/ByteToCharSingleByte;

  public java.lang.String getByteToCharTable();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.io.ByteToCharSingleByte this
         0: .line 43
            aload 0 /* this */
            getfield sun.io.ByteToCharSingleByte.byteToCharTable:Ljava/lang/String;
            areturn
        end local 0 // sun.io.ByteToCharSingleByte this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/io/ByteToCharSingleByte;

  public int flush(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.io.ByteToCharSingleByte this
        start local 1 // char[] output
        start local 2 // int outStart
        start local 3 // int outEnd
         0: .line 47
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield sun.io.ByteToCharSingleByte.charOff:I
            putfield sun.io.ByteToCharSingleByte.byteOff:I
         1: .line 48
            iconst_0
            ireturn
        end local 3 // int outEnd
        end local 2 // int outStart
        end local 1 // char[] output
        end local 0 // sun.io.ByteToCharSingleByte this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lsun/io/ByteToCharSingleByte;
            0    2     1    output  [C
            0    2     2  outStart  I
            0    2     3    outEnd  I
    MethodParameters:
          Name  Flags
      output    
      outStart  
      outEnd    

  public int convert(byte[], int, int, char[], int, int);
    descriptor: ([BII[CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=9, args_size=7
        start local 0 // sun.io.ByteToCharSingleByte this
        start local 1 // byte[] input
        start local 2 // int inOff
        start local 3 // int inEnd
        start local 4 // char[] output
        start local 5 // int outOff
        start local 6 // int outEnd
         0: .line 84
            aload 0 /* this */
            iload 5 /* outOff */
            putfield sun.io.ByteToCharSingleByte.charOff:I
         1: .line 85
            aload 0 /* this */
            iload 2 /* inOff */
            putfield sun.io.ByteToCharSingleByte.byteOff:I
         2: .line 88
            goto 16
         3: .line 90
      StackMap locals:
      StackMap stack:
            aload 1 /* input */
            aload 0 /* this */
            getfield sun.io.ByteToCharSingleByte.byteOff:I
            baload
            istore 8 /* byteIndex */
        start local 8 // int byteIndex
         4: .line 96
            aload 0 /* this */
            iload 8 /* byteIndex */
            invokevirtual sun.io.ByteToCharSingleByte.getUnicode:(I)C
            istore 7 /* outputChar */
        start local 7 // char outputChar
         5: .line 99
            iload 7 /* outputChar */
            ldc 65533
            if_icmpne 11
         6: .line 100
            aload 0 /* this */
            getfield sun.io.ByteToCharSingleByte.subMode:Z
            ifeq 9
         7: .line 101
            aload 0 /* this */
            getfield sun.io.ByteToCharSingleByte.subChars:[C
            iconst_0
            caload
            istore 7 /* outputChar */
         8: .line 102
            goto 11
         9: .line 103
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.io.ByteToCharSingleByte.badInputLength:I
        10: .line 104
            new sun.io.UnknownCharacterException
            dup
            invokespecial sun.io.UnknownCharacterException.<init>:()V
            athrow
        11: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.io.ByteToCharSingleByte.charOff:I
            iload 6 /* outEnd */
            if_icmplt 13
        12: .line 110
            new sun.io.ConversionBufferFullException
            dup
            invokespecial sun.io.ConversionBufferFullException.<init>:()V
            athrow
        13: .line 113
      StackMap locals:
      StackMap stack:
            aload 4 /* output */
            aload 0 /* this */
            getfield sun.io.ByteToCharSingleByte.charOff:I
            iload 7 /* outputChar */
            castore
        14: .line 114
            aload 0 /* this */
            dup
            getfield sun.io.ByteToCharSingleByte.charOff:I
            iconst_1
            iadd
            putfield sun.io.ByteToCharSingleByte.charOff:I
        15: .line 115
            aload 0 /* this */
            dup
            getfield sun.io.ByteToCharSingleByte.byteOff:I
            iconst_1
            iadd
            putfield sun.io.ByteToCharSingleByte.byteOff:I
        end local 8 // int byteIndex
        end local 7 // char outputChar
        16: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.io.ByteToCharSingleByte.byteOff:I
            iload 3 /* inEnd */
            if_icmplt 3
        17: .line 119
            aload 0 /* this */
            getfield sun.io.ByteToCharSingleByte.charOff:I
            iload 5 /* outOff */
            isub
            ireturn
        end local 6 // int outEnd
        end local 5 // int outOff
        end local 4 // char[] output
        end local 3 // int inEnd
        end local 2 // int inOff
        end local 1 // byte[] input
        end local 0 // sun.io.ByteToCharSingleByte this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   18     0        this  Lsun/io/ByteToCharSingleByte;
            0   18     1       input  [B
            0   18     2       inOff  I
            0   18     3       inEnd  I
            0   18     4      output  [C
            0   18     5      outOff  I
            0   18     6      outEnd  I
            5   16     7  outputChar  C
            4   16     8   byteIndex  I
    Exceptions:
      throws sun.io.UnknownCharacterException, sun.io.MalformedInputException, sun.io.ConversionBufferFullException
    MethodParameters:
        Name  Flags
      input   
      inOff   
      inEnd   
      output  
      outOff  
      outEnd  

  protected char getUnicode(int);
    descriptor: (I)C
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.io.ByteToCharSingleByte this
        start local 1 // int byteIndex
         0: .line 123
            iload 1 /* byteIndex */
            sipush 128
            iadd
            istore 2 /* n */
        start local 2 // int n
         1: .line 124
            iload 2 /* n */
            aload 0 /* this */
            getfield sun.io.ByteToCharSingleByte.byteToCharTable:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmpge 2
            iload 2 /* n */
            ifge 3
         2: .line 125
      StackMap locals: int
      StackMap stack:
            ldc 65533
            ireturn
         3: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.io.ByteToCharSingleByte.byteToCharTable:Ljava/lang/String;
            iload 2 /* n */
            invokevirtual java.lang.String.charAt:(I)C
            ireturn
        end local 2 // int n
        end local 1 // int byteIndex
        end local 0 // sun.io.ByteToCharSingleByte this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lsun/io/ByteToCharSingleByte;
            0    4     1  byteIndex  I
            1    4     2          n  I
    MethodParameters:
           Name  Flags
      byteIndex  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.io.ByteToCharSingleByte this
         0: .line 134
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield sun.io.ByteToCharSingleByte.charOff:I
            putfield sun.io.ByteToCharSingleByte.byteOff:I
         1: .line 135
            return
        end local 0 // sun.io.ByteToCharSingleByte this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/io/ByteToCharSingleByte;
}
SourceFile: "ByteToCharSingleByte.java"