Home
last modified time | relevance | path

Searched refs:byte1 (Results 1 – 2 of 2) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
DInstructionCodec.java52 int literal = byte1(opcodeUnit); // should be zero in FORMAT_10X()
111 int a = byte1(opcodeUnit); in FORMAT_11X()
130 int target = (byte) byte1(opcodeUnit); // sign-extend in FORMAT_10T()
149 int literal = byte1(opcodeUnit); // should be zero in FORMAT_20T()
169 int literal = byte1(opcodeUnit); in FORMAT_20BC()
189 int a = byte1(opcodeUnit); in FORMAT_22X()
211 int a = byte1(opcodeUnit); in FORMAT_21T()
231 int a = byte1(opcodeUnit); in FORMAT_21S()
252 int a = byte1(opcodeUnit); in FORMAT_21H()
284 int a = byte1(opcodeUnit); in FORMAT_21C()
[all …]
/dalvik/libdex/
DDexSwapVerify.cpp1956 u1 byte1 = *(data++); in intraVerifyStringDataItem() local
1959 switch (byte1 >> 4) { in intraVerifyStringDataItem()
1962 if (byte1 == 0) { in intraVerifyStringDataItem()
1989 ALOGE("Illegal start byte %#x", byte1); in intraVerifyStringDataItem()
2004 u2 value = ((byte1 & 0x0f) << 12) | ((byte2 & 0x3f) << 6) in intraVerifyStringDataItem()
2020 u2 value = ((byte1 & 0x1f) << 6) | (byte2 & 0x3f); in intraVerifyStringDataItem()