Searched defs:s0 (Results 1 - 12 of 12) sorted by relevance

/art/test/StaticsFromCode/
H A DStaticsFromCode.java18 static final Object s0 = "android"; field in class:StaticsFromCode
21 return s0;
/art/runtime/arch/
H A Dmemcmp16.cc22 int32_t memcmp16_generic_static(const uint16_t* s0, const uint16_t* s1, size_t count);
23 int32_t memcmp16_generic_static(const uint16_t* s0, const uint16_t* s1, size_t count) { argument
25 if (s0[i] != s1[i]) {
26 return static_cast<int32_t>(s0[i]) - static_cast<int32_t>(s1[i]);
36 int32_t MemCmp16Testing(const uint16_t* s0, const uint16_t* s1, size_t count) { argument
37 return MemCmp16(s0, s1, count);
H A Dmemcmp16.h35 extern "C" uint32_t __memcmp16(const uint16_t* s0, const uint16_t* s1, size_t count);
41 static inline int32_t MemCmp16(const uint16_t* s0, const uint16_t* s1, size_t count) { argument
43 if (s0[i] != s1[i]) {
44 return static_cast<int32_t>(s0[i]) - static_cast<int32_t>(s1[i]);
50 extern "C" int32_t memcmp16_generic_static(const uint16_t* s0, const uint16_t* s1, size_t count);
60 int32_t MemCmp16Testing(const uint16_t* s0, const uint16_t* s1, size_t count);
H A Dmemcmp16_test.cc38 int32_t memcmp16_compare(const uint16_t* s0, const uint16_t* s1, size_t count) { argument
40 if (s0[i] != s1[i]) {
41 return static_cast<int32_t>(s0[i]) - static_cast<int32_t>(s1[i]);
/art/test/Statics/
H A DStatics.java18 static final boolean s0 = true; field in class:Statics
29 return s0;
/art/runtime/interpreter/mterp/mips64/
H A Dheader.S38 #define s0 $$16 /* saved across subroutine calls (callee saved) */ define
81 s0 rPC interpreted program counter, used for fetching instructions
92 #define rPC s0
93 #define CFI_DEX 16 // DWARF register number of the register holding dex-pc (s0).
/art/runtime/mirror/
H A Dobject_test.cc350 // pretend we are trying to access 'Static.s0' from StaticsFromCode.<clinit>
365 const DexFile::StringId* name_str_id = dex_file->FindStringId("s0");
375 ObjPtr<Object> s0 = field->GetObj(klass); local
376 EXPECT_TRUE(s0 != nullptr);
/art/runtime/interpreter/mterp/out/
H A Dmterp_mips64.S45 #define s0 $16 /* saved across subroutine calls (callee saved) */ define
88 s0 rPC interpreted program counter, used for fetching instructions
99 #define rPC s0
100 #define CFI_DEX 16 // DWARF register number of the register holding dex-pc (s0).
385 sd s0, STACK_OFFSET_S0(sp)
12448 ld s0, STACK_OFFSET_S0(sp)
H A Dmterp_mips.S57 s0 rPC interpreted program counter, used for fetching instructions
70 #define rPC s0
71 #define CFI_DEX 16 // DWARF register number of the register holding dex-pc (s0).
110 #define s0 $16 /* saved across subroutine calls (callee saved) */ define
703 STACK_STORE(s0, 116); \
720 STACK_LOAD(s0, 116); \
/art/test/956-methodhandles/src/
H A DMain.java1096 public VariableArityTester(String s0, String... strings) { update(s0, strings); } argument
1118 public String update(String s0, String... strings) { return lastResult = tally(s0, strings); } argument
1145 public static String tally(String s0, String... strings) { argument
1146 return s0 + ", " + Arrays.toString(strings);
/art/runtime/
H A Dclass_linker_test.cc1159 ArtField* s0 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s0", "Z"); local
1160 EXPECT_EQ(s0->GetTypeAsPrimitiveType(), Primitive::kPrimBoolean);
1161 EXPECT_EQ(true, s0->GetBoolean(statics.Get()));
1162 s0->SetBoolean<false>(statics.Get(), false);
1208 EXPECT_FALSE(s0->GetBoolean(statics.Get()));
/art/runtime/interpreter/mterp/mips/
H A Dheader.S50 s0 rPC interpreted program counter, used for fetching instructions
63 #define rPC s0
64 #define CFI_DEX 16 // DWARF register number of the register holding dex-pc (s0).
103 #define s0 $$16 /* saved across subroutine calls (callee saved) */ define
696 STACK_STORE(s0, 116); \
713 STACK_LOAD(s0, 116); \

Completed in 284 milliseconds