Searched defs:nibble1 (Results 1 - 1 of 1) sorted by relevance

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

Completed in 61 milliseconds