Home
last modified time | relevance | path

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

/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/test/Statics/
DStatics.java22 static final int s4 = 2000000000; field in Statics
41 return s4; in getS4()
/art/runtime/interpreter/mterp/mips64/
Dmain.S43 #define s4 $$20 macro
99 #define rIBASE s4
387 sd s4, STACK_OFFSET_S4(sp)
700 ld s4, STACK_OFFSET_S4(sp)
/art/dexdump/
Ddexdump.cc78 using s4 = int32_t; typedef
453 fprintf(gOutFile, "%" PRId32, static_cast<s4>(readVarWidth(data, arg, true))); in dumpEncodedValue()
975 pDecInsn->VRegA(), (s4) pDecInsn->VRegB(), (u1)pDecInsn->VRegB()); in dumpInstruction()
982 const s4 targ = (s4) pDecInsn->VRegA(); in dumpInstruction()
993 const s4 targ = (s4) pDecInsn->VRegB(); in dumpInstruction()
1002 pDecInsn->VRegA(), (s4) pDecInsn->VRegB(), (u2)pDecInsn->VRegB()); in dumpInstruction()
1007 const s4 value = pDecInsn->VRegB() << 16; in dumpInstruction()
1027 (s4) pDecInsn->VRegC(), (u1) pDecInsn->VRegC()); in dumpInstruction()
1030 const s4 targ = (s4) pDecInsn->VRegC(); in dumpInstruction()
1041 (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/623-checker-loop-regressions/src/
DMain.java533 int s4 = 0; in reduction32Values() local
566 s4 += a[i]; in reduction32Values()
595 return s0 + s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10 + s11 + s12 + s13 + s14 + s15 + in reduction32Values()
/art/test/020-string/src/
DMain.java110 String s4 = new String(byteArray, 0, 4); in constructorTest() local
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S60 sw $s4, 84($sp)
123 sw $s4, 20($sp)
155 lw $s4, 20($sp)
183 sw $s4, 84($sp)
312 lw $s4, 84($sp)
372 sw $s4, 220($sp)
504 lw $s4, 220($sp)
632 sw $s4, 20($sp)
691 lw $s4, 20($sp)
758 lw $s4, 80($a0)
[all …]
/art/runtime/interpreter/mterp/mips/
Dmain.S70 #define rINST s4
108 #define s4 $$20 macro
700 STACK_STORE(s4, 100); \
709 STACK_LOAD(s4, 100); \
/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/arch/mips64/
Dquick_entrypoints_mips64.S125 sd $s4, 24($sp)
176 ld $s4, 24($sp)
203 sd $s4, 152($sp)
658 sd $s4, 48($sp)
2772 BRB_FIELD_LONG_OFFSET_ENTRY $s4
2794 BRB_FIELD_SHORT_OFFSET_ENTRY $s4
2818 BRB_GC_ROOT_ENTRY $s4
/art/runtime/
Dclass_linker_test.cc1195 ArtField* s4 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s4", "I"); in TEST_F() local
1196 EXPECT_EQ(s4->GetTypeAsPrimitiveType(), Primitive::kPrimInt); in TEST_F()
1197 EXPECT_EQ(2000000000, s4->GetInt(statics.Get())); in TEST_F()
1198 s4->SetInt<false>(statics.Get(), 2000000001); in TEST_F()
1228 EXPECT_EQ(2000000001, s4->GetInt(statics.Get())); in TEST_F()
/art/compiler/optimizing/
Dcode_generator_arm_vixl.h62 vixl::aarch32::s4,
/art/runtime/arch/arm64/
Dquick_entrypoints_arm64.S835 LOADREG x15 4 s4 .LfillRegisters
960 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()