Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/io/instructions/
DInstructionCodec.java686 int d = nibble1(cdef); in FORMAT_45CC()
922 int b = nibble1(abcd); in decodeRegisterList()
1015 private static short codeUnit(int nibble0, int nibble1, int nibble2, in codeUnit() argument
1021 if ((nibble1 & ~0xf) != 0) { in codeUnit()
1033 return (short) (nibble0 | (nibble1 << 4) in codeUnit()
1101 private static int nibble1(int value) { in nibble1() method in InstructionCodec