Searched refs:byte2 (Results 1 - 3 of 3) sorted by relevance

/dalvik/libdex/
H A DDexSwapVerify.cpp1916 u1 byte2 = *(data++); local
1917 if ((byte2 & 0xc0) != 0x80) {
1918 ALOGE("Illegal continuation byte %#x", byte2);
1926 u2 value = ((byte1 & 0x0f) << 12) | ((byte2 & 0x3f) << 6)
1937 u1 byte2 = *(data++); local
1938 if ((byte2 & 0xc0) != 0x80) {
1939 ALOGE("Illegal continuation byte %#x", byte2);
1942 u2 value = ((byte1 & 0x1f) << 6) | (byte2 & 0x3f);
/dalvik/vm/analysis/
H A DRegisterMap.cpp1397 u1 byte2 = *bits2++; local
1398 if (byte1 != byte2) {
1404 if (((byte1 >> bitNum) & 0x01) != ((byte2 >> bitNum) & 0x01)) {
/dalvik/dx/src/com/android/dx/io/instructions/
H A DInstructionCodec.java943 private static int byte2(int value) { method in class:InstructionCodec

Completed in 1184 milliseconds