Home
last modified time | relevance | path

Searched refs:s4 (Results 1 – 14 of 14) sorted by relevance

/art/test/Statics/
DStatics.java22 static final int s4 = 2000000000; field in Statics
41 return s4; in getS4()
/art/test/004-StackWalk/src/
DMain.java47 String s4 = new String("4"); in shlemiel() local
69 s += s4; in shlemiel()
98 s4 = s18 = s19; in shlemiel()
99 s += s4; in shlemiel()
/art/dexdump/
Ddexdump.cc81 using s4 = int32_t; typedef
492 fprintf(gOutFile, "%" PRId32, static_cast<s4>(readVarWidth(data, arg, true))); in dumpEncodedValue()
1014 pDecInsn->VRegA(), (s4) pDecInsn->VRegB(), (u1)pDecInsn->VRegB()); in dumpInstruction()
1021 const s4 targ = (s4) pDecInsn->VRegA(); in dumpInstruction()
1032 const s4 targ = (s4) pDecInsn->VRegB(); in dumpInstruction()
1041 pDecInsn->VRegA(), (s4) pDecInsn->VRegB(), (u2)pDecInsn->VRegB()); in dumpInstruction()
1046 const s4 value = pDecInsn->VRegB() << 16; in dumpInstruction()
1066 (s4) pDecInsn->VRegC(), (u1) pDecInsn->VRegC()); in dumpInstruction()
1069 const s4 targ = (s4) pDecInsn->VRegC(); in dumpInstruction()
1080 (s4) pDecInsn->VRegC(), (u2) pDecInsn->VRegC()); in dumpInstruction()
/art/test/115-native-bridge/src/
DNativeBridgeMain.java112 …native static short shortMethod(short s1, short s2, short s3, short s4, short s5, short s6, short … in shortMethod() argument
/art/test/004-JniTest/
Djni_test.cc229 jshort s3, jshort s4, jshort s5, jshort s6, in Java_Main_shortMethod() argument
234 CHECK_EQ(s4, 4); in Java_Main_shortMethod()
623 jstring s4 = reinterpret_cast<jstring>(env->AllocObject(c)); in Java_Main_testNewStringObject() local
624 CHECK(s4 != nullptr); in Java_Main_testNewStringObject()
639 env->CallNonvirtualVoidMethodA(s4, c, mid4, args4); in Java_Main_testNewStringObject()
/art/test/020-string/src/
DMain.java110 String s4 = new String(byteArray, 0, 4); in constructorTest() local
/art/test/623-checker-loop-regressions/src/
DMain.java513 int s4 = 0; in reduction32Values() local
546 s4 += a[i]; in reduction32Values()
575 return s0 + s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10 + s11 + s12 + s13 + s14 + s15 + in reduction32Values()
/art/test/115-native-bridge/
Dnativebridge.cc155 jshort s3, jshort s4, jshort s5, jshort s6, in trampoline_Java_Main_shortMethod() argument
161 return fnPtr(env, klass, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10); in trampoline_Java_Main_shortMethod()
/art/test/004-JniTest/src/
DMain.java168 …private static native short shortMethod(short s1, short s2, short s3, short s4, short s5, short s6… in shortMethod() argument
/art/runtime/
Dclass_linker_test.cc1202 ArtField* s4 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s4", "I"); in TEST_F() local
1203 EXPECT_EQ(s4->GetTypeAsPrimitiveType(), Primitive::kPrimInt); in TEST_F()
1204 EXPECT_EQ(2000000000, s4->GetInt(statics.Get())); in TEST_F()
1205 s4->SetInt<false>(statics.Get(), 2000000001); in TEST_F()
1235 EXPECT_EQ(2000000001, s4->GetInt(statics.Get())); in TEST_F()
/art/runtime/interpreter/mterp/arm64ng/
Dmain.S831 LOOP_OVER_SHORTY_LOADING_FPS d4, s4, x11, x9, x10, .Lxmm_setup_finished_\suffix
1069 LOOP_RANGE_OVER_SHORTY_LOADING_FPS d4, s4, x9, w10, w11, .Lxmm_setup_finished_range_\suffix
1549 LOOP_OVER_SHORTY_STORING_FPS d4, s4, x9, x12, x10, .Lxmm_setup_finished
/art/compiler/optimizing/
Dcode_generator_arm_vixl.h62 vixl::aarch32::s4,
/art/runtime/arch/arm64/
Dquick_entrypoints_arm64.S595 LOADREG x15 4 s4 .LfillRegisters
720 LOADREG x15 4 s4 .LfillRegisters2
/art/compiler/utils/arm64/
Dmanaged_register_arm64_test.cc710 EXPECT_TRUE(vixl::aarch64::s4.Is(Arm64Assembler::reg_s(S4))); in TEST()