Lines Matching refs:jint

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) {
176 inline jint BytecodeInterpreter::VMlong2Int(jlong val) {
177 return (jint) val;
230 inline jint BytecodeInterpreter::VMintAdd(jint op1, jint op2) {
234 inline jint BytecodeInterpreter::VMintAnd(jint op1, jint op2) {
238 inline jint BytecodeInterpreter::VMintDiv(jint op1, jint op2) {
240 if (op1 == (jint) 0x80000000 && op2 == -1) return op1;
244 inline jint BytecodeInterpreter::VMintMul(jint op1, jint op2) {
248 inline jint BytecodeInterpreter::VMintNeg(jint op) {
252 inline jint BytecodeInterpreter::VMintOr(jint op1, jint op2) {
256 inline jint BytecodeInterpreter::VMintRem(jint op1, jint op2) {
258 if (op1 == (jint) 0x80000000 && op2 == -1) return 0;
262 inline jint BytecodeInterpreter::VMintShl(jint op1, jint op2) {
266 inline jint BytecodeInterpreter::VMintShr(jint op1, jint op2) {
270 inline jint BytecodeInterpreter::VMintSub(jint op1, jint op2) {
274 inline juint BytecodeInterpreter::VMintUshr(jint op1, jint op2) {
278 inline jint BytecodeInterpreter::VMintXor(jint op1, jint op2) {
282 inline jdouble BytecodeInterpreter::VMint2Double(jint val) {
286 inline jfloat BytecodeInterpreter::VMint2Float(jint val) {
290 inline jlong BytecodeInterpreter::VMint2Long(jint val) {
294 inline jchar BytecodeInterpreter::VMint2Char(jint val) {
298 inline jshort BytecodeInterpreter::VMint2Short(jint val) {
302 inline jbyte BytecodeInterpreter::VMint2Byte(jint val) {