Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/io/instructions/
DInstructionCodec.java685 int c = nibble0(cdef); in FORMAT_45CC()
921 int a = nibble0(abcd); in decodeRegisterList()
1015 private static short codeUnit(int nibble0, int nibble1, int nibble2, in codeUnit() argument
1017 if ((nibble0 & ~0xf) != 0) { in codeUnit()
1033 return (short) (nibble0 | (nibble1 << 4) in codeUnit()
1097 private static int nibble0(int value) { in nibble0() method in InstructionCodec