Home
last modified time | relevance | path

Searched defs:val2 (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.cc606 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteSwitchImpl() local
622 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteSwitchImpl() local
638 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteSwitchImpl() local
655 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteSwitchImpl() local
671 int64_t val2 = shadow_frame.GetVRegLong(inst->VRegC_23x()); in ExecuteSwitchImpl() local
Dinterpreter_goto_table_impl.cc697 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteGotoImpl() local
713 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteGotoImpl() local
729 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteGotoImpl() local
745 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteGotoImpl() local
761 int64_t val2 = shadow_frame.GetVRegLong(inst->VRegC_23x()); in ExecuteGotoImpl() local
/art/runtime/verifier/
Dreg_type.cc793 int32_t val2 = incoming_type.ConstantValue(); in Merge() local
846 int32_t val2 = incoming_type.ConstantValueLo(); in Merge() local
850 int32_t val2 = incoming_type.ConstantValueHi(); in Merge() local
/art/test/107-int-math2/src/
DMain.java102 int val2 = base.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()