Searched refs:lowByte (Results 1 – 5 of 5) sorted by relevance
321 int lowByte = opcode & 0xff; in isValidShape() local322 if ((lowByte == 0) || (lowByte == 0xff)) { in isValidShape()360 int lowByte = opcodeUnit & 0xff; in extractOpcodeFromUnit() local361 return ((lowByte == 0) || (lowByte == 0xff)) ? opcodeUnit : lowByte; in extractOpcodeFromUnit()
161 const unsigned lowByte = (byte & OpcodeByteKind_OpcodeMask); in encode_aux() local162 assert(lowByte <= 7); in encode_aux()179 modrm.reg = (char)lowByte; in encode_aux()191 const unsigned lowByte = (byte & OpcodeByteKind_OpcodeMask); in encode_aux() local192 *stream = (char)lowByte + getHWRegIndex(opnds[idx].reg()); in encode_aux()274 const unsigned lowByte = (byte & OpcodeByteKind_OpcodeMask); in encode_aux() local275 *(unsigned char*)stream = (unsigned char)lowByte + in encode_aux()
1836 unsigned lowByte = (opcod & OpcodeByteKind_OpcodeMask); in buildMnemonicDesc() local1837 odesc.opcode[odesc.opcode_len++] = (unsigned char)lowByte; in buildMnemonicDesc()
611 int lowByte = codeUnit & 0xff; in dexOpcodeFromCodeUnit() local612 if (lowByte != 0xff) { in dexOpcodeFromCodeUnit()613 return (Opcode) lowByte; in dexOpcodeFromCodeUnit()
857 private static short codeUnit(int lowByte, int highByte) { in codeUnit() argument858 if ((lowByte & ~0xff) != 0) { in codeUnit()866 return (short) (lowByte | (highByte << 8)); in codeUnit()