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

/dalvik/dx/src/com/android/dx/io/instructions/
H A DInstructionCodec.java49 int literal = byte1(opcodeUnit); // should be zero
102 int a = byte1(opcodeUnit);
119 int target = (byte) byte1(opcodeUnit); // sign-extend
136 int literal = byte1(opcodeUnit); // should be zero
154 int literal = byte1(opcodeUnit);
172 int a = byte1(opcodeUnit);
192 int a = byte1(opcodeUnit);
210 int a = byte1(opcodeUnit);
229 int a = byte1(opcodeUnit);
259 int a = byte1(opcodeUni
939 private static int byte1(int value) { method in class:InstructionCodec
[all...]
/dalvik/vm/analysis/
H A DRegisterMap.cpp1396 u1 byte1 = *bits1++; local
1398 if (byte1 != byte2) {
1404 if (((byte1 >> bitNum) & 0x01) != ((byte2 >> bitNum) & 0x01)) {
/dalvik/libdex/
H A DDexSwapVerify.cpp1878 u1 byte1 = *(data++); local
1881 switch (byte1 >> 4) {
1884 if (byte1 == 0) {
1911 ALOGE("Illegal start byte %#x", byte1);
1926 u2 value = ((byte1 & 0x0f) << 12) | ((byte2 & 0x3f) << 6)
1942 u2 value = ((byte1 & 0x1f) << 6) | (byte2 & 0x3f);

Completed in 884 milliseconds