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

/dalvik/dx/src/com/android/dx/io/instructions/
H A DInstructionCodec.java52 int literal = byte1(opcodeUnit); // should be zero
111 int a = byte1(opcodeUnit);
130 int target = (byte) byte1(opcodeUnit); // sign-extend
149 int literal = byte1(opcodeUnit); // should be zero
169 int literal = byte1(opcodeUnit);
189 int a = byte1(opcodeUnit);
211 int a = byte1(opcodeUnit);
231 int a = byte1(opcodeUnit);
252 int a = byte1(opcodeUnit);
284 int a = byte1(opcodeUni
1085 private static int byte1(int value) { method in class:InstructionCodec
[all...]
/dalvik/libdex/
H A DDexSwapVerify.cpp1956 u1 byte1 = *(data++); local
1959 switch (byte1 >> 4) {
1962 if (byte1 == 0) {
1989 ALOGE("Illegal start byte %#x", byte1);
2004 u2 value = ((byte1 & 0x0f) << 12) | ((byte2 & 0x3f) << 6)
2020 u2 value = ((byte1 & 0x1f) << 6) | (byte2 & 0x3f);

Completed in 110 milliseconds