public class com.sun.org.apache.xerces.internal.util.SymbolHash
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xerces.internal.util.SymbolHash
  super_class: java.lang.Object
{
  protected static final int TABLE_SIZE;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 101

  protected static final int MAX_HASH_COLLISIONS;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 40

  protected static final int MULTIPLIERS_SIZE;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 32

  protected static final int MULTIPLIERS_MASK;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 31

  protected int fTableSize;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected com.sun.org.apache.xerces.internal.util.SymbolHash$Entry[] fBuckets;
    descriptor: [Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
    flags: (0x0004) ACC_PROTECTED

  protected int fNum;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int[] fHashMultipliers;
    descriptor: [I
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
         0: .line 73
            aload 0 /* this */
            bipush 101
            invokespecial com.sun.org.apache.xerces.internal.util.SymbolHash.<init>:(I)V
         1: .line 74
            return
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
        start local 1 // int size
         0: .line 81
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 59
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
         2: .line 82
            aload 0 /* this */
            iload 1 /* size */
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
         3: .line 83
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
            anewarray com.sun.org.apache.xerces.internal.util.SymbolHash$Entry
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
         4: .line 84
            return
        end local 1 // int size
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            0    5     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public void put(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 101
            iconst_0
            istore 3 /* collisionCount */
        start local 3 // int collisionCount
         1: .line 102
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.sun.org.apache.xerces.internal.util.SymbolHash.hash:(Ljava/lang/Object;)I
            istore 4 /* hash */
        start local 4 // int hash
         2: .line 103
            iload 4 /* hash */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
            irem
            istore 5 /* bucket */
        start local 5 // int bucket
         3: .line 104
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            iload 5 /* bucket */
            aaload
            astore 6 /* entry */
        start local 6 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
         4: goto 10
         5: .line 105
      StackMap locals: com.sun.org.apache.xerces.internal.util.SymbolHash java.lang.Object java.lang.Object int int int com.sun.org.apache.xerces.internal.util.SymbolHash$Entry
      StackMap stack:
            aload 1 /* key */
            aload 6 /* entry */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.key:Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
         6: .line 107
            aload 6 /* entry */
            aload 2 /* value */
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.value:Ljava/lang/Object;
         7: .line 108
            return
         8: .line 110
      StackMap locals:
      StackMap stack:
            iinc 3 /* collisionCount */ 1
         9: .line 104
            aload 6 /* entry */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.next:Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            astore 6 /* entry */
      StackMap locals:
      StackMap stack:
        10: aload 6 /* entry */
            ifnonnull 5
        end local 6 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
        11: .line 113
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
            if_icmplt 15
        12: .line 116
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xerces.internal.util.SymbolHash.rehash:()V
        13: .line 117
            iload 4 /* hash */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
            irem
            istore 5 /* bucket */
        14: .line 118
            goto 18
        15: .line 119
      StackMap locals:
      StackMap stack:
            iload 3 /* collisionCount */
            bipush 40
            if_icmplt 18
            aload 1 /* key */
            instanceof java.lang.String
            ifeq 18
        16: .line 122
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xerces.internal.util.SymbolHash.rebalance:()V
        17: .line 123
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.sun.org.apache.xerces.internal.util.SymbolHash.hash:(Ljava/lang/Object;)I
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
            irem
            istore 5 /* bucket */
        18: .line 127
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.xerces.internal.util.SymbolHash$Entry
            dup
            aload 1 /* key */
            aload 2 /* value */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            iload 5 /* bucket */
            aaload
            invokespecial com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.<init>:(Ljava/lang/Object;Ljava/lang/Object;Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;)V
            astore 6 /* entry */
        start local 6 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
        19: .line 128
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            iload 5 /* bucket */
            aload 6 /* entry */
            aastore
        20: .line 129
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
            iconst_1
            iadd
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
        21: .line 130
            return
        end local 6 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
        end local 5 // int bucket
        end local 4 // int hash
        end local 3 // int collisionCount
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   22     0            this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            0   22     1             key  Ljava/lang/Object;
            0   22     2           value  Ljava/lang/Object;
            1   22     3  collisionCount  I
            2   22     4            hash  I
            3   22     5          bucket  I
            4   11     6           entry  Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
           19   22     6           entry  Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
    MethodParameters:
       Name  Flags
      key    
      value  

  public java.lang.Object get(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
        start local 1 // java.lang.Object key
         0: .line 139
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.sun.org.apache.xerces.internal.util.SymbolHash.hash:(Ljava/lang/Object;)I
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
            irem
            istore 2 /* bucket */
        start local 2 // int bucket
         1: .line 140
            aload 0 /* this */
            aload 1 /* key */
            iload 2 /* bucket */
            invokevirtual com.sun.org.apache.xerces.internal.util.SymbolHash.search:(Ljava/lang/Object;I)Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            astore 3 /* entry */
        start local 3 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
         2: .line 141
            aload 3 /* entry */
            ifnull 4
         3: .line 142
            aload 3 /* entry */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.value:Ljava/lang/Object;
            areturn
         4: .line 144
      StackMap locals: int com.sun.org.apache.xerces.internal.util.SymbolHash$Entry
      StackMap stack:
            aconst_null
            areturn
        end local 3 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
        end local 2 // int bucket
        end local 1 // java.lang.Object key
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            0    5     1     key  Ljava/lang/Object;
            1    5     2  bucket  I
            2    5     3   entry  Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
    MethodParameters:
      Name  Flags
      key   

  public int getLength();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
         0: .line 153
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
            ireturn
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;

  public int getValues(java.lang.Object[], int);
    descriptor: ([Ljava/lang/Object;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
        start local 1 // java.lang.Object[] elements
        start local 2 // int from
         0: .line 164
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: iconst_0
            istore 4 /* j */
        start local 4 // int j
         2: goto 10
         3: .line 165
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            iload 3 /* i */
            aaload
            astore 5 /* entry */
        start local 5 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
         4: goto 8
         5: .line 166
      StackMap locals: com.sun.org.apache.xerces.internal.util.SymbolHash$Entry
      StackMap stack:
            aload 1 /* elements */
            iload 2 /* from */
            iload 4 /* j */
            iadd
            aload 5 /* entry */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.value:Ljava/lang/Object;
            aastore
         6: .line 167
            iinc 4 /* j */ 1
         7: .line 165
            aload 5 /* entry */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.next:Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            astore 5 /* entry */
      StackMap locals:
      StackMap stack:
         8: aload 5 /* entry */
            ifnonnull 5
        end local 5 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
         9: .line 164
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
            if_icmpge 11
            iload 4 /* j */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
            if_icmplt 3
        end local 4 // int j
        end local 3 // int i
        11: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
            ireturn
        end local 2 // int from
        end local 1 // java.lang.Object[] elements
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            0   12     1  elements  [Ljava/lang/Object;
            0   12     2      from  I
            1   11     3         i  I
            2   11     4         j  I
            4    9     5     entry  Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
    MethodParameters:
          Name  Flags
      elements  
      from      

  public java.lang.Object[] getEntries();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
         0: .line 177
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
            iconst_1
            ishl
            anewarray java.lang.Object
            astore 1 /* entries */
        start local 1 // java.lang.Object[] entries
         1: .line 178
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: iconst_0
            istore 3 /* j */
        start local 3 // int j
         3: goto 12
         4: .line 179
      StackMap locals: java.lang.Object[] int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            iload 2 /* i */
            aaload
            astore 4 /* entry */
        start local 4 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
         5: goto 10
         6: .line 180
      StackMap locals: com.sun.org.apache.xerces.internal.util.SymbolHash$Entry
      StackMap stack:
            aload 1 /* entries */
            iload 3 /* j */
            aload 4 /* entry */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.key:Ljava/lang/Object;
            aastore
         7: .line 181
            aload 1 /* entries */
            iinc 3 /* j */ 1
            iload 3 /* j */
            aload 4 /* entry */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.value:Ljava/lang/Object;
            aastore
         8: .line 182
            iinc 3 /* j */ 1
         9: .line 179
            aload 4 /* entry */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.next:Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            astore 4 /* entry */
      StackMap locals:
      StackMap stack:
        10: aload 4 /* entry */
            ifnonnull 6
        end local 4 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
        11: .line 178
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
            if_icmpge 13
            iload 3 /* j */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
            iconst_1
            ishl
            if_icmplt 4
        end local 3 // int j
        end local 2 // int i
        13: .line 185
      StackMap locals:
      StackMap stack:
            aload 1 /* entries */
            areturn
        end local 1 // java.lang.Object[] entries
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            1   14     1  entries  [Ljava/lang/Object;
            2   13     2        i  I
            3   13     3        j  I
            5   11     4    entry  Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;

  public com.sun.org.apache.xerces.internal.util.SymbolHash makeClone();
    descriptor: ()Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
         0: .line 192
            new com.sun.org.apache.xerces.internal.util.SymbolHash
            dup
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
            invokespecial com.sun.org.apache.xerces.internal.util.SymbolHash.<init>:(I)V
            astore 1 /* newTable */
        start local 1 // com.sun.org.apache.xerces.internal.util.SymbolHash newTable
         1: .line 193
            aload 1 /* newTable */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
         2: .line 194
            aload 1 /* newTable */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fHashMultipliers:[I
            ifnull 3
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fHashMultipliers:[I
            invokevirtual int[].clone:()Ljava/lang/Object;
            checkcast int[]
            goto 4
      StackMap locals: com.sun.org.apache.xerces.internal.util.SymbolHash com.sun.org.apache.xerces.internal.util.SymbolHash
      StackMap stack: com.sun.org.apache.xerces.internal.util.SymbolHash
         3: aconst_null
      StackMap locals: com.sun.org.apache.xerces.internal.util.SymbolHash com.sun.org.apache.xerces.internal.util.SymbolHash
      StackMap stack: com.sun.org.apache.xerces.internal.util.SymbolHash int[]
         4: putfield com.sun.org.apache.xerces.internal.util.SymbolHash.fHashMultipliers:[I
         5: .line 195
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 196
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            iload 2 /* i */
            aaload
            ifnull 9
         8: .line 197
            aload 1 /* newTable */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            iload 2 /* i */
            aaload
            invokevirtual com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.makeClone:()Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            aastore
         9: .line 195
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
            if_icmplt 7
        end local 2 // int i
        11: .line 200
            aload 1 /* newTable */
            areturn
        end local 1 // com.sun.org.apache.xerces.internal.util.SymbolHash newTable
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            1   12     1  newTable  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            6   11     2         i  I

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
         0: .line 208
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 209
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            iload 1 /* i */
            aconst_null
            aastore
         3: .line 208
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
            if_icmplt 2
        end local 1 // int i
         5: .line 211
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash.fNum:I
         6: .line 212
            aload 0 /* this */
            aconst_null
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash.fHashMultipliers:[I
         7: .line 213
            return
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            1    5     1     i  I

  protected com.sun.org.apache.xerces.internal.util.SymbolHash$Entry search(java.lang.Object, int);
    descriptor: (Ljava/lang/Object;I)Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
        start local 1 // java.lang.Object key
        start local 2 // int bucket
         0: .line 217
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            iload 2 /* bucket */
            aaload
            astore 3 /* entry */
        start local 3 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
         1: goto 5
         2: .line 218
      StackMap locals: com.sun.org.apache.xerces.internal.util.SymbolHash$Entry
      StackMap stack:
            aload 1 /* key */
            aload 3 /* entry */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.key:Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 219
            aload 3 /* entry */
            areturn
         4: .line 217
      StackMap locals:
      StackMap stack:
            aload 3 /* entry */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.next:Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            astore 3 /* entry */
      StackMap locals:
      StackMap stack:
         5: aload 3 /* entry */
            ifnonnull 2
        end local 3 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry entry
         6: .line 221
            aconst_null
            areturn
        end local 2 // int bucket
        end local 1 // java.lang.Object key
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            0    7     1     key  Ljava/lang/Object;
            0    7     2  bucket  I
            1    6     3   entry  Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
    MethodParameters:
        Name  Flags
      key     
      bucket  

  protected int hash(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
        start local 1 // java.lang.Object key
         0: .line 230
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fHashMultipliers:[I
            ifnull 1
            aload 1 /* key */
            instanceof java.lang.String
            ifne 2
         1: .line 231
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            ldc 2147483647
            iand
            ireturn
         2: .line 233
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            checkcast java.lang.String
            invokevirtual com.sun.org.apache.xerces.internal.util.SymbolHash.hash0:(Ljava/lang/String;)I
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            0    3     1   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  private int hash0(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
        start local 1 // java.lang.String symbol
         0: .line 237
            iconst_0
            istore 2 /* code */
        start local 2 // int code
         1: .line 238
            aload 1 /* symbol */
            invokevirtual java.lang.String.length:()I
            istore 3 /* length */
        start local 3 // int length
         2: .line 239
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fHashMultipliers:[I
            astore 4 /* multipliers */
        start local 4 // int[] multipliers
         3: .line 240
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         4: goto 7
         5: .line 241
      StackMap locals: com.sun.org.apache.xerces.internal.util.SymbolHash java.lang.String int int int[] int
      StackMap stack:
            iload 2 /* code */
            aload 4 /* multipliers */
            iload 5 /* i */
            bipush 31
            iand
            iaload
            imul
            aload 1 /* symbol */
            iload 5 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            iadd
            istore 2 /* code */
         6: .line 240
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 5 /* i */
            iload 3 /* length */
            if_icmplt 5
        end local 5 // int i
         8: .line 243
            iload 2 /* code */
            ldc 2147483647
            iand
            ireturn
        end local 4 // int[] multipliers
        end local 3 // int length
        end local 2 // int code
        end local 1 // java.lang.String symbol
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            0    9     1       symbol  Ljava/lang/String;
            1    9     2         code  I
            2    9     3       length  I
            3    9     4  multipliers  [I
            4    8     5            i  I
    MethodParameters:
        Name  Flags
      symbol  

  protected void rehash();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
         0: .line 253
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            arraylength
            iconst_1
            ishl
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xerces.internal.util.SymbolHash.rehashCommon:(I)V
         1: .line 254
            return
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;

  protected void rebalance();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
         0: .line 263
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fHashMultipliers:[I
            ifnonnull 2
         1: .line 264
            aload 0 /* this */
            bipush 32
            newarray 10
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash.fHashMultipliers:[I
         2: .line 266
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fHashMultipliers:[I
            invokestatic com.sun.org.apache.xerces.internal.util.PrimeNumberSequenceGenerator.generateSequence:([I)V
         3: .line 267
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            arraylength
            invokevirtual com.sun.org.apache.xerces.internal.util.SymbolHash.rehashCommon:(I)V
         4: .line 268
            return
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;

  private void rehashCommon(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=9, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
        start local 1 // int newCapacity
         0: .line 272
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            arraylength
            istore 2 /* oldCapacity */
        start local 2 // int oldCapacity
         1: .line 273
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            astore 3 /* oldTable */
        start local 3 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry[] oldTable
         2: .line 275
            iload 1 /* newCapacity */
            anewarray com.sun.org.apache.xerces.internal.util.SymbolHash$Entry
            astore 4 /* newTable */
        start local 4 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry[] newTable
         3: .line 277
            aload 0 /* this */
            aload 4 /* newTable */
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
         4: .line 278
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash.fBuckets:[Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            arraylength
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash.fTableSize:I
         5: .line 280
            iload 2 /* oldCapacity */
            istore 5 /* i */
        start local 5 // int i
         6: goto 15
         7: .line 281
      StackMap locals: com.sun.org.apache.xerces.internal.util.SymbolHash int int com.sun.org.apache.xerces.internal.util.SymbolHash$Entry[] com.sun.org.apache.xerces.internal.util.SymbolHash$Entry[] int
      StackMap stack:
            aload 3 /* oldTable */
            iload 5 /* i */
            aaload
            astore 6 /* old */
        start local 6 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry old
         8: goto 14
         9: .line 282
      StackMap locals: com.sun.org.apache.xerces.internal.util.SymbolHash$Entry
      StackMap stack:
            aload 6 /* old */
            astore 7 /* e */
        start local 7 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry e
        10: .line 283
            aload 6 /* old */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.next:Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            astore 6 /* old */
        11: .line 285
            aload 0 /* this */
            aload 7 /* e */
            getfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.key:Ljava/lang/Object;
            invokevirtual com.sun.org.apache.xerces.internal.util.SymbolHash.hash:(Ljava/lang/Object;)I
            iload 1 /* newCapacity */
            irem
            istore 8 /* index */
        start local 8 // int index
        12: .line 286
            aload 7 /* e */
            aload 4 /* newTable */
            iload 8 /* index */
            aaload
            putfield com.sun.org.apache.xerces.internal.util.SymbolHash$Entry.next:Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
        13: .line 287
            aload 4 /* newTable */
            iload 8 /* index */
            aload 7 /* e */
            aastore
        end local 8 // int index
        end local 7 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry e
        14: .line 281
      StackMap locals:
      StackMap stack:
            aload 6 /* old */
            ifnonnull 9
        end local 6 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry old
        15: .line 280
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iinc 5 /* i */ -1
            ifgt 7
        end local 5 // int i
        16: .line 290
            return
        end local 4 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry[] newTable
        end local 3 // com.sun.org.apache.xerces.internal.util.SymbolHash$Entry[] oldTable
        end local 2 // int oldCapacity
        end local 1 // int newCapacity
        end local 0 // com.sun.org.apache.xerces.internal.util.SymbolHash this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   17     0         this  Lcom/sun/org/apache/xerces/internal/util/SymbolHash;
            0   17     1  newCapacity  I
            1   17     2  oldCapacity  I
            2   17     3     oldTable  [Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            3   17     4     newTable  [Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
            6   16     5            i  I
            8   15     6          old  Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
           10   14     7            e  Lcom/sun/org/apache/xerces/internal/util/SymbolHash$Entry;
           12   14     8        index  I
    MethodParameters:
             Name  Flags
      newCapacity  final
}
SourceFile: "SymbolHash.java"
NestMembers:
  com.sun.org.apache.xerces.internal.util.SymbolHash$Entry
InnerClasses:
  protected final Entry = com.sun.org.apache.xerces.internal.util.SymbolHash$Entry of com.sun.org.apache.xerces.internal.util.SymbolHash