Searched refs:lowByte (Results 1 – 2 of 2) sorted by relevance
360 int lowByte = opcode & 0xff; in isValidShape() local361 if ((lowByte == 0) || (lowByte == 0xff)) { in isValidShape()399 int lowByte = opcodeUnit & 0xff; in extractOpcodeFromUnit() local400 return ((lowByte == 0) || (lowByte == 0xff)) ? opcodeUnit : lowByte; in extractOpcodeFromUnit()
990 private static short codeUnit(int lowByte, int highByte) { in codeUnit() argument991 if ((lowByte & ~0xff) != 0) { in codeUnit()999 return (short) (lowByte | (highByte << 8)); in codeUnit()