Searched defs:s1 (Results 1 - 11 of 11) sorted by relevance

/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]);
55 uint16_t *s1, *s2; // Use raw pointers to simplify using clobbered addresses local
88 s1 = new uint16_t[count1];
91 s1 = reinterpret_cast<uint16_t*>(0xebad1001);
106 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF);
107 s2[i] = s1[i];
110 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF);
117 s1[
[all...]
/art/test/Statics/
H A DStatics.java19 static final byte s1 = 5; field in class:Statics
32 return s1;
/art/compiler/utils/
H A Dassembler_thumb_test.cc53 int CompareIgnoringSpace(const char* s1, const char* s2) { argument
54 while (*s1 != '\0') {
55 while (isspace(*s1)) ++s1;
57 if (*s1 == '\0' || *s1 != *s2) {
60 ++s1;
63 return *s1 - *s2;
/art/test/115-native-bridge/src/
H A DNativeBridgeMain.java109 native static short shortMethod(short s1, short s2, short s3, short s4, short s5, short s6, short s7, argument
/art/runtime/mirror/
H A Dobject_test.cc101 size_t s1 = a1->SizeOf(); local
103 EXPECT_EQ(s1, clone->SizeOf());
/art/runtime/
H A Dclass_linker_test.cc897 ArtField* s1 = mirror::Class::FindStaticField(soa.Self(), statics, "s1", "B"); local
898 EXPECT_EQ(s1->GetTypeAsPrimitiveType(), Primitive::kPrimByte);
899 EXPECT_EQ(5, s1->GetByte(statics.Get()));
900 s1->SetByte<false>(statics.Get(), 6);
942 EXPECT_EQ(6, s1->GetByte(statics.Get()));
H A Djni_internal_test.cc1719 jstring s1 = env_->NewStringUTF("hello"); local
1720 ASSERT_NE(s1, nullptr);
1729 env_->SetStaticObjectField(c, s_fid, s1);
1730 ASSERT_TRUE(env_->IsSameObject(s1, env_->GetStaticObjectField(c, s_fid)));
1734 env_->SetObjectField(o, i_fid, s1);
1735 ASSERT_TRUE(env_->IsSameObject(s1, env_->GetObjectField(o, i_fid)));
/art/test/004-JniTest/src/
H A DMain.java124 private static native short shortMethod(short s1, short s2, short s3, short s4, short s5, short s6, short s7, argument
/art/test/115-native-bridge/
H A Dnativebridge.cc153 static jshort trampoline_Java_Main_shortMethod(JNIEnv* env, jclass klass, jshort s1, jshort s2, argument
160 return fnPtr(env, klass, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10);

Completed in 319 milliseconds