Searched refs:idx1 (Results 1 - 7 of 7) sorted by relevance
/openjdk7/hotspot/src/share/vm/oops/ |
H A D | constantPoolOop.cpp | 1368 u2 idx1, idx2; local 1424 idx1 = Bytes::get_Java_u2(bytes); 1425 printf("class #%03d", idx1); 1430 idx1 = Bytes::get_Java_u2(bytes); 1431 printf("String #%03d", idx1); 1436 idx1 = Bytes::get_Java_u2(bytes); 1438 printf("Field #%03d, #%03d", (int) idx1, (int) idx2); 1443 idx1 = Bytes::get_Java_u2(bytes); 1445 printf("Method #%03d, #%03d", idx1, idx2); 1450 idx1 1583 u2 idx1, idx2; local [all...] |
/openjdk7/jdk/src/share/classes/sun/reflect/ |
H A D | Reflection.java | 220 int idx1 = 0; 224 if (name1.charAt(idx1) == '[') { 226 idx1++; 227 } while (name1.charAt(idx1) == '['); 228 if (name1.charAt(idx1) != 'L') { 244 int length1 = lastDot1 - idx1; 250 return name1.regionMatches(false, idx1, name2, idx2, length1);
|
/openjdk7/jdk/src/share/native/sun/java2d/loops/ |
H A D | ScaledBlit.c | 281 jint idx1, idy1; local 378 * because the math will work out to be exactly idx1, idy1 if not. 387 idx1 = (jint) ceil(ddx1 - 0.5); 390 jdouble x = sx1 + (SRCLOC(idx1, ddx1, scalex) / (1 << shift)); 391 dstInfo.bounds.x1 = dstInfo.bounds.x2 = idx1; 397 ? idx1 398 : refine(idx1, ddx1, tilesize, scalex, 400 dstInfo.bounds.x2 = refine(idx1, ddx1, tilesize, scalex, 445 jint sxloc = (jint) SRCLOC(idx1, ddx1, scalex); 455 if (span.x1 > idx1) { [all...] |
/openjdk7/hotspot/src/cpu/sparc/vm/ |
H A D | nativeInst_sparc.cpp | 582 uint idx1; local 655 for (idx1 = 0; idx1 < ARRAY_SIZE(offsets); idx1++) { 656 nm->set_offset( nm->is_immediate() ? low10(offsets[idx1]) : offsets[idx1] ); 657 assert(nm->offset() == (nm->is_immediate() ? low10(offsets[idx1]) : offsets[idx1]), 727 uint idx1; local 799 for (idx1 [all...] |
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | coalesce.cpp | 911 uint idx1 = copy1->is_Copy(); local 912 if( !idx1 ) continue; // Not a copy 922 Node *copy2 = copy1->in(idx1);
|
H A D | block.hpp | 505 void Union( uint idx1, uint idx2 );
|
H A D | block.cpp | 1019 void UnionFind::Union( uint idx1, uint idx2 ) { 1020 uint src = Find(idx1);
|
Completed in 53 milliseconds