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

/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DDexRandomAccessFile.java55 int b1 = readUnsignedByte();
57 return (short) ((b2 << 8) | b1);
64 int b1 = value & 0xff;
66 writeByte(b1);
74 int b1 = readUnsignedByte();
78 return (b4 << 24) | (b3 << 16) | (b2 << 8) | b1;
85 int b1 = value & 0xff;
86 writeByte(b1);
/art/test/565-checker-doublenegbitwise/src/
H A DMain.java209 int b1 = b + 1;
210 int not_b1 = ~b1;
/art/test/115-native-bridge/src/
H A DNativeBridgeMain.java94 native static byte byteMethod(byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, argument
126 native static boolean booleanMethod(boolean b1, boolean b2, boolean b3, boolean b4, boolean b5, boolean b6, boolean b7, argument
/art/runtime/native/
H A Dlibcore_util_CharsetUtils.cc232 jbyte b1 = (ch >> 18) | 0xf0; local
236 if (!out.append(b1) || !out.append(b2) || !out.append(b3) || !out.append(b4)) {
241 jbyte b1 = (ch >> 12) | 0xe0; local
244 if (!out.append(b1) || !out.append(b2) || !out.append(b3)) {
/art/test/115-native-bridge/
H A Dnativebridge.cc143 static jbyte trampoline_Java_Main_byteMethod(JNIEnv* env, jclass klass, jbyte b1, jbyte b2, argument
150 return fnPtr(env, klass, b1, b2, b3, b4, b5, b6, b7, b8, b9, b10);
163 static jboolean trampoline_Java_Main_booleanMethod(JNIEnv* env, jclass klass, jboolean b1, argument
171 return fnPtr(env, klass, b1, b2, b3, b4, b5, b6, b7, b8, b9, b10);
/art/test/004-JniTest/
H A Djni_test.cc183 extern "C" jbyte JNICALL Java_Main_byteMethod(JNIEnv*, jclass, jbyte b1, jbyte b2, argument
186 // We use b1 to drive the output.
197 CHECK_LE(0, b1);
198 CHECK_LT(b1, static_cast<jbyte>(kByteReturnSize));
200 return byte_returns[b1];
228 extern "C" jboolean JNICALL Java_Main_booleanMethod(JNIEnv*, jclass, jboolean b1, argument
232 // We use b1 to drive the output.
243 CHECK(b1 == JNI_TRUE || b1 == JNI_FALSE);
244 return b1;
[all...]
/art/test/004-JniTest/src/
H A DMain.java111 static native byte byteMethod(byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, argument
149 private static native boolean booleanMethod(boolean b1, boolean b2, boolean b3, boolean b4, boolean b5, boolean b6, boolean b7, argument
/art/compiler/optimizing/
H A Dinduction_var_range.cc207 bool b1, b2; // unused local
208 if (!GenerateCode(context, instruction, graph, block, lower, upper, nullptr, &b1, &b2)) {
217 bool b1, b2; // unused local
218 if (!GenerateCode(context, context, graph, block, nullptr, nullptr, taken_test, &b1, &b2)) {

Completed in 206 milliseconds