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.java775 int a = nibble0(abcd); in decodeRegisterList()
868 private static short codeUnit(int nibble0, int nibble1, int nibble2, in codeUnit() argument
870 if ((nibble0 & ~0xf) != 0) { in codeUnit()
886 return (short) (nibble0 | (nibble1 << 4) in codeUnit()
950 private static int nibble0(int value) { in nibble0() method in InstructionCodec