Searched refs:VMlongGt (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A DbytecodeInterpreter_sparc.inline.hpp139 inline int32_t BytecodeInterpreter::VMlongGt(jlong op1, jlong op2) { function in class:BytecodeInterpreter
144 return (VMlongLt(op1, op2) ? -1 : VMlongGt(op1, op2) ? 1 : 0);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DbytecodeInterpreter_x86.inline.hpp139 inline int32_t BytecodeInterpreter::VMlongGt(jlong op1, jlong op2) { function in class:BytecodeInterpreter
144 return (VMlongLt(op1, op2) ? -1 : VMlongGt(op1, op2) ? 1 : 0);
/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.inline.hpp158 inline int32_t BytecodeInterpreter::VMlongGt(jlong op1, jlong op2) { function in class:BytecodeInterpreter
163 return (VMlongLt(op1, op2) ? -1 : VMlongGt(op1, op2) ? 1 : 0);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp293 static int32_t VMlongGt(jlong op1, jlong op2); /* op1 > op2 */

Completed in 63 milliseconds