Home
last modified time | relevance | path

Searched refs:highByte (Results 1 – 1 of 1) sorted by relevance

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