Searched defs:byte2 (Results 1 - 2 of 2) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
H A DInstructionCodec.java1089 private static int byte2(int value) { method in class:InstructionCodec
/dalvik/libdex/
H A DDexSwapVerify.cpp1994 u1 byte2 = *(data++); local
1995 if ((byte2 & 0xc0) != 0x80) {
1996 ALOGE("Illegal continuation byte %#x", byte2);
2004 u2 value = ((byte1 & 0x0f) << 12) | ((byte2 & 0x3f) << 6)
2015 u1 byte2 = *(data++); local
2016 if ((byte2 & 0xc0) != 0x80) {
2017 ALOGE("Illegal continuation byte %#x", byte2);
2020 u2 value = ((byte1 & 0x1f) << 6) | (byte2 & 0x3f);

Completed in 32 milliseconds