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

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

Completed in 4 milliseconds