Searched defs:s2 (Results 1 - 9 of 9) 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.cc53 int CompareIgnoringSpace(const char* s1, const char* s2) { argument
56 while (isspace(*s2)) ++s2;
57 if (*s1 == '\0' || *s1 != *s2) {
61 ++s2;
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/cmdline/
H A Dcmdline_types.h213 char* s2; local
214 size_t val = strtoul(s, &s2, 10);
215 if (s2 != s) {
216 // s2 should be pointing just after the number.
221 if (*s2 != '\0') {
225 char c = *s2++;
226 if (*s2 == '\0') {
/art/runtime/
H A Dclass_linker_test.cc902 ArtField* s2 = mirror::Class::FindStaticField(soa.Self(), statics, "s2", "C"); local
903 EXPECT_EQ(s2->GetTypeAsPrimitiveType(), Primitive::kPrimChar);
904 EXPECT_EQ('a', s2->GetChar(statics.Get()));
905 s2->SetChar<false>(statics.Get(), 'b');
943 EXPECT_EQ('b', s2->GetChar(statics.Get()));
H A Djni_internal_test.cc1721 jstring s2 = env_->NewStringUTF("world"); local
1722 ASSERT_NE(s2, nullptr);
1731 env_->SetStaticObjectField(c, s_fid, s2);
1732 ASSERT_TRUE(env_->IsSameObject(s2, env_->GetStaticObjectField(c, s_fid)));
1736 env_->SetObjectField(o, i_fid, s2);
1737 ASSERT_TRUE(env_->IsSameObject(s2, 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 279 milliseconds