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

/dalvik/dx/src/com/android/dx/io/instructions/
H A DInstructionCodec.java856 private static short codeUnit(int lowByte, int highByte) { argument
861 if ((highByte & ~0xff) != 0) {
862 throw new IllegalArgumentException("bogus highByte");
865 return (short) (lowByte | (highByte << 8));

Completed in 4 milliseconds