Home
last modified time | relevance | path

Searched refs:s8 (Results 1 – 16 of 16) sorted by relevance

/art/test/Statics/
DStatics.java26 static final String s8 = "android"; field in Statics
53 return s8; in getS8()
/art/test/004-StackWalk/src/
DMain.java51 String s8 = new String("8"); in shlemiel() local
73 s += s8; in shlemiel()
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S58 sd $s8, 144($sp)
142 ld $s8, 64($sp)
195 sd $s8, 192($sp)
293 ld $s8, 192($sp)
703 ld $s8, 96($sp)
1039 # push a4, a5, s0(rSUSPEND), s1(rSELF), s8, ra onto the stack
1044 sd $s8, 32($sp)
1056 move $s8, $sp # save sp in s8 (fp)
1092 move $sp, $s8 # restore sp
1094 # pop a4, a5, s1(rSELF), s8, ra off of the stack
[all …]
/art/test/115-native-bridge/src/
DNativeBridgeMain.java113 short s8, short s9, short s10); in shortMethod() argument
/art/test/623-checker-loop-regressions/src/
DMain.java537 int s8 = 0; in reduction32Values() local
570 s8 += 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.java119 String s8 = new String(byteArray, 3, 3, charset); in constructorTest() local
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S50 sw $s8, 104($sp)
113 sw $s8, 40($sp)
145 lw $s8, 40($sp)
175 sw $s8, 104($sp)
301 lw $s8, 104($sp)
622 sw $s8, 40($sp)
643 move $s8, $sp # Save the stack pointer
651 sw $s8, 4($sp) # Save old stack pointer
681 lw $s8, 40($sp)
2248 move $s8, $sp # save $sp to $s8
[all …]
/art/runtime/interpreter/mterp/mips/
Dmain.S74 #define rPROFILE s8
118 #define s8 $$30 /* one more callee saved */ macro
695 STACK_STORE(s8, 120); \
714 STACK_LOAD(s8, 120); \
/art/test/115-native-bridge/
Dnativebridge.cc156 jshort s7, jshort s8, jshort s9, jshort s10) { 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/dexdump/
Ddexdump.cc79 using s8 = int64_t; typedef
432 return (static_cast<s8>(value) << shift) >> shift; in readVarWidth()
456 fprintf(gOutFile, "%" PRId64, static_cast<s8>(readVarWidth(data, arg, true))); in dumpEncodedValue()
1011 const s8 value = ((s8) pDecInsn->VRegB()) << 48; in dumpInstruction()
/art/test/004-JniTest/src/
DMain.java169 short s8, short s9, short s10); in shortMethod() argument
/art/runtime/
Dclass_linker_test.cc1215 ArtField* s8 = mirror::Class::FindStaticField( in TEST_F() local
1217 EXPECT_EQ(s8->GetTypeAsPrimitiveType(), Primitive::kPrimNot); in TEST_F()
1218 EXPECT_TRUE(s8->GetObject(statics.Get())->AsString()->Equals("android")); in TEST_F()
1220 s8->SetObject<false>(s8->GetDeclaringClass(), str_value); in TEST_F()
1232 EXPECT_TRUE(s8->GetObject(statics.Get())->AsString()->Equals("robot")); in TEST_F()
/art/test/004-JniTest/
Djni_test.cc230 jshort s7, jshort s8, jshort s9, jshort s10) { in Java_Main_shortMethod() argument
238 CHECK_EQ(s8, 8); in Java_Main_shortMethod()
/art/runtime/interpreter/mterp/mips64/
Dmain.S53 #define s8 $$30 /* one more callee saved */ macro
/art/compiler/optimizing/
Dcode_generator_arm_vixl.h66 vixl::aarch32::s8,
/art/compiler/utils/arm64/
Dmanaged_register_arm64_test.cc714 EXPECT_TRUE(vixl::aarch64::s8.Is(Arm64Assembler::reg_s(S8))); in TEST()