Searched refs:b1 (Results 1 - 6 of 6) sorted by relevance

/art/test/004-JniTest/
H A Djni_test.cc175 extern "C" jbyte JNICALL Java_Main_byteMethod(JNIEnv* env, jclass klass, jbyte b1, jbyte b2, argument
178 // We use b1 to drive the output.
189 assert(0 <= b1);
190 assert(b1 < static_cast<jbyte>(kByteReturnSize));
192 return byte_returns[b1];
220 extern "C" jboolean JNICALL Java_Main_booleanMethod(JNIEnv* env, jclass klass, jboolean b1,
224 // We use b1 to drive the output.
235 assert(b1 == JNI_TRUE || b1 == JNI_FALSE);
236 return b1;
[all...]
/art/test/004-JniTest/src/
H A DMain.java97 native static byte byteMethod(byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, argument
129 native static boolean booleanMethod(boolean b1, boolean b2, boolean b3, boolean b4, boolean b5, boolean b6, boolean b7, argument
/art/test/115-native-bridge/src/
H A DNativeBridgeMain.java92 native static byte byteMethod(byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, argument
124 native static boolean booleanMethod(boolean b1, boolean b2, boolean b3, boolean b4, boolean b5, boolean b6, boolean b7, argument
/art/test/115-native-bridge/
H A Dnativebridge.cc131 static jbyte trampoline_Java_Main_byteMethod(JNIEnv* env, jclass klass, jbyte b1, jbyte b2, argument
138 return fnPtr(env, klass, b1, b2, b3, b4, b5, b6, b7, b8, b9, b10);
151 static jboolean trampoline_Java_Main_booleanMethod(JNIEnv* env, jclass klass, jboolean b1, argument
159 return fnPtr(env, klass, b1, b2, b3, b4, b5, b6, b7, b8, b9, b10);
/art/compiler/utils/arm/
H A Dassembler_arm.cc233 PUW |= 0b1;
H A Dassembler_thumb2.cc1338 CHECK_EQ((offset & 0b1), 0);
1538 uint32_t i = (imm16 >> 11) & 0b1;
1561 uint32_t i = (imm16 >> 11) & 0b1;

Completed in 62 milliseconds