Lines Matching refs:jlong

70 inline jlong BytecodeInterpreter::VMlongAdd(jlong op1, jlong op2) {
74 inline jlong BytecodeInterpreter::VMlongAnd(jlong op1, jlong op2) {
78 inline jlong BytecodeInterpreter::VMlongDiv(jlong op1, jlong op2) {
80 if (op1 == (jlong) 0x8000000000000000LL && op2 == -1) return op1;
84 inline jlong BytecodeInterpreter::VMlongMul(jlong op1, jlong op2) {
88 inline jlong BytecodeInterpreter::VMlongOr(jlong op1, jlong op2) {
92 inline jlong BytecodeInterpreter::VMlongSub(jlong op1, jlong op2) {
96 inline jlong BytecodeInterpreter::VMlongXor(jlong op1, jlong op2) {
100 inline jlong BytecodeInterpreter::VMlongRem(jlong op1, jlong op2) {
102 if (op1 == (jlong) 0x8000000000000000LL && op2 == -1) return 0;
106 inline jlong BytecodeInterpreter::VMlongUshr(jlong op1, jint op2) {
110 inline jlong BytecodeInterpreter::VMlongShr(jlong op1, jint op2) {
114 inline jlong BytecodeInterpreter::VMlongShl(jlong op1, jint op2) {
118 inline jlong BytecodeInterpreter::VMlongNeg(jlong op) {
122 inline jlong BytecodeInterpreter::VMlongNot(jlong op) {
126 inline int32_t BytecodeInterpreter::VMlongLtz(jlong op) {
130 inline int32_t BytecodeInterpreter::VMlongGez(jlong op) {
134 inline int32_t BytecodeInterpreter::VMlongEqz(jlong op) {
138 inline int32_t BytecodeInterpreter::VMlongEq(jlong op1, jlong op2) {
142 inline int32_t BytecodeInterpreter::VMlongNe(jlong op1, jlong op2) {
146 inline int32_t BytecodeInterpreter::VMlongGe(jlong op1, jlong op2) {
150 inline int32_t BytecodeInterpreter::VMlongLe(jlong op1, jlong op2) {
154 inline int32_t BytecodeInterpreter::VMlongLt(jlong op1, jlong op2) {
158 inline int32_t BytecodeInterpreter::VMlongGt(jlong op1, jlong op2) {
162 inline int32_t BytecodeInterpreter::VMlongCompare(jlong op1, jlong op2) {
168 inline jdouble BytecodeInterpreter::VMlong2Double(jlong val) {
172 inline jfloat BytecodeInterpreter::VMlong2Float(jlong val) {
176 inline jint BytecodeInterpreter::VMlong2Int(jlong val) {
290 inline jlong BytecodeInterpreter::VMint2Long(jint val) {
291 return (jlong) val;