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

/art/runtime/arch/
H A Dmemcmp16_test.cc55 uint16_t *s1, *s2; // Use raw pointers to simplify using clobbered addresses local
95 s2 = new uint16_t[count2];
98 s2 = reinterpret_cast<uint16_t*>(0xebad2002);
107 s2[i] = s1[i];
113 s2[i] = static_cast<uint16_t>(r.next() & 0xFFFF);
120 s2[i] = static_cast<uint16_t>(r.next() & 0xFFFF);
125 uint16_t* s2_pot_unaligned = s2;
150 delete[] s2;
/art/test/Statics/
H A DStatics.java20 static final char s2 = 'a'; field in class:Statics
35 return s2;
/art/compiler/utils/
H A Dassembler_thumb_test.cc55 int CompareIgnoringSpace(const char* s1, const char* s2) { argument
58 while (isspace(*s2)) ++s2;
59 if (*s1 == '\0' || *s1 != *s2) {
63 ++s2;
65 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/cmdline/
H A Dcmdline_types.h214 char* s2; local
215 size_t val = strtoul(s, &s2, 10);
216 if (s2 != s) {
217 // s2 should be pointing just after the number.
222 if (*s2 != '\0') {
226 char c = *s2++;
227 if (*s2 == '\0') {
/art/runtime/
H A Dclass_linker_test.cc920 ArtField* s2 = mirror::Class::FindStaticField(soa.Self(), statics, "s2", "C"); local
921 EXPECT_EQ(s2->GetTypeAsPrimitiveType(), Primitive::kPrimChar);
922 EXPECT_EQ('a', s2->GetChar(statics.Get()));
923 s2->SetChar<false>(statics.Get(), 'b');
961 EXPECT_EQ('b', s2->GetChar(statics.Get()));
H A Djni_internal_test.cc1788 jstring s2 = env_->NewStringUTF("world"); local
1789 ASSERT_NE(s2, nullptr);
1798 env_->SetStaticObjectField(c, s_fid, s2);
1799 ASSERT_TRUE(env_->IsSameObject(s2, env_->GetStaticObjectField(c, s_fid)));
1803 env_->SetObjectField(o, i_fid, s2);
1804 ASSERT_TRUE(env_->IsSameObject(s2, env_->GetObjectField(o, i_fid)));
/art/test/004-JniTest/src/
H A DMain.java132 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);
/art/runtime/interpreter/mterp/mips/
H A Dheader.S51 s2 rSELF self (Thread) pointer
60 #define rSELF s2
97 #define s2 $$18 define
466 STACK_STORE(s2, 108); \
479 STACK_LOAD(s2, 108); \
/art/runtime/interpreter/mterp/out/
H A Dmterp_mips.S58 s2 rSELF self (Thread) pointer
67 #define rSELF s2
104 #define s2 $18 define
473 STACK_STORE(s2, 108); \
486 STACK_LOAD(s2, 108); \
/art/test/004-JniTest/
H A Djni_test.cc208 extern "C" jshort JNICALL Java_Main_shortMethod(JNIEnv*, jclass, jshort s1, jshort s2, argument
212 CHECK_EQ(s2, 2);
599 jstring s2 = reinterpret_cast<jstring>(env->AllocObject(c)); local
600 CHECK(s2 != nullptr);
611 env->CallNonvirtualVoidMethod(s2, c, mid2, byte_array);

Completed in 276 milliseconds