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

/dalvik/dx/src/com/android/dx/io/instructions/
H A DInstructionCodec.java776 int a = nibble0(abcd);
869 private static short codeUnit(int nibble0, int nibble1, int nibble2, argument
871 if ((nibble0 & ~0xf) != 0) {
872 throw new IllegalArgumentException("bogus nibble0");
887 return (short) (nibble0 | (nibble1 << 4)
951 private static int nibble0(int value) { method in class:InstructionCodec

Completed in 259 milliseconds