Searched defs:s4 (Results 1 - 9 of 9) sorted by relevance

/art/test/Statics/
H A DStatics.java22 static final int s4 = 2000000000; field in class:Statics
41 return s4;
/art/test/115-native-bridge/src/
H A DNativeBridgeMain.java112 native static short shortMethod(short s1, short s2, short s3, short s4, short s5, short s6, short s7, argument
/art/test/004-JniTest/src/
H A DMain.java141 private static native short shortMethod(short s1, short s2, short s3, short s4, short s5, short s6, short s7, argument
/art/runtime/
H A Dclass_linker_test.cc1149 ArtField* s4 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s4", "I"); local
1150 EXPECT_EQ(s4->GetTypeAsPrimitiveType(), Primitive::kPrimInt);
1151 EXPECT_EQ(2000000000, s4->GetInt(statics.Get()));
1152 s4->SetInt<false>(statics.Get(), 2000000001);
1182 EXPECT_EQ(2000000001, s4->GetInt(statics.Get()));
/art/test/115-native-bridge/
H A Dnativebridge.cc155 jshort s3, jshort s4, jshort s5, jshort s6,
161 return fnPtr(env, klass, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10);
154 trampoline_Java_Main_shortMethod(JNIEnv* env, jclass klass, jshort s1, jshort s2, jshort s3, jshort s4, jshort s5, jshort s6, jshort s7, jshort s8, jshort s9, jshort s10) argument
/art/dexdump/
H A Ddexdump.cc73 typedef int32_t s4; typedef in namespace:art
451 fprintf(gOutFile, "%" PRId32, static_cast<s4>(readVarWidth(data, arg, true)));
987 pDecInsn->VRegA(), (s4) pDecInsn->VRegB(), (u1)pDecInsn->VRegB());
994 const s4 targ = (s4) pDecInsn->VRegA();
1005 const s4 targ = (s4) pDecInsn->VRegB();
1014 pDecInsn->VRegA(), (s4) pDecInsn->VRegB(), (u2)pDecInsn->VRegB());
1019 const s4 value = pDecInsn->VRegB() << 16;
1039 (s4) pDecIns
[all...]
/art/runtime/interpreter/mterp/mips/
H A Dheader.S53 s4 rINST first 16-bit code unit of current instruction
66 #define rINST s4
104 #define s4 $$20 define
698 STACK_STORE(s4, 100); \
707 STACK_LOAD(s4, 100); \
/art/runtime/interpreter/mterp/out/
H A Dmterp_mips.S60 s4 rINST first 16-bit code unit of current instruction
73 #define rINST s4
111 #define s4 $20 define
705 STACK_STORE(s4, 100); \
714 STACK_LOAD(s4, 100); \
/art/test/004-JniTest/
H A Djni_test.cc218 jshort s3, jshort s4, jshort s5, jshort s6,
223 CHECK_EQ(s4, 4);
612 jstring s4 = reinterpret_cast<jstring>(env->AllocObject(c)); local
613 CHECK(s4 != nullptr);
628 env->CallNonvirtualVoidMethodA(s4, c, mid4, args4);
217 Java_Main_shortMethod(JNIEnv*, jclass, jshort s1, jshort s2, jshort s3, jshort s4, jshort s5, jshort s6, jshort s7, jshort s8, jshort s9, jshort s10) argument

Completed in 2310 milliseconds