Searched refs:d1 (Results 76 - 92 of 92) sorted by relevance

1234

/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.c1289 unsigned char *d1; local
1294 d1 = d;
1295 for (j = 0; j < img->width; j++, d1 += 3) {
1297 t = d1[0]; d1[0] = d1[2]; d1[2] = t;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp2277 void assert_equal(IRScopeDebugInfo* d1, IRScopeDebugInfo* d2) { argument
2278 assert(d1->scope() == d2->scope(), "not equal");
2279 assert(d1->bci() == d2->bci(), "not equal");
2281 if (d1->locals() != NULL) {
2282 assert(d1->locals() != NULL && d2->locals() != NULL, "not equal");
2283 assert(d1->locals()->length() == d2->locals()->length(), "not equal");
2284 for (int i = 0; i < d1->locals()->length(); i++) {
2285 assert_equal(d1->locals()->at(i), d2->locals()->at(i));
2288 assert(d1->locals() == NULL && d2->locals() == NULL, "not equal");
2291 if (d1
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DJapaneseImperialCalendar.java1362 CalendarDate d1 = jcal.getCalendarDate(Long.MIN_VALUE, getZone());
1363 long fd1 = jcal.getFixedDate(d1);
1364 d1.addYear(1);
1365 d1.setMonth(BaseCalendar.JANUARY).setDayOfMonth(1);
1366 jcal.normalize(d1);
1367 long fd2 = jcal.getFixedDate(d1);
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanAttributeInfoSupport.java996 Descriptor d1 = ((DescriptorRead) x1).getDescriptor();
998 if (!d1.equals(d2))
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DBase64.java743 byte d1=data[0],d2=data[1],d3=data[2], d4=data[3];
744 b1 = base64Alphabet[d1];
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopnode.cpp3121 uint d1 = dom_depth(n1); local
3124 if (d1 > d2) {
3126 d1 = dom_depth(n1);
3127 } else if (d1 < d2) {
3131 // Here d1 == d2. Due to edits of the dominator-tree, sections
3137 while (dom_depth(t1) == d1) {
3150 d1 = dom_depth(n1);
3295 uint d1 = dom_depth(n1); local
3299 if (d1 > d2) {
3303 d1
[all...]
H A Dsuperword.cpp706 int d1 = depth(s1); local
708 if (d1 == d2) return s1 != s2;
709 Node* deep = d1 > d2 ? s1 : s2;
710 Node* shallow = d1 > d2 ? s2 : s1;
856 // Is the use of d1 in u1 at the same operand position as d2 in u2?
857 bool SuperWord::opnd_positions_match(Node* d1, Node* u1, Node* d2, Node* u2) { argument
863 for (i1++; i1 < ct; i1++) if (u1->in(i1) == d1) break;
H A Dsuperword.hpp413 // Is the use of d1 in u1 at the same operand position as d2 in u2?
414 bool opnd_positions_match(Node* d1, Node* u1, Node* d2, Node* u2);
H A Dsubnode.cpp1390 double d1 = t1->getd(); local
1392 return TypeD::make( StubRoutines::intrinsic_pow( d1, d2 ) );
H A Dparse2.cpp656 Node *d1 = pop_pair(); local
660 d1, top(), d2, top());
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_IntArgbPre.c1094 mlib_d64 dmix0, dmix1, dd, d0, d1, e0, e1; local
1178 d1 = vis_fmul8x16al(srcG_f, vis_read_lo(dmix0));
1182 d1 = vis_fpadd16(vis_fpadd16(d1, d_half), e1);
1183 dd = vis_fpack16_pair(d0, d1);
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c2347 /*static const mp_digit d1 = 1; */
2348 /*static const mp_int one = { MP_ZPOS, 1, 1, (mp_digit *)&d1 }; */
4144 mp_digit d1, d0, q1, q0; local
4147 d1 = divisor >> MP_HALF_DIGIT_BIT;
4149 r1 = Nhi % d1;
4150 q1 = Nhi / d1;
4160 r0 = r1 % d1;
4161 q0 = r1 / d1;
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp909 jdouble d1 = double_at(index1); local
911 if (d1 == d2) {
/openjdk7/make/scripts/
H A Dwebrev.ksh344 d1 = 0
348 d1 = n2 - n1
356 if (d2 > d1) {
358 printf "sp(%d);", d2 - d1
439 d1 = n2 - n1
440 if (d1 > d2) {
442 printf "sp(%d);", d1 - d2
687 d1=$1
689 if [[ "$d1" == "." ]]; then
692 typeset cur="${d1##
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp1560 Register s1, Register d1,
1584 ld_ptr(s1_addr.after_save(), d1);
1586 mov(s1->after_save(), d1);
1559 save_frame_and_mov(int extraWords, Register s1, Register d1, Register s2, Register d2) argument
H A Dassembler_sparc.hpp2422 void save_frame_and_mov(int extraWords, Register s1, Register d1, Register s2 = Register(), Register d2 = Register());
/openjdk7/langtools/test/tools/javac/
H A DManyMembers2.java37 void d1 () {} method in class:ManyMembers2

Completed in 237 milliseconds

1234