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

/dalvik/dx/src/com/android/dx/io/instructions/
H A DInstructionCodec.java891 private static int makeByte(int lowNibble, int highNibble) { argument
892 if ((lowNibble & ~0xf) != 0) {
893 throw new IllegalArgumentException("bogus lowNibble");
900 return lowNibble | (highNibble << 4);

Completed in 61 milliseconds