public class org.eclipse.jgit.lib.ObjectIdOwnerMap<V extends org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry> implements java.lang.Iterable<V>, org.eclipse.jgit.lib.ObjectIdSet
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.lib.ObjectIdOwnerMap
  super_class: java.lang.Object
{
  private static final int INITIAL_DIRECTORY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1024

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

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

  V[][] directory;
    descriptor: [[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
    flags: (0x0000) 
    Signature: [[TV;

  int size;
    descriptor: I
    flags: (0x0000) 

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

  int bits;
    descriptor: I
    flags: (0x0000) 

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
         0: .line 74
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 75
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap.bits:I
         2: .line 76
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap.mask:I
         3: .line 77
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.bits:I
            invokestatic org.eclipse.jgit.lib.ObjectIdOwnerMap.computeGrowAt:(I)I
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap.grow:I
         4: .line 79
            aload 0 /* this */
            sipush 1024
            anewarray org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[]
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap.directory:[[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
         5: .line 80
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.directory:[[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            iconst_0
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectIdOwnerMap.newSegment:()[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            aastore
         6: .line 81
            return
        end local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jgit/lib/ObjectIdOwnerMap<TV;>;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
         0: .line 87
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap.size:I
         1: .line 89
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.directory:[[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 7
      StackMap locals: org.eclipse.jgit.lib.ObjectIdOwnerMap top int int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[][]
      StackMap stack:
         2: aload 4
            iload 2
            aaload
            astore 1 /* tbl */
        start local 1 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] tbl
         3: .line 90
            aload 1 /* tbl */
            ifnonnull 5
         4: .line 91
            goto 8
         5: .line 92
      StackMap locals: org.eclipse.jgit.lib.ObjectIdOwnerMap org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] int int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[][]
      StackMap stack:
            aload 1 /* tbl */
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
        end local 1 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] tbl
         6: .line 89
            iinc 2 1
      StackMap locals: org.eclipse.jgit.lib.ObjectIdOwnerMap top int int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[][]
      StackMap stack:
         7: iload 2
            iload 3
            if_icmplt 2
         8: .line 94
      StackMap locals: org.eclipse.jgit.lib.ObjectIdOwnerMap
      StackMap stack:
            return
        end local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/eclipse/jgit/lib/ObjectIdOwnerMap<TV;>;
            3    6     1   tbl  [Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;

  public V get(org.eclipse.jgit.lib.AnyObjectId);
    descriptor: (Lorg/eclipse/jgit/lib/AnyObjectId;)Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
        start local 1 // org.eclipse.jgit.lib.AnyObjectId toFind
         0: .line 105
            aload 1 /* toFind */
            ifnonnull 2
         1: .line 106
            aconst_null
            areturn
         2: .line 108
      StackMap locals:
      StackMap stack:
            aload 1 /* toFind */
            getfield org.eclipse.jgit.lib.AnyObjectId.w1:I
            istore 2 /* h */
        start local 2 // int h
         3: .line 109
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.directory:[[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            iload 2 /* h */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.mask:I
            iand
            aaload
            iload 2 /* h */
            bipush 21
            iushr
            aaload
            astore 3 /* obj */
        start local 3 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry obj
         4: .line 110
            goto 8
         5: .line 111
      StackMap locals: int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry
      StackMap stack:
            aload 3 /* obj */
            aload 1 /* toFind */
            invokestatic org.eclipse.jgit.lib.ObjectIdOwnerMap.equals:(Lorg/eclipse/jgit/lib/AnyObjectId;Lorg/eclipse/jgit/lib/AnyObjectId;)Z
            ifeq 7
         6: .line 112
            aload 3 /* obj */
            areturn
         7: .line 110
      StackMap locals:
      StackMap stack:
            aload 3 /* obj */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.next:Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            astore 3 /* obj */
      StackMap locals:
      StackMap stack:
         8: aload 3 /* obj */
            ifnonnull 5
         9: .line 113
            aconst_null
            areturn
        end local 3 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry obj
        end local 2 // int h
        end local 1 // org.eclipse.jgit.lib.AnyObjectId toFind
        end local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/eclipse/jgit/lib/ObjectIdOwnerMap<TV;>;
            0   10     1  toFind  Lorg/eclipse/jgit/lib/AnyObjectId;
            3   10     2       h  I
            4   10     3     obj  TV;
    Signature: (Lorg/eclipse/jgit/lib/AnyObjectId;)TV;
    MethodParameters:
        Name  Flags
      toFind  

  public boolean contains(org.eclipse.jgit.lib.AnyObjectId);
    descriptor: (Lorg/eclipse/jgit/lib/AnyObjectId;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
        start local 1 // org.eclipse.jgit.lib.AnyObjectId toFind
         0: .line 123
            aload 0 /* this */
            aload 1 /* toFind */
            invokevirtual org.eclipse.jgit.lib.ObjectIdOwnerMap.get:(Lorg/eclipse/jgit/lib/AnyObjectId;)Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // org.eclipse.jgit.lib.AnyObjectId toFind
        end local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jgit/lib/ObjectIdOwnerMap<TV;>;
            0    2     1  toFind  Lorg/eclipse/jgit/lib/AnyObjectId;
    MethodParameters:
        Name  Flags
      toFind  

  public <Q extends V> void add();
    descriptor: (Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
        start local 1 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry newValue
         0: .line 137
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.size:I
            iconst_1
            iadd
            dup_x1
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap.size:I
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.grow:I
            if_icmpne 2
         1: .line 138
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectIdOwnerMap.grow:()V
         2: .line 140
      StackMap locals:
      StackMap stack:
            aload 1 /* newValue */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.w1:I
            istore 2 /* h */
        start local 2 // int h
         3: .line 141
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.directory:[[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            iload 2 /* h */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.mask:I
            iand
            aaload
            astore 3 /* table */
        start local 3 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] table
         4: .line 142
            iload 2 /* h */
            bipush 21
            iushr
            istore 2 /* h */
         5: .line 144
            aload 1 /* newValue */
            aload 3 /* table */
            iload 2 /* h */
            aaload
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.next:Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
         6: .line 145
            aload 3 /* table */
            iload 2 /* h */
            aload 1 /* newValue */
            aastore
         7: .line 146
            return
        end local 3 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] table
        end local 2 // int h
        end local 1 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry newValue
        end local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/eclipse/jgit/lib/ObjectIdOwnerMap<TV;>;
            0    8     1  newValue  TQ;
            3    8     2         h  I
            4    8     3     table  [Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
    Signature: <Q:TV;>(TQ;)V
    MethodParameters:
          Name  Flags
      newValue  

  public <Q extends V> V addIfAbsent();
    descriptor: (Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;)Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
        start local 1 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry newValue
         0: .line 168
            aload 1 /* newValue */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.w1:I
            istore 2 /* h */
        start local 2 // int h
         1: .line 169
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.directory:[[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            iload 2 /* h */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.mask:I
            iand
            aaload
            astore 3 /* table */
        start local 3 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] table
         2: .line 170
            iload 2 /* h */
            bipush 21
            iushr
            istore 2 /* h */
         3: .line 172
            aload 3 /* table */
            iload 2 /* h */
            aaload
            astore 4 /* obj */
        start local 4 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry obj
         4: goto 8
         5: .line 173
      StackMap locals: int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry
      StackMap stack:
            aload 4 /* obj */
            aload 1 /* newValue */
            invokestatic org.eclipse.jgit.lib.ObjectIdOwnerMap.equals:(Lorg/eclipse/jgit/lib/AnyObjectId;Lorg/eclipse/jgit/lib/AnyObjectId;)Z
            ifeq 7
         6: .line 174
            aload 4 /* obj */
            areturn
         7: .line 172
      StackMap locals:
      StackMap stack:
            aload 4 /* obj */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.next:Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            astore 4 /* obj */
      StackMap locals:
      StackMap stack:
         8: aload 4 /* obj */
            ifnonnull 5
        end local 4 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry obj
         9: .line 176
            aload 1 /* newValue */
            aload 3 /* table */
            iload 2 /* h */
            aaload
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.next:Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
        10: .line 177
            aload 3 /* table */
            iload 2 /* h */
            aload 1 /* newValue */
            aastore
        11: .line 179
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.size:I
            iconst_1
            iadd
            dup_x1
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap.size:I
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.grow:I
            if_icmpne 13
        12: .line 180
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectIdOwnerMap.grow:()V
        13: .line 181
      StackMap locals:
      StackMap stack:
            aload 1 /* newValue */
            areturn
        end local 3 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] table
        end local 2 // int h
        end local 1 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry newValue
        end local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/eclipse/jgit/lib/ObjectIdOwnerMap<TV;>;
            0   14     1  newValue  TQ;
            1   14     2         h  I
            2   14     3     table  [Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            4    9     4       obj  TV;
    Signature: <Q:TV;>(TQ;)TV;
    MethodParameters:
          Name  Flags
      newValue  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
         0: .line 190
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.size:I
            ireturn
        end local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectIdOwnerMap<TV;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
         0: .line 199
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.size:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/lib/ObjectIdOwnerMap<TV;>;

  public java.util.Iterator<V> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
         0: .line 205
            new org.eclipse.jgit.lib.ObjectIdOwnerMap$1
            dup
            aload 0 /* this */
            invokespecial org.eclipse.jgit.lib.ObjectIdOwnerMap$1.<init>:(Lorg/eclipse/jgit/lib/ObjectIdOwnerMap;)V
            areturn
        end local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectIdOwnerMap<TV;>;
    Signature: ()Ljava/util/Iterator<TV;>;

  private void grow();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=12, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
         0: .line 254
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.bits:I
            ishl
            istore 1 /* oldDirLen */
        start local 1 // int oldDirLen
         1: .line 255
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.bits:I
            ishl
            istore 2 /* s */
        start local 2 // int s
         2: .line 257
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.bits:I
            iconst_1
            iadd
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap.bits:I
         3: .line 258
            aload 0 /* this */
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.bits:I
            ishl
            iconst_1
            isub
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap.mask:I
         4: .line 259
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.bits:I
            invokestatic org.eclipse.jgit.lib.ObjectIdOwnerMap.computeGrowAt:(I)I
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap.grow:I
         5: .line 265
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.bits:I
            ishl
            istore 3 /* newDirLen */
        start local 3 // int newDirLen
         6: .line 266
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.directory:[[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            arraylength
            iload 3 /* newDirLen */
            if_icmpge 10
         7: .line 267
            iload 3 /* newDirLen */
            iconst_1
            ishl
            anewarray org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[]
            astore 4 /* newDir */
        start local 4 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[][] newDir
         8: .line 268
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.directory:[[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            iconst_0
            aload 4 /* newDir */
            iconst_0
            iload 1 /* oldDirLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 269
            aload 0 /* this */
            aload 4 /* newDir */
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap.directory:[[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
        end local 4 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[][] newDir
        10: .line 277
      StackMap locals: int int int
      StackMap stack:
            iconst_0
            istore 4 /* dirIdx */
        start local 4 // int dirIdx
        11: goto 35
        12: .line 278
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.directory:[[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            iload 4 /* dirIdx */
            aaload
            astore 5 /* oldTable */
        start local 5 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] oldTable
        13: .line 279
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectIdOwnerMap.newSegment:()[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            astore 6 /* newTable */
        start local 6 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] newTable
        14: .line 281
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        15: goto 32
        16: .line 282
      StackMap locals: org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] int
      StackMap stack:
            aconst_null
            astore 8 /* chain0 */
        start local 8 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry chain0
        17: .line 283
            aconst_null
            astore 9 /* chain1 */
        start local 9 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry chain1
        18: .line 286
            aload 5 /* oldTable */
            iload 7 /* i */
            aaload
            astore 11 /* obj */
        start local 11 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry obj
        19: goto 28
        20: .line 287
      StackMap locals: org.eclipse.jgit.lib.ObjectIdOwnerMap int int int int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry top org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry
      StackMap stack:
            aload 11 /* obj */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.next:Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            astore 10 /* next */
        start local 10 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry next
        21: .line 289
            aload 11 /* obj */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.w1:I
            iload 2 /* s */
            iand
            ifne 25
        22: .line 290
            aload 11 /* obj */
            aload 8 /* chain0 */
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.next:Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
        23: .line 291
            aload 11 /* obj */
            astore 8 /* chain0 */
        24: .line 292
            goto 27
        25: .line 293
      StackMap locals: org.eclipse.jgit.lib.ObjectIdOwnerMap int int int int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry
      StackMap stack:
            aload 11 /* obj */
            aload 9 /* chain1 */
            putfield org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.next:Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
        26: .line 294
            aload 11 /* obj */
            astore 9 /* chain1 */
        27: .line 286
      StackMap locals:
      StackMap stack:
            aload 10 /* next */
            astore 11 /* obj */
        end local 10 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry next
      StackMap locals: org.eclipse.jgit.lib.ObjectIdOwnerMap int int int int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry top org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry
      StackMap stack:
        28: aload 11 /* obj */
            ifnonnull 20
        end local 11 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry obj
        29: .line 298
            aload 5 /* oldTable */
            iload 7 /* i */
            aload 8 /* chain0 */
            aastore
        30: .line 299
            aload 6 /* newTable */
            iload 7 /* i */
            aload 9 /* chain1 */
            aastore
        end local 9 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry chain1
        end local 8 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry chain0
        31: .line 281
            iinc 7 /* i */ 1
      StackMap locals: org.eclipse.jgit.lib.ObjectIdOwnerMap int int int int org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] int
      StackMap stack:
        32: iload 7 /* i */
            aload 5 /* oldTable */
            arraylength
            if_icmplt 16
        end local 7 // int i
        33: .line 302
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectIdOwnerMap.directory:[[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
            iload 1 /* oldDirLen */
            iload 4 /* dirIdx */
            iadd
            aload 6 /* newTable */
            aastore
        end local 6 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] newTable
        end local 5 // org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry[] oldTable
        34: .line 277
            iinc 4 /* dirIdx */ 1
      StackMap locals:
      StackMap stack:
        35: iload 4 /* dirIdx */
            iload 1 /* oldDirLen */
            if_icmplt 12
        end local 4 // int dirIdx
        36: .line 304
            return
        end local 3 // int newDirLen
        end local 2 // int s
        end local 1 // int oldDirLen
        end local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   37     0       this  Lorg/eclipse/jgit/lib/ObjectIdOwnerMap<TV;>;
            1   37     1  oldDirLen  I
            2   37     2          s  I
            6   37     3  newDirLen  I
            8   10     4     newDir  [[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
           11   36     4     dirIdx  I
           13   34     5   oldTable  [Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
           14   34     6   newTable  [Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
           15   33     7          i  I
           17   31     8     chain0  TV;
           18   31     9     chain1  TV;
           21   28    10       next  TV;
           19   29    11        obj  TV;

  private final V[] newSegment();
    descriptor: ()[Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
         0: .line 308
            sipush 2048
            anewarray org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry
            areturn
        end local 0 // org.eclipse.jgit.lib.ObjectIdOwnerMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectIdOwnerMap<TV;>;
    Signature: ()[TV;

  private static final int computeGrowAt(int);
    descriptor: (I)I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int bits
         0: .line 312
            iconst_1
            iload 0 /* bits */
            bipush 11
            iadd
            ishl
            ireturn
        end local 0 // int bits
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  bits  I
    MethodParameters:
      Name  Flags
      bits  

  private static final boolean equals(org.eclipse.jgit.lib.AnyObjectId, org.eclipse.jgit.lib.AnyObjectId);
    descriptor: (Lorg/eclipse/jgit/lib/AnyObjectId;Lorg/eclipse/jgit/lib/AnyObjectId;)Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.AnyObjectId firstObjectId
        start local 1 // org.eclipse.jgit.lib.AnyObjectId secondObjectId
         0: .line 317
            aload 0 /* firstObjectId */
            getfield org.eclipse.jgit.lib.AnyObjectId.w2:I
            aload 1 /* secondObjectId */
            getfield org.eclipse.jgit.lib.AnyObjectId.w2:I
            if_icmpne 6
         1: .line 318
            aload 0 /* firstObjectId */
            getfield org.eclipse.jgit.lib.AnyObjectId.w3:I
            aload 1 /* secondObjectId */
            getfield org.eclipse.jgit.lib.AnyObjectId.w3:I
            if_icmpne 6
         2: .line 319
            aload 0 /* firstObjectId */
            getfield org.eclipse.jgit.lib.AnyObjectId.w4:I
            aload 1 /* secondObjectId */
            getfield org.eclipse.jgit.lib.AnyObjectId.w4:I
            if_icmpne 6
         3: .line 320
            aload 0 /* firstObjectId */
            getfield org.eclipse.jgit.lib.AnyObjectId.w5:I
            aload 1 /* secondObjectId */
            getfield org.eclipse.jgit.lib.AnyObjectId.w5:I
            if_icmpne 6
         4: .line 321
            aload 0 /* firstObjectId */
            getfield org.eclipse.jgit.lib.AnyObjectId.w1:I
            aload 1 /* secondObjectId */
            getfield org.eclipse.jgit.lib.AnyObjectId.w1:I
            if_icmpne 6
         5: .line 317
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         6: iconst_0
            ireturn
        end local 1 // org.eclipse.jgit.lib.AnyObjectId secondObjectId
        end local 0 // org.eclipse.jgit.lib.AnyObjectId firstObjectId
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0   firstObjectId  Lorg/eclipse/jgit/lib/AnyObjectId;
            0    7     1  secondObjectId  Lorg/eclipse/jgit/lib/AnyObjectId;
    MethodParameters:
                Name  Flags
      firstObjectId   
      secondObjectId  
}
Signature: <V:Lorg/eclipse/jgit/lib/ObjectIdOwnerMap$Entry;>Ljava/lang/Object;Ljava/lang/Iterable<TV;>;Lorg/eclipse/jgit/lib/ObjectIdSet;
SourceFile: "ObjectIdOwnerMap.java"
NestMembers:
  org.eclipse.jgit.lib.ObjectIdOwnerMap$1  org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry
InnerClasses:
  org.eclipse.jgit.lib.ObjectIdOwnerMap$1
  public abstract Entry = org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry of org.eclipse.jgit.lib.ObjectIdOwnerMap