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.java1003 private static short codeUnit(int lowByte, int highByte) { in codeUnit() argument
1008 if ((highByte & ~0xff) != 0) { in codeUnit()
1012 return (short) (lowByte | (highByte << 8)); in codeUnit()