Searched defs:val2 (Results 1 - 7 of 7) sorted by relevance

/art/runtime/interpreter/
H A Dsafe_math.h40 unsigned_biggest_T val2 = static_cast<unsigned_biggest_T>(b); local
41 return static_cast<biggest_T>(Op<unsigned_biggest_T>()(val1, val2));
H A Dinterpreter_goto_table_impl.cc675 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); local
677 if (val1 > val2) {
679 } else if (val1 == val2) {
691 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); local
693 if (val1 < val2) {
695 } else if (val1 == val2) {
707 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); local
709 if (val1 > val2) {
711 } else if (val1 == val2) {
723 double val2 local
743 int64_t val2 = shadow_frame.GetVRegLong(inst->VRegC_23x()); local
[all...]
H A Dinterpreter_switch_impl.cc565 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); local
567 if (val1 > val2) {
569 } else if (val1 == val2) {
581 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); local
583 if (val1 < val2) {
585 } else if (val1 == val2) {
597 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); local
599 if (val1 > val2) {
601 } else if (val1 == val2) {
614 double val2 local
635 int64_t val2 = shadow_frame.GetVRegLong(inst->VRegC_23x()); local
[all...]
/art/runtime/verifier/
H A Dreg_type.cc587 int32_t val2 = type2.ConstantValue(); local
588 if (val1 >= 0 && val2 >= 0) {
590 if (val1 >= val2) {
600 return reg_types->FromCat1Const(val2, false);
603 } else if (val1 < 0 && val2 < 0) {
605 if (val1 <= val2) {
615 return reg_types->FromCat1Const(val2, false);
642 int32_t val2 = type2.ConstantValueLo(); local
643 return reg_types->FromCat2ConstLo(val1 | val2, false);
648 int32_t val2 local
[all...]
/art/compiler/dex/quick/
H A Dralloc_util.cc1327 static int SortCounts(const void *val1, const void *val2) { argument
1329 const Mir2Lir::RefCounts* op2 = reinterpret_cast<const Mir2Lir::RefCounts*>(val2);
1332 // Note also that if a wide val1 and a non-wide val2 have the same count, then val1 always
/art/compiler/jni/
H A Djni_compiler_test.cc869 jint my_gettext(JNIEnv* env, jclass klass, jlong val1, jobject obj1, jlong val2, jobject obj2) { argument
874 EXPECT_EQ(0x7FEDCBA987654321ll, val2);
/art/test/MyClassNatives/
H A DMyClassNatives.java35 static native int getText(long val1, Object obj1, long val2, Object obj2); argument

Completed in 1488 milliseconds