CloneSet3134


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4430.961statement_sequence[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14439
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/ConstantPool.java
24474
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/ConstantPool.java
34511
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/ConstantPool.java
44869
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/ConstantPool.java
Clone Instance
1
Line Count
4
Source Line
439
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/ConstantPool.java

                if (currentOffset + 4 >= poolContent.length) {
                        resizePoolContents(4);
                }
                poolContent[currentOffset++ ] = (byte) (temp >>> 24);


Clone Instance
2
Line Count
4
Source Line
474
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/ConstantPool.java

                // Then add the 4 bytes representing the int
                if (currentOffset + 4 >= poolContent.length) {
                        resizePoolContents(4);
                }
                poolContent[currentOffset++ ] = (byte) (key >>> 24);


Clone Instance
3
Line Count
4
Source Line
511
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/ConstantPool.java

                // Then add the 8 bytes representing the long
                if (currentOffset + 8 >= poolContent.length) {
                        resizePoolContents(8);
                }
                poolContent[currentOffset++ ] = (byte) (key >>> 56);


Clone Instance
4
Line Count
4
Source Line
869
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/ConstantPool.java

        if (currentOffset + 2 >= poolContent.length) {
                resizePoolContents(2);
        }
        poolContent[currentOffset++ ] = (byte) (value >>> 8);


Clone AbstractionParameter Count: 3Parameter Bindings

// Then add the 4 bytes representing the int
// Then add the 8 bytes representing the long
if (currentOffset +  [[#variable5b1ebf20]]>= poolContent.length) {
  resizePoolContents( [[#variable5b1ebf20]]);
}
poolContent[currentOffset++ ] = (byte) ( [[#variable5a59f2a0]] >>>  [[#variable5b519da0]]);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#5b1ebf20]]
2 
12[[#5b1ebf20]]
4 
13[[#5b1ebf20]]
8 
14[[#5b1ebf20]]
4 
21[[#5a59f2a0]]
value 
22[[#5a59f2a0]]
key 
23[[#5a59f2a0]]
key 
24[[#5a59f2a0]]
temp 
31[[#5b519da0]]
8 
32[[#5b519da0]]
24 
33[[#5b519da0]]
56 
34[[#5b519da0]]
24