Home
last modified time | relevance | path

Searched defs:val1 (Results 1 – 7 of 7) sorted by relevance

/art/runtime/base/
Dlogging.h98 #define DCHECK_EQ(val1, val2) \ argument
102 #define DCHECK_NE(val1, val2) \ argument
106 #define DCHECK_LE(val1, val2) \ argument
110 #define DCHECK_LT(val1, val2) \ argument
114 #define DCHECK_GE(val1, val2) \ argument
118 #define DCHECK_GT(val1, val2) \ argument
/art/runtime/interpreter/
Dinterpreter_switch_impl.cc605 float val1 = shadow_frame.GetVRegFloat(inst->VRegB_23x()); in ExecuteSwitchImpl() local
621 float val1 = shadow_frame.GetVRegFloat(inst->VRegB_23x()); in ExecuteSwitchImpl() local
637 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in ExecuteSwitchImpl() local
654 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in ExecuteSwitchImpl() local
670 int64_t val1 = shadow_frame.GetVRegLong(inst->VRegB_23x()); in ExecuteSwitchImpl() local
Dinterpreter_goto_table_impl.cc696 float val1 = shadow_frame.GetVRegFloat(inst->VRegB_23x()); in ExecuteGotoImpl() local
712 float val1 = shadow_frame.GetVRegFloat(inst->VRegB_23x()); in ExecuteGotoImpl() local
728 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in ExecuteGotoImpl() local
744 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in ExecuteGotoImpl() local
760 int64_t val1 = shadow_frame.GetVRegLong(inst->VRegB_23x()); in ExecuteGotoImpl() local
/art/runtime/verifier/
Dreg_type.cc792 int32_t val1 = ConstantValue(); in Merge() local
845 int32_t val1 = ConstantValueLo(); in Merge() local
849 int32_t val1 = ConstantValueHi(); in Merge() local
/art/test/107-int-math2/src/
DMain.java101 int val1 = instance.tryThing(); in superTest() local
/art/compiler/dex/quick/
Dralloc_util.cc1182 static int SortCounts(const void *val1, const void *val2) { in SortCounts()
/art/test/MyClassNatives/
DMyClassNatives.java35 static native int getText(long val1, Object obj1, long val2, Object obj2); in getText()