Searched defs:s0 (Results 1 - 9 of 9) 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.cc37 int32_t memcmp16_compare(const uint16_t* s0, const uint16_t* s1, size_t count) { argument
39 if (s0[i] != s1[i]) {
40 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/mirror/
H A Dobject_test.cc358 // pretend we are trying to access 'Static.s0' from StaticsFromCode.<clinit>
373 const DexFile::StringId* name_str_id = dex_file->FindStringId("s0");
383 Object* s0 = field->GetObj(klass); local
384 EXPECT_TRUE(s0 != nullptr);
/art/runtime/
H A Dclass_linker_test.cc937 ArtField* s0 = mirror::Class::FindStaticField(soa.Self(), statics, "s0", "Z"); local
938 EXPECT_EQ(s0->GetTypeAsPrimitiveType(), Primitive::kPrimBoolean);
939 EXPECT_EQ(true, s0->GetBoolean(statics.Get()));
940 s0->SetBoolean<false>(statics.Get(), false);
986 EXPECT_FALSE(s0->GetBoolean(statics.Get()));
/art/runtime/interpreter/mterp/mips/
H A Dheader.S49 s0 rPC interpreted program counter, used for fetching instructions
58 #define rPC s0
95 #define s0 $$16 /* saved across subroutine calls (callee saved) */ define
464 STACK_STORE(s0, 116); \
481 STACK_LOAD(s0, 116); \
/art/runtime/interpreter/mterp/out/
H A Dmterp_mips.S56 s0 rPC interpreted program counter, used for fetching instructions
65 #define rPC s0
102 #define s0 $16 /* saved across subroutine calls (callee saved) */ define
471 STACK_STORE(s0, 116); \
488 STACK_LOAD(s0, 116); \

Completed in 998 milliseconds