public class org.eclipse.jgit.diff.SimilarityIndex
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.diff.SimilarityIndex
  super_class: java.lang.Object
{
  public static final org.eclipse.jgit.diff.SimilarityIndex$TableFullException TABLE_FULL_OUT_OF_MEMORY;
    descriptor: Lorg/eclipse/jgit/diff/SimilarityIndex$TableFullException;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

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

  private static final long MAX_COUNT;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4294967295

  private long hashedCnt;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

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

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

  private long[] idHash;
    descriptor: [J
    flags: (0x0002) ACC_PRIVATE

  private int idHashBits;
    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 40
            new org.eclipse.jgit.diff.SimilarityIndex$TableFullException
            dup
            invokespecial org.eclipse.jgit.diff.SimilarityIndex$TableFullException.<init>:()V
            putstatic org.eclipse.jgit.diff.SimilarityIndex.TABLE_FULL_OUT_OF_MEMORY:Lorg/eclipse/jgit/diff/SimilarityIndex$TableFullException;
         1: .line 51
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static org.eclipse.jgit.diff.SimilarityIndex create(org.eclipse.jgit.lib.ObjectLoader);
    descriptor: (Lorg/eclipse/jgit/lib/ObjectLoader;)Lorg/eclipse/jgit/diff/SimilarityIndex;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectLoader obj
         0: .line 93
            new org.eclipse.jgit.diff.SimilarityIndex
            dup
            invokespecial org.eclipse.jgit.diff.SimilarityIndex.<init>:()V
            astore 1 /* idx */
        start local 1 // org.eclipse.jgit.diff.SimilarityIndex idx
         1: .line 94
            aload 1 /* idx */
            aload 0 /* obj */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.hash:(Lorg/eclipse/jgit/lib/ObjectLoader;)V
         2: .line 95
            aload 1 /* idx */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.sort:()V
         3: .line 96
            aload 1 /* idx */
            areturn
        end local 1 // org.eclipse.jgit.diff.SimilarityIndex idx
        end local 0 // org.eclipse.jgit.lib.ObjectLoader obj
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0   obj  Lorg/eclipse/jgit/lib/ObjectLoader;
            1    4     1   idx  Lorg/eclipse/jgit/diff/SimilarityIndex;
    Exceptions:
      throws java.io.IOException, org.eclipse.jgit.diff.SimilarityIndex$TableFullException
    MethodParameters:
      Name  Flags
      obj   

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
         0: .line 99
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 100
            aload 0 /* this */
            bipush 8
            putfield org.eclipse.jgit.diff.SimilarityIndex.idHashBits:I
         2: .line 101
            aload 0 /* this */
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHashBits:I
            ishl
            newarray 11
            putfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
         3: .line 102
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHashBits:I
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.growAt:(I)I
            putfield org.eclipse.jgit.diff.SimilarityIndex.idGrowAt:I
         4: .line 103
            return
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;

  void hash(org.eclipse.jgit.lib.ObjectLoader);
    descriptor: (Lorg/eclipse/jgit/lib/ObjectLoader;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // org.eclipse.jgit.lib.ObjectLoader obj
         0: .line 107
            aload 1 /* obj */
            invokevirtual org.eclipse.jgit.lib.ObjectLoader.isLarge:()Z
            ifeq 3
         1: .line 108
            aload 0 /* this */
            aload 1 /* obj */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.hashLargeObject:(Lorg/eclipse/jgit/lib/ObjectLoader;)V
         2: .line 109
            goto 5
         3: .line 110
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            invokevirtual org.eclipse.jgit.lib.ObjectLoader.getCachedBytes:()[B
            astore 2 /* raw */
        start local 2 // byte[] raw
         4: .line 111
            aload 0 /* this */
            aload 2 /* raw */
            iconst_0
            aload 2 /* raw */
            arraylength
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.hash:([BII)V
        end local 2 // byte[] raw
         5: .line 113
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.jgit.lib.ObjectLoader obj
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0    6     1   obj  Lorg/eclipse/jgit/lib/ObjectLoader;
            4    5     2   raw  [B
    Exceptions:
      throws org.eclipse.jgit.errors.MissingObjectException, java.io.IOException, org.eclipse.jgit.diff.SimilarityIndex$TableFullException
    MethodParameters:
      Name  Flags
      obj   

  private void hashLargeObject(org.eclipse.jgit.lib.ObjectLoader);
    descriptor: (Lorg/eclipse/jgit/lib/ObjectLoader;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // org.eclipse.jgit.lib.ObjectLoader obj
         0: .line 118
            aconst_null
            astore 3
            aconst_null
            astore 4
         1: aload 1 /* obj */
            invokevirtual org.eclipse.jgit.lib.ObjectLoader.openStream:()Lorg/eclipse/jgit/lib/ObjectStream;
            astore 5 /* in1 */
        start local 5 // org.eclipse.jgit.lib.ObjectStream in1
         2: .line 119
            aload 5 /* in1 */
            invokestatic org.eclipse.jgit.diff.RawText.isBinary:(Ljava/io/InputStream;)Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals: org.eclipse.jgit.diff.SimilarityIndex org.eclipse.jgit.lib.ObjectLoader top java.lang.Throwable java.lang.Throwable org.eclipse.jgit.lib.ObjectStream
      StackMap stack:
         3: iconst_1
      StackMap locals:
      StackMap stack: int
         4: istore 2 /* text */
        start local 2 // boolean text
         5: .line 120
            aload 5 /* in1 */
            ifnull 11
            aload 5 /* in1 */
            invokevirtual org.eclipse.jgit.lib.ObjectStream.close:()V
            goto 11
        end local 2 // boolean text
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 3
            aload 5 /* in1 */
            ifnull 7
            aload 5 /* in1 */
            invokevirtual org.eclipse.jgit.lib.ObjectStream.close:()V
        end local 5 // org.eclipse.jgit.lib.ObjectStream in1
      StackMap locals:
      StackMap stack:
         7: aload 3
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 4
            aload 3
            ifnonnull 9
            aload 4
            astore 3
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 3
            aload 4
            if_acmpeq 10
            aload 3
            aload 4
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        10: aload 3
            athrow
        start local 2 // boolean text
        11: .line 122
      StackMap locals: org.eclipse.jgit.diff.SimilarityIndex org.eclipse.jgit.lib.ObjectLoader int
      StackMap stack:
            aconst_null
            astore 3
            aconst_null
            astore 4
        12: aload 1 /* obj */
            invokevirtual org.eclipse.jgit.lib.ObjectLoader.openStream:()Lorg/eclipse/jgit/lib/ObjectStream;
            astore 5 /* in2 */
        start local 5 // org.eclipse.jgit.lib.ObjectStream in2
        13: .line 123
            aload 0 /* this */
            aload 5 /* in2 */
            aload 5 /* in2 */
            invokevirtual org.eclipse.jgit.lib.ObjectStream.getSize:()J
            iload 2 /* text */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.hash:(Ljava/io/InputStream;JZ)V
        14: .line 124
            aload 5 /* in2 */
            ifnull 20
            aload 5 /* in2 */
            invokevirtual org.eclipse.jgit.lib.ObjectStream.close:()V
            goto 20
      StackMap locals: org.eclipse.jgit.diff.SimilarityIndex org.eclipse.jgit.lib.ObjectLoader int java.lang.Throwable java.lang.Throwable org.eclipse.jgit.lib.ObjectStream
      StackMap stack: java.lang.Throwable
        15: astore 3
            aload 5 /* in2 */
            ifnull 16
            aload 5 /* in2 */
            invokevirtual org.eclipse.jgit.lib.ObjectStream.close:()V
        end local 5 // org.eclipse.jgit.lib.ObjectStream in2
      StackMap locals:
      StackMap stack:
        16: aload 3
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        17: astore 4
            aload 3
            ifnonnull 18
            aload 4
            astore 3
            goto 19
      StackMap locals:
      StackMap stack:
        18: aload 3
            aload 4
            if_acmpeq 19
            aload 3
            aload 4
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        19: aload 3
            athrow
        20: .line 125
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean text
        end local 1 // org.eclipse.jgit.lib.ObjectLoader obj
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   21     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0   21     1   obj  Lorg/eclipse/jgit/lib/ObjectLoader;
            5    6     2  text  Z
           11   21     2  text  Z
            2    7     5   in1  Lorg/eclipse/jgit/lib/ObjectStream;
           13   16     5   in2  Lorg/eclipse/jgit/lib/ObjectStream;
      Exception table:
        from    to  target  type
           2     5       6  any
           1     8       8  any
          13    14      15  any
          12    17      17  any
    Exceptions:
      throws java.io.IOException, org.eclipse.jgit.diff.SimilarityIndex$TableFullException
    MethodParameters:
      Name  Flags
      obj   

  void hash(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0000) 
    Code:
      stack=5, locals=9, args_size=4
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // byte[] raw
        start local 2 // int ptr
        start local 3 // int end
         0: .line 128
            aload 1 /* raw */
            invokestatic org.eclipse.jgit.diff.RawText.isBinary:([B)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: istore 4 /* text */
        start local 4 // boolean text
         3: .line 129
            aload 0 /* this */
            lconst_0
            putfield org.eclipse.jgit.diff.SimilarityIndex.hashedCnt:J
         4: .line 130
            goto 19
         5: .line 131
      StackMap locals: int
      StackMap stack:
            sipush 5381
            istore 5 /* hash */
        start local 5 // int hash
         6: .line 132
            iconst_0
            istore 6 /* blockHashedCnt */
        start local 6 // int blockHashedCnt
         7: .line 133
            iload 2 /* ptr */
            istore 7 /* start */
        start local 7 // int start
         8: .line 137
      StackMap locals: int int int
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            baload
            sipush 255
            iand
            istore 8 /* c */
        start local 8 // int c
         9: .line 139
            iload 4 /* text */
            ifeq 11
            iload 8 /* c */
            bipush 13
            if_icmpne 11
            iload 2 /* ptr */
            iload 3 /* end */
            if_icmpge 11
            aload 1 /* raw */
            iload 2 /* ptr */
            baload
            bipush 10
            if_icmpne 11
        10: .line 140
            goto 15
        11: .line 141
      StackMap locals: int
      StackMap stack:
            iinc 6 /* blockHashedCnt */ 1
        12: .line 142
            iload 8 /* c */
            bipush 10
            if_icmpne 14
        13: .line 143
            goto 17
        14: .line 144
      StackMap locals:
      StackMap stack:
            iload 5 /* hash */
            iconst_5
            ishl
            iload 5 /* hash */
            iadd
            iload 8 /* c */
            iadd
            istore 5 /* hash */
        end local 8 // int c
        15: .line 145
      StackMap locals:
      StackMap stack:
            iload 2 /* ptr */
            iload 3 /* end */
            if_icmpge 17
            iload 2 /* ptr */
            iload 7 /* start */
            isub
            bipush 64
        16: .line 136
            if_icmplt 8
        17: .line 146
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.diff.SimilarityIndex.hashedCnt:J
            iload 6 /* blockHashedCnt */
            i2l
            ladd
            putfield org.eclipse.jgit.diff.SimilarityIndex.hashedCnt:J
        18: .line 147
            aload 0 /* this */
            iload 5 /* hash */
            iload 6 /* blockHashedCnt */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.add:(II)V
        end local 7 // int start
        end local 6 // int blockHashedCnt
        end local 5 // int hash
        19: .line 130
      StackMap locals:
      StackMap stack:
            iload 2 /* ptr */
            iload 3 /* end */
            if_icmplt 5
        20: .line 149
            return
        end local 4 // boolean text
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   21     0            this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0   21     1             raw  [B
            0   21     2             ptr  I
            0   21     3             end  I
            3   21     4            text  Z
            6   19     5            hash  I
            7   19     6  blockHashedCnt  I
            8   19     7           start  I
            9   15     8               c  I
    Exceptions:
      throws org.eclipse.jgit.diff.SimilarityIndex$TableFullException
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   

  void hash(java.io.InputStream, long, boolean);
    descriptor: (Ljava/io/InputStream;JZ)V
    flags: (0x0000) 
    Code:
      stack=5, locals=12, args_size=4
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // java.io.InputStream in
        start local 2 // long remaining
        start local 4 // boolean text
         0: .line 153
            sipush 4096
            newarray 8
            astore 5 /* buf */
        start local 5 // byte[] buf
         1: .line 154
            iconst_0
            istore 6 /* ptr */
        start local 6 // int ptr
         2: .line 155
            iconst_0
            istore 7 /* cnt */
        start local 7 // int cnt
         3: .line 157
            goto 25
         4: .line 158
      StackMap locals: byte[] int int
      StackMap stack:
            sipush 5381
            istore 8 /* hash */
        start local 8 // int hash
         5: .line 159
            iconst_0
            istore 9 /* blockHashedCnt */
        start local 9 // int blockHashedCnt
         6: .line 162
            iconst_0
            istore 10 /* n */
        start local 10 // int n
         7: .line 164
      StackMap locals: int int int
      StackMap stack:
            iload 6 /* ptr */
            iload 7 /* cnt */
            if_icmpne 12
         8: .line 165
            iconst_0
            istore 6 /* ptr */
         9: .line 166
            aload 1 /* in */
            aload 5 /* buf */
            iconst_0
            aload 5 /* buf */
            arraylength
            invokevirtual java.io.InputStream.read:([BII)I
            istore 7 /* cnt */
        10: .line 167
            iload 7 /* cnt */
            ifgt 12
        11: .line 168
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
        12: .line 171
      StackMap locals:
      StackMap stack:
            iinc 10 /* n */ 1
        13: .line 172
            aload 5 /* buf */
            iload 6 /* ptr */
            iinc 6 /* ptr */ 1
            baload
            sipush 255
            iand
            istore 11 /* c */
        start local 11 // int c
        14: .line 174
            iload 4 /* text */
            ifeq 16
            iload 11 /* c */
            bipush 13
            if_icmpne 16
            iload 6 /* ptr */
            iload 7 /* cnt */
            if_icmpge 16
            aload 5 /* buf */
            iload 6 /* ptr */
            baload
            bipush 10
            if_icmpne 16
        15: .line 175
            goto 20
        16: .line 176
      StackMap locals: int
      StackMap stack:
            iinc 9 /* blockHashedCnt */ 1
        17: .line 177
            iload 11 /* c */
            bipush 10
            if_icmpne 19
        18: .line 178
            goto 22
        19: .line 179
      StackMap locals:
      StackMap stack:
            iload 8 /* hash */
            iconst_5
            ishl
            iload 8 /* hash */
            iadd
            iload 11 /* c */
            iadd
            istore 8 /* hash */
        end local 11 // int c
        20: .line 180
      StackMap locals:
      StackMap stack:
            iload 10 /* n */
            bipush 64
            if_icmpge 22
            iload 10 /* n */
            i2l
            lload 2 /* remaining */
        21: .line 163
            lcmp
            iflt 7
        22: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.diff.SimilarityIndex.hashedCnt:J
            iload 9 /* blockHashedCnt */
            i2l
            ladd
            putfield org.eclipse.jgit.diff.SimilarityIndex.hashedCnt:J
        23: .line 182
            aload 0 /* this */
            iload 8 /* hash */
            iload 9 /* blockHashedCnt */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.add:(II)V
        24: .line 183
            lload 2 /* remaining */
            iload 10 /* n */
            i2l
            lsub
            lstore 2 /* remaining */
        end local 10 // int n
        end local 9 // int blockHashedCnt
        end local 8 // int hash
        25: .line 157
      StackMap locals:
      StackMap stack:
            lconst_0
            lload 2 /* remaining */
            lcmp
            iflt 4
        26: .line 185
            return
        end local 7 // int cnt
        end local 6 // int ptr
        end local 5 // byte[] buf
        end local 4 // boolean text
        end local 2 // long remaining
        end local 1 // java.io.InputStream in
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   27     0            this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0   27     1              in  Ljava/io/InputStream;
            0   27     2       remaining  J
            0   27     4            text  Z
            1   27     5             buf  [B
            2   27     6             ptr  I
            3   27     7             cnt  I
            5   25     8            hash  I
            6   25     9  blockHashedCnt  I
            7   25    10               n  I
           14   20    11               c  I
    Exceptions:
      throws java.io.IOException, org.eclipse.jgit.diff.SimilarityIndex$TableFullException
    MethodParameters:
           Name  Flags
      in         
      remaining  
      text       

  void sort();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
         0: .line 197
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            invokestatic java.util.Arrays.sort:([J)V
         1: .line 198
            return
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;

  public int score(org.eclipse.jgit.diff.SimilarityIndex, int);
    descriptor: (Lorg/eclipse/jgit/diff/SimilarityIndex;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // org.eclipse.jgit.diff.SimilarityIndex dst
        start local 2 // int maxScore
         0: .line 221
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.hashedCnt:J
            aload 1 /* dst */
            getfield org.eclipse.jgit.diff.SimilarityIndex.hashedCnt:J
            invokestatic java.lang.Math.max:(JJ)J
            lstore 3 /* max */
        start local 3 // long max
         1: .line 222
            lload 3 /* max */
            lconst_0
            lcmp
            ifne 3
         2: .line 223
            iload 2 /* maxScore */
            ireturn
         3: .line 224
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            aload 1 /* dst */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.common:(Lorg/eclipse/jgit/diff/SimilarityIndex;)J
            iload 2 /* maxScore */
            i2l
            lmul
            lload 3 /* max */
            ldiv
            l2i
            ireturn
        end local 3 // long max
        end local 2 // int maxScore
        end local 1 // org.eclipse.jgit.diff.SimilarityIndex dst
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0    4     1       dst  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0    4     2  maxScore  I
            1    4     3       max  J
    MethodParameters:
          Name  Flags
      dst       
      maxScore  

  long common(org.eclipse.jgit.diff.SimilarityIndex);
    descriptor: (Lorg/eclipse/jgit/diff/SimilarityIndex;)J
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // org.eclipse.jgit.diff.SimilarityIndex dst
         0: .line 228
            aload 0 /* this */
            aload 1 /* dst */
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.common:(Lorg/eclipse/jgit/diff/SimilarityIndex;Lorg/eclipse/jgit/diff/SimilarityIndex;)J
            lreturn
        end local 1 // org.eclipse.jgit.diff.SimilarityIndex dst
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0    1     1   dst  Lorg/eclipse/jgit/diff/SimilarityIndex;
    MethodParameters:
      Name  Flags
      dst   

  private static long common(org.eclipse.jgit.diff.SimilarityIndex, org.eclipse.jgit.diff.SimilarityIndex);
    descriptor: (Lorg/eclipse/jgit/diff/SimilarityIndex;Lorg/eclipse/jgit/diff/SimilarityIndex;)J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex src
        start local 1 // org.eclipse.jgit.diff.SimilarityIndex dst
         0: .line 232
            aload 0 /* src */
            iconst_0
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.packedIndex:(I)I
            istore 2 /* srcIdx */
        start local 2 // int srcIdx
         1: .line 233
            aload 1 /* dst */
            iconst_0
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.packedIndex:(I)I
            istore 3 /* dstIdx */
        start local 3 // int dstIdx
         2: .line 234
            aload 0 /* src */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            astore 4 /* srcHash */
        start local 4 // long[] srcHash
         3: .line 235
            aload 1 /* dst */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            astore 5 /* dstHash */
        start local 5 // long[] dstHash
         4: .line 236
            aload 4 /* srcHash */
            iload 2 /* srcIdx */
            aload 5 /* dstHash */
            iload 3 /* dstIdx */
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.common:([JI[JI)J
            lreturn
        end local 5 // long[] dstHash
        end local 4 // long[] srcHash
        end local 3 // int dstIdx
        end local 2 // int srcIdx
        end local 1 // org.eclipse.jgit.diff.SimilarityIndex dst
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex src
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0      src  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0    5     1      dst  Lorg/eclipse/jgit/diff/SimilarityIndex;
            1    5     2   srcIdx  I
            2    5     3   dstIdx  I
            3    5     4  srcHash  [J
            4    5     5  dstHash  [J
    MethodParameters:
      Name  Flags
      src   
      dst   

  private static long common(long[], int, long[], int);
    descriptor: ([JI[JI)J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // long[] srcHash
        start local 1 // int srcIdx
        start local 2 // long[] dstHash
        start local 3 // int dstIdx
         0: .line 241
            iload 1 /* srcIdx */
            aload 0 /* srcHash */
            arraylength
            if_icmpeq 1
            iload 3 /* dstIdx */
            aload 2 /* dstHash */
            arraylength
            if_icmpne 2
         1: .line 242
      StackMap locals:
      StackMap stack:
            lconst_0
            lreturn
         2: .line 244
      StackMap locals:
      StackMap stack:
            lconst_0
            lstore 4 /* common */
        start local 4 // long common
         3: .line 245
            aload 0 /* srcHash */
            iload 1 /* srcIdx */
            laload
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.keyOf:(J)I
            istore 6 /* srcKey */
        start local 6 // int srcKey
         4: .line 246
            aload 2 /* dstHash */
            iload 3 /* dstIdx */
            laload
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.keyOf:(J)I
            istore 7 /* dstKey */
        start local 7 // int dstKey
         5: .line 249
      StackMap locals: long int int
      StackMap stack:
            iload 6 /* srcKey */
            iload 7 /* dstKey */
            if_icmpne 16
         6: .line 250
            lload 4 /* common */
            aload 0 /* srcHash */
            iload 1 /* srcIdx */
            laload
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.countOf:(J)J
         7: .line 251
            aload 2 /* dstHash */
            iload 3 /* dstIdx */
            laload
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.countOf:(J)J
         8: .line 250
            invokestatic java.lang.Math.min:(JJ)J
            ladd
            lstore 4 /* common */
         9: .line 253
            iinc 1 /* srcIdx */ 1
            iload 1 /* srcIdx */
            aload 0 /* srcHash */
            arraylength
            if_icmpne 11
        10: .line 254
            goto 25
        11: .line 255
      StackMap locals:
      StackMap stack:
            aload 0 /* srcHash */
            iload 1 /* srcIdx */
            laload
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.keyOf:(J)I
            istore 6 /* srcKey */
        12: .line 257
            iinc 3 /* dstIdx */ 1
            iload 3 /* dstIdx */
            aload 2 /* dstHash */
            arraylength
            if_icmpne 14
        13: .line 258
            goto 25
        14: .line 259
      StackMap locals:
      StackMap stack:
            aload 2 /* dstHash */
            iload 3 /* dstIdx */
            laload
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.keyOf:(J)I
            istore 7 /* dstKey */
        15: .line 261
            goto 5
      StackMap locals:
      StackMap stack:
        16: iload 6 /* srcKey */
            iload 7 /* dstKey */
            if_icmpge 21
        17: .line 263
            iinc 1 /* srcIdx */ 1
            iload 1 /* srcIdx */
            aload 0 /* srcHash */
            arraylength
            if_icmpne 19
        18: .line 264
            goto 25
        19: .line 265
      StackMap locals:
      StackMap stack:
            aload 0 /* srcHash */
            iload 1 /* srcIdx */
            laload
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.keyOf:(J)I
            istore 6 /* srcKey */
        20: .line 267
            goto 5
        21: .line 269
      StackMap locals:
      StackMap stack:
            iinc 3 /* dstIdx */ 1
            iload 3 /* dstIdx */
            aload 2 /* dstHash */
            arraylength
            if_icmpne 23
        22: .line 270
            goto 25
        23: .line 271
      StackMap locals:
      StackMap stack:
            aload 2 /* dstHash */
            iload 3 /* dstIdx */
            laload
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.keyOf:(J)I
            istore 7 /* dstKey */
        24: .line 248
            goto 5
        25: .line 275
      StackMap locals:
      StackMap stack:
            lload 4 /* common */
            lreturn
        end local 7 // int dstKey
        end local 6 // int srcKey
        end local 4 // long common
        end local 3 // int dstIdx
        end local 2 // long[] dstHash
        end local 1 // int srcIdx
        end local 0 // long[] srcHash
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   26     0  srcHash  [J
            0   26     1   srcIdx  I
            0   26     2  dstHash  [J
            0   26     3   dstIdx  I
            3   26     4   common  J
            4   26     6   srcKey  I
            5   26     7   dstKey  I
    MethodParameters:
         Name  Flags
      srcHash  
      srcIdx   
      dstHash  
      dstIdx   

  int size();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
         0: .line 280
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idSize:I
            ireturn
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;

  int key(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // int idx
         0: .line 285
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            aload 0 /* this */
            iload 1 /* idx */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.packedIndex:(I)I
            laload
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.keyOf:(J)I
            ireturn
        end local 1 // int idx
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0    1     1   idx  I
    MethodParameters:
      Name  Flags
      idx   

  long count(int);
    descriptor: (I)J
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // int idx
         0: .line 290
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            aload 0 /* this */
            iload 1 /* idx */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.packedIndex:(I)I
            laload
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.countOf:(J)J
            lreturn
        end local 1 // int idx
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0    1     1   idx  I
    MethodParameters:
      Name  Flags
      idx   

  int findIndex(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // int key
         0: .line 295
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 5
         2: .line 296
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.key:(I)I
            iload 1 /* key */
            if_icmpne 4
         3: .line 297
            iload 2 /* i */
            ireturn
         4: .line 295
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idSize:I
            if_icmplt 2
        end local 2 // int i
         6: .line 298
            iconst_m1
            ireturn
        end local 1 // int key
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0    7     1   key  I
            1    6     2     i  I
    MethodParameters:
      Name  Flags
      key   

  private int packedIndex(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // int idx
         0: .line 302
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            arraylength
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idSize:I
            isub
            iload 1 /* idx */
            iadd
            ireturn
        end local 1 // int idx
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0    1     1   idx  I
    MethodParameters:
      Name  Flags
      idx   

  void add(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=7, locals=6, args_size=3
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // int key
        start local 2 // int cnt
         0: .line 306
            iload 1 /* key */
            ldc -1640562687
            imul
            iconst_1
            iushr
            istore 1 /* key */
         1: .line 308
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.slot:(I)I
            istore 3 /* j */
        start local 3 // int j
         2: .line 310
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            iload 3 /* j */
            laload
            lstore 4 /* v */
        start local 4 // long v
         3: .line 311
            lload 4 /* v */
            lconst_0
            lcmp
            ifne 11
         4: .line 313
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idGrowAt:I
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idSize:I
            if_icmpgt 8
         5: .line 314
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.grow:()V
         6: .line 315
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.slot:(I)I
            istore 3 /* j */
         7: .line 316
            goto 2
         8: .line 318
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            iload 3 /* j */
            iload 1 /* key */
            iload 2 /* cnt */
            i2l
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.pair:(IJ)J
            lastore
         9: .line 319
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.diff.SimilarityIndex.idSize:I
            iconst_1
            iadd
            putfield org.eclipse.jgit.diff.SimilarityIndex.idSize:I
        10: .line 320
            return
        11: .line 322
      StackMap locals:
      StackMap stack:
            lload 4 /* v */
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.keyOf:(J)I
            iload 1 /* key */
            if_icmpne 14
        12: .line 326
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            iload 3 /* j */
            iload 1 /* key */
            lload 4 /* v */
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.countOf:(J)J
            iload 2 /* cnt */
            i2l
            ladd
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.pair:(IJ)J
            lastore
        13: .line 327
            return
        14: .line 329
      StackMap locals:
      StackMap stack:
            iinc 3 /* j */ 1
            iload 3 /* j */
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            arraylength
            if_icmplt 2
        15: .line 330
            iconst_0
            istore 3 /* j */
        end local 4 // long v
        16: .line 309
            goto 2
        end local 3 // int j
        end local 2 // int cnt
        end local 1 // int key
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0   17     1   key  I
            0   17     2   cnt  I
            2   17     3     j  I
            3   16     4     v  J
    Exceptions:
      throws org.eclipse.jgit.diff.SimilarityIndex$TableFullException
    MethodParameters:
      Name  Flags
      key   
      cnt   

  private static long pair(int, long);
    descriptor: (IJ)J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // int key
        start local 1 // long cnt
         0: .line 336
            ldc 4294967295
            lload 1 /* cnt */
            lcmp
            ifge 2
         1: .line 337
            new org.eclipse.jgit.diff.SimilarityIndex$TableFullException
            dup
            invokespecial org.eclipse.jgit.diff.SimilarityIndex$TableFullException.<init>:()V
            athrow
         2: .line 338
      StackMap locals:
      StackMap stack:
            iload 0 /* key */
            i2l
            bipush 32
            lshl
            lload 1 /* cnt */
            lor
            lreturn
        end local 1 // long cnt
        end local 0 // int key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   key  I
            0    3     1   cnt  J
    Exceptions:
      throws org.eclipse.jgit.diff.SimilarityIndex$TableFullException
    MethodParameters:
      Name  Flags
      key   
      cnt   

  private int slot(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
        start local 1 // int key
         0: .line 346
            iload 1 /* key */
            bipush 31
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHashBits:I
            isub
            iushr
            ireturn
        end local 1 // int key
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            0    1     1   key  I
    MethodParameters:
      Name  Flags
      key   

  private static int growAt(int);
    descriptor: (I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int idHashBits
         0: .line 350
            iconst_1
            iload 0 /* idHashBits */
            ishl
            iload 0 /* idHashBits */
            iconst_3
            isub
            imul
            iload 0 /* idHashBits */
            idiv
            ireturn
        end local 0 // int idHashBits
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0  idHashBits  I
    MethodParameters:
            Name  Flags
      idHashBits  

  private void grow();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=1
        start local 0 // org.eclipse.jgit.diff.SimilarityIndex this
         0: .line 355
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHashBits:I
            bipush 30
            if_icmpne 2
         1: .line 356
            new org.eclipse.jgit.diff.SimilarityIndex$TableFullException
            dup
            invokespecial org.eclipse.jgit.diff.SimilarityIndex$TableFullException.<init>:()V
            athrow
         2: .line 358
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            astore 1 /* oldHash */
        start local 1 // long[] oldHash
         3: .line 359
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            arraylength
            istore 2 /* oldSize */
        start local 2 // int oldSize
         4: .line 361
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHashBits:I
            iconst_1
            iadd
            putfield org.eclipse.jgit.diff.SimilarityIndex.idHashBits:I
         5: .line 362
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHashBits:I
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.growAt:(I)I
            putfield org.eclipse.jgit.diff.SimilarityIndex.idGrowAt:I
         6: .line 365
            aload 0 /* this */
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHashBits:I
            ishl
            newarray 11
            putfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
         7: .line 366
            goto 10
      StackMap locals: org.eclipse.jgit.diff.SimilarityIndex long[] int
      StackMap stack: java.lang.OutOfMemoryError
         8: pop
         9: .line 367
            getstatic org.eclipse.jgit.diff.SimilarityIndex.TABLE_FULL_OUT_OF_MEMORY:Lorg/eclipse/jgit/diff/SimilarityIndex$TableFullException;
            athrow
        10: .line 370
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        11: goto 21
        12: .line 371
      StackMap locals: int
      StackMap stack:
            aload 1 /* oldHash */
            iload 3 /* i */
            laload
            lstore 4 /* v */
        start local 4 // long v
        13: .line 372
            lload 4 /* v */
            lconst_0
            lcmp
            ifeq 20
        14: .line 373
            aload 0 /* this */
            lload 4 /* v */
            invokestatic org.eclipse.jgit.diff.SimilarityIndex.keyOf:(J)I
            invokevirtual org.eclipse.jgit.diff.SimilarityIndex.slot:(I)I
            istore 6 /* j */
        start local 6 // int j
        15: .line 374
            goto 18
        16: .line 375
      StackMap locals: long int
      StackMap stack:
            iinc 6 /* j */ 1
            iload 6 /* j */
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            arraylength
            if_icmplt 18
        17: .line 376
            iconst_0
            istore 6 /* j */
        18: .line 374
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            iload 6 /* j */
            laload
            lconst_0
            lcmp
            ifne 16
        19: .line 377
            aload 0 /* this */
            getfield org.eclipse.jgit.diff.SimilarityIndex.idHash:[J
            iload 6 /* j */
            lload 4 /* v */
            lastore
        end local 6 // int j
        end local 4 // long v
        20: .line 370
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 3 /* i */
            iload 2 /* oldSize */
            if_icmplt 12
        end local 3 // int i
        22: .line 380
            return
        end local 2 // int oldSize
        end local 1 // long[] oldHash
        end local 0 // org.eclipse.jgit.diff.SimilarityIndex this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   23     0     this  Lorg/eclipse/jgit/diff/SimilarityIndex;
            3   23     1  oldHash  [J
            4   23     2  oldSize  I
           11   22     3        i  I
           13   20     4        v  J
           15   20     6        j  I
      Exception table:
        from    to  target  type
           6     7       8  Class java.lang.OutOfMemoryError
    Exceptions:
      throws org.eclipse.jgit.diff.SimilarityIndex$TableFullException

  private static int keyOf(long);
    descriptor: (J)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // long v
         0: .line 383
            lload 0 /* v */
            bipush 32
            lushr
            l2i
            ireturn
        end local 0 // long v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     v  J
    MethodParameters:
      Name  Flags
      v     

  private static long countOf(long);
    descriptor: (J)J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // long v
         0: .line 387
            lload 0 /* v */
            ldc 4294967295
            land
            lreturn
        end local 0 // long v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     v  J
    MethodParameters:
      Name  Flags
      v     
}
SourceFile: "SimilarityIndex.java"
NestMembers:
  org.eclipse.jgit.diff.SimilarityIndex$TableFullException
InnerClasses:
  public TableFullException = org.eclipse.jgit.diff.SimilarityIndex$TableFullException of org.eclipse.jgit.diff.SimilarityIndex