Home
last modified time | relevance | path

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

/art/runtime/base/
Dlogging.h98 #define DCHECK_EQ(val1, val2) \ argument
100 CHECK_EQ(val1, val2)
102 #define DCHECK_NE(val1, val2) \ argument
104 CHECK_NE(val1, val2)
106 #define DCHECK_LE(val1, val2) \ argument
108 CHECK_LE(val1, val2)
110 #define DCHECK_LT(val1, val2) \ argument
112 CHECK_LT(val1, val2)
114 #define DCHECK_GE(val1, val2) \ argument
116 CHECK_GE(val1, val2)
[all …]
/art/runtime/verifier/
Dreg_type.cc792 int32_t val1 = ConstantValue(); in Merge() local
794 if (val1 >= 0 && val2 >= 0) { in Merge()
796 if (val1 >= val2) { in Merge()
800 return reg_types->FromCat1Const(val1, false); in Merge()
809 } else if (val1 < 0 && val2 < 0) { in Merge()
811 if (val1 <= val2) { in Merge()
815 return reg_types->FromCat1Const(val1, false); in Merge()
845 int32_t val1 = ConstantValueLo(); in Merge() local
847 return reg_types->FromCat2ConstLo(val1 | val2, false); in Merge()
849 int32_t val1 = ConstantValueHi(); in Merge() local
[all …]
/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc696 float val1 = shadow_frame.GetVRegFloat(inst->VRegB_23x()); in ExecuteGotoImpl() local
699 if (val1 > val2) { in ExecuteGotoImpl()
701 } else if (val1 == val2) { in ExecuteGotoImpl()
712 float val1 = shadow_frame.GetVRegFloat(inst->VRegB_23x()); in ExecuteGotoImpl() local
715 if (val1 < val2) { in ExecuteGotoImpl()
717 } else if (val1 == val2) { in ExecuteGotoImpl()
728 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in ExecuteGotoImpl() local
731 if (val1 > val2) { in ExecuteGotoImpl()
733 } else if (val1 == val2) { in ExecuteGotoImpl()
744 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in ExecuteGotoImpl() local
[all …]
Dinterpreter_switch_impl.cc605 float val1 = shadow_frame.GetVRegFloat(inst->VRegB_23x()); in ExecuteSwitchImpl() local
608 if (val1 > val2) { in ExecuteSwitchImpl()
610 } else if (val1 == val2) { in ExecuteSwitchImpl()
621 float val1 = shadow_frame.GetVRegFloat(inst->VRegB_23x()); in ExecuteSwitchImpl() local
624 if (val1 < val2) { in ExecuteSwitchImpl()
626 } else if (val1 == val2) { in ExecuteSwitchImpl()
637 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in ExecuteSwitchImpl() local
640 if (val1 > val2) { in ExecuteSwitchImpl()
642 } else if (val1 == val2) { in ExecuteSwitchImpl()
654 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in ExecuteSwitchImpl() local
[all …]
/art/test/107-int-math2/src/
DMain.java101 int val1 = instance.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.cc1182 static int SortCounts(const void *val1, const void *val2) { in SortCounts() argument
1183 const Mir2Lir::RefCounts* op1 = reinterpret_cast<const Mir2Lir::RefCounts*>(val1); in SortCounts()
/art/compiler/jni/
Djni_compiler_test.cc906 jint my_gettext(JNIEnv* env, jclass klass, jlong val1, jobject obj1, jlong val2, jobject obj2) { in JNI_TEST()
910 EXPECT_EQ(0x12345678ABCDEF88ll, val1); in JNI_TEST()