Searched refs:b1 (Results 1 - 6 of 6) 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/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/004-JniTest/src/
H A DMain.java103 static native byte byteMethod(byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, argument
141 private static native 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.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.cc175 extern "C" jbyte JNICALL Java_Main_byteMethod(JNIEnv*, jclass, 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*, jclass, jboolean b1,
224 // We use b1 to drive the output.
235 assert(b1 == JNI_TRUE || b1 == JNI_FALSE);
236 return b1;
[all...]

Completed in 128 milliseconds