Home
last modified time | relevance | path

Searched refs:val2 (Results 1 – 8 of 8) sorted by relevance

/art/runtime/interpreter/
Dsafe_math.h40 unsigned_biggest_T val2 = static_cast<unsigned_biggest_T>(b); in SafeMath() local
41 return static_cast<biggest_T>(Op<unsigned_biggest_T>()(val1, val2)); in SafeMath()
Dinterpreter_goto_table_impl.cc675 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteGotoImpl() local
677 if (val1 > val2) { in ExecuteGotoImpl()
679 } else if (val1 == val2) { in ExecuteGotoImpl()
691 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteGotoImpl() local
693 if (val1 < val2) { in ExecuteGotoImpl()
695 } else if (val1 == val2) { in ExecuteGotoImpl()
707 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteGotoImpl() local
709 if (val1 > val2) { in ExecuteGotoImpl()
711 } else if (val1 == val2) { in ExecuteGotoImpl()
723 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteGotoImpl() local
[all …]
Dinterpreter_switch_impl.cc565 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteSwitchImpl() local
567 if (val1 > val2) { in ExecuteSwitchImpl()
569 } else if (val1 == val2) { in ExecuteSwitchImpl()
581 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteSwitchImpl() local
583 if (val1 < val2) { in ExecuteSwitchImpl()
585 } else if (val1 == val2) { in ExecuteSwitchImpl()
597 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteSwitchImpl() local
599 if (val1 > val2) { in ExecuteSwitchImpl()
601 } else if (val1 == val2) { in ExecuteSwitchImpl()
614 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteSwitchImpl() local
[all …]
/art/runtime/verifier/
Dreg_type.cc587 int32_t val2 = type2.ConstantValue(); in Merge() local
588 if (val1 >= 0 && val2 >= 0) { in Merge()
590 if (val1 >= val2) { in Merge()
600 return reg_types->FromCat1Const(val2, false); in Merge()
603 } else if (val1 < 0 && val2 < 0) { in Merge()
605 if (val1 <= val2) { in Merge()
615 return reg_types->FromCat1Const(val2, false); in Merge()
642 int32_t val2 = type2.ConstantValueLo(); in Merge() local
643 return reg_types->FromCat2ConstLo(val1 | val2, false); in Merge()
648 int32_t val2 = type2.ConstantValueHi(); in Merge() local
[all …]
/art/test/107-int-math2/src/
DMain.java102 int val2 = base.tryThing(); in superTest() local
103 return val1 + val2 + x; in superTest()
/art/test/MyClassNatives/
DMyClassNatives.java35 static native int getText(long val1, Object obj1, long val2, Object obj2); in getText() argument
/art/compiler/dex/quick/
Dralloc_util.cc1327 static int SortCounts(const void *val1, const void *val2) { in SortCounts() argument
1329 const Mir2Lir::RefCounts* op2 = reinterpret_cast<const Mir2Lir::RefCounts*>(val2); in SortCounts()
/art/compiler/jni/
Djni_compiler_test.cc869 jint my_gettext(JNIEnv* env, jclass klass, jlong val1, jobject obj1, jlong val2, jobject obj2) { in JNI_TEST()
874 EXPECT_EQ(0x7FEDCBA987654321ll, val2); in JNI_TEST()