Searched refs:hi (Results 101 - 110 of 110) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.cpp112 // Binary search sorted list, in decreasing intervals [lo, hi].
113 int lo = 0, hi = _intrinsics->length()-1; local
114 while (lo <= hi) {
115 int mid = (uint)(hi + lo) / 2;
118 hi = mid-1;
125 hi = mid-1;
H A Dconnode.cpp1070 jint hi = max_jint; local
1072 return (tl->_lo >= lo) && (tl->_hi <= hi);
H A Dlibrary_call.cpp2015 jint hi, lo; local
2018 hi = MAX2(txvalue->_hi, tyvalue->_hi);
2022 hi = MIN2(txvalue->_hi, tyvalue->_hi);
2032 TypeInt::make(lo, hi, widen));
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp1757 intptr_t* hi = interpreter_frame->fp() - rounded_vm_local_words; local
1758 assert(lo < monitors && montop <= hi, "monitors in bounds");
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.hpp1893 // Support for sign-extension (hi:lo = extend_sign(lo))
1894 void extend_sign(Register hi, Register lo);
2136 void lneg(Register hi, Register lo);
2144 void lshl(Register hi, Register lo); // hi:lo << (rcx & 0x3f)
2145 void lshr(Register hi, Register lo, bool sign_extension = false); // hi:lo >> (rcx & 0x3f)
H A DtemplateTable_x86_64.cpp1385 static jlong* double_quadword(jlong *adr, jlong lo, jlong hi) { argument
1391 operand[1] = hi;
1885 // load lo & hi
1890 // check against lo & hi
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BL.c291 #define BL_SUM_2CH() BL_SUM(hi)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFFileParser.java3076 int hi = readByte() & 0xFF;
3077 typeStringLeaf = (hi << 8) | lo;
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp663 uint hi = hdr.getInt(); local
665 julong x = band::makeLong(hi, lo);
3801 case bc_tableswitch: // apc: (df, lo, hi, (hi-lo+1)*(label))
3810 int hi = lo + caseCount-1;
3812 putu4(hi);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp124 // Returns -1 for hi word if opr is a single word operand.
1286 assert(reg_numHi(opr) == -1, "missing addition of range for hi-register");
1300 assert(reg_numHi(opr) == -1, "missing addition of range for hi-register");
1309 assert(reg_numHi(opr) == -1, "missing addition of range for hi-register");
2052 assert(interval->assigned_regHi() == any_reg, "must not have hi register");
2060 assert(interval->assigned_regHi() == any_reg, "must not have hi register");
2066 assert(interval->assigned_regHi() == any_reg, "must not have hi register");
2075 assert(interval->assigned_regHi() == any_reg, "must not have hi register");
2112 assert(interval->assigned_regHi() == any_reg, "must not have hi register");
2118 assert(interval->assigned_regHi() == any_reg, "must not have hi registe
3313 int hi = reg_numHi(opr); local
[all...]

Completed in 180 milliseconds

12345