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.java797 int a = nibble0(abcd); in decodeRegisterList()
890 private static short codeUnit(int nibble0, int nibble1, int nibble2, in codeUnit() argument
892 if ((nibble0 & ~0xf) != 0) { in codeUnit()
908 return (short) (nibble0 | (nibble1 << 4) in codeUnit()
972 private static int nibble0(int value) { in nibble0() method in InstructionCodec