Home
last modified time | relevance | path

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

/art/test/Statics/
DStatics.java21 static final short s3 = (short) 65000; field in Statics
38 return s3; in getS3()
/art/test/004-StackWalk/src/
DMain.java46 String s3 = new String("3"); in shlemiel() local
68 s += s3; in shlemiel()
90 s += s3; in shlemiel()
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S62 sw $s3, 80($sp)
125 sw $s3, 16($sp)
157 lw $s3, 16($sp)
209 sw $s3, 80($sp)
315 lw $s3, 80($sp)
374 sw $s3, 216($sp)
506 lw $s3, 216($sp)
634 sw $s3, 16($sp)
693 lw $s3, 16($sp)
757 lw $s3, 76($a0)
[all …]
/art/runtime/interpreter/mterp/mips64/
Dmain.S42 #define s3 $$19 macro
98 #define rINST s3
385 sd s3, STACK_OFFSET_S3(sp)
702 ld s3, STACK_OFFSET_S3(sp)
/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
233 CHECK_EQ(s3, -3); in Java_Main_shortMethod()
621 jstring s3 = reinterpret_cast<jstring>(env->AllocObject(c)); in Java_Main_testNewStringObject() local
622 CHECK(s3 != nullptr); in Java_Main_testNewStringObject()
638 env->CallVoidMethodA(s3, mid3, args3); in Java_Main_testNewStringObject()
/art/test/623-checker-loop-regressions/src/
DMain.java532 int s3 = 0; in reduction32Values() local
565 s3 += d[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.java109 String s3 = new String(byteArray, 1); in constructorTest() local
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S127 sd $s3, 16($sp)
178 ld $s3, 16($sp)
660 sd $s3, 40($sp)
2058 ld $s3, ART_METHOD_JNI_OFFSET_64($a0) # $s3 = ImtConflictTable (callee-saved).
2069 ld $t1, 0($s3) # Load next entry in ImtConflictTable.
2076 daddiu $s3, $s3, 2 * __SIZEOF_POINTER__ # Iterate to the next entry.
2082 ld $a0, __SIZEOF_POINTER__($s3)
2771 BRB_FIELD_LONG_OFFSET_ENTRY $s3
2793 BRB_FIELD_SHORT_OFFSET_ENTRY $s3
2817 BRB_GC_ROOT_ENTRY $s3
/art/runtime/interpreter/mterp/mips/
Dmain.S69 #define rIBASE s3
107 #define s3 $$19 macro
699 STACK_STORE(s3, 104); \
710 STACK_LOAD(s3, 104); \
/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.cc1190 ArtField* s3 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s3", "S"); in TEST_F() local
1191 EXPECT_EQ(s3->GetTypeAsPrimitiveType(), Primitive::kPrimShort); in TEST_F()
1192 EXPECT_EQ(-536, s3->GetShort(statics.Get())); in TEST_F()
1193 s3->SetShort<false>(statics.Get(), -535); in TEST_F()
1227 EXPECT_EQ(-535, s3->GetShort(statics.Get())); in TEST_F()
/art/compiler/optimizing/
Dcode_generator_arm_vixl.h61 vixl::aarch32::s3,
111 vixl::aarch32::s3
/art/test/626-checker-arm64-scratch-register/smali/
DMain2.smali167 ## CHECK: str s3, [sp, #24]
168 ## CHECK: ldr s3, pc+{{\d+}} (addr {{0x[0-9a-f]+}}) (100)
/art/runtime/arch/arm64/
Dquick_entrypoints_arm64.S834 LOADREG x15 4 s3 .LfillRegisters
959 LOADREG x15 4 s3 .LfillRegisters2
/art/compiler/utils/arm64/
Dmanaged_register_arm64_test.cc709 EXPECT_TRUE(vixl::aarch64::s3.Is(Arm64Assembler::reg_s(S3))); in TEST()