Searched defs:dp (Results 101 - 106 of 106) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/opto/
H A DloopTransform.cpp1955 ProjNode* dp = ((IfNode*)iff)->proj_out(1-flip); local
1957 for (DUIterator_Fast imax, i = dp->fast_outs(imax); i < imax; i++) {
1958 Node* cd = dp->fast_out(i); // Control-dependent node
H A Doutput.cpp771 jint *dp = (jint*)&d; local
772 array->append(new ConstantIntValue(dp[1]));
773 array->append(new ConstantIntValue(dp[0]));
790 jint *dp = (jint*)&d; local
791 array->append(new ConstantIntValue(dp[1]));
792 array->append(new ConstantIntValue(dp[0]));
H A Dsuperword.cpp719 bool SuperWord::independent_path(Node* shallow, Node* deep, uint dp) { argument
720 if (dp >= 1000) return false; // stop deep recursion
730 if (shal_depth < depth(pred) && !independent_path(shallow, pred, dp+1)) {
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp1605 const char* dp = lp; local
1607 while (*dp >= '0' && *dp <= '9') {
1610 con += (*dp++) - '0';
1613 if (lp == dp) {
1617 lp = dp;
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c2833 /* {{{ s_mp_setz(dp, count) */
2836 /* Set 'count' digits pointed to by dp to be zeroes */
2837 void s_mp_setz(mp_digit *dp, mp_size count) argument
2843 dp[ix] = 0;
2845 memset(dp, 0, count * sizeof(mp_digit));
2853 /* {{{ s_mp_copy(sp, dp, count) */
2856 /* Copy 'count' digits from sp to dp */
2857 void s_mp_copy(const mp_digit *sp, mp_digit *dp, mp_size count) argument
2863 dp[ix] = sp[ix];
2865 memcpy(dp, s
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c82 Display *dp; local
84 dp = XOpenDisplay((char *) jlong_to_ptr(display_name));
86 return ptr_to_jlong(dp);

Completed in 2293 milliseconds

12345