Searched refs:RegOpcode (Results 1 – 3 of 3) sorted by relevance
347 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode, in ModRMByte() argument349 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!"); in ModRMByte()350 return RM | (RegOpcode << 3) | (Mod << 6); in ModRMByte()
95 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode, in ModRMByte() argument97 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!"); in ModRMByte()98 return RM | (RegOpcode << 3) | (Mod << 6); in ModRMByte()
108 inline static uint8_t ModRMByte(unsigned Mod, unsigned RegOpcode, in ModRMByte() argument110 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!"); in ModRMByte()111 return RM | (RegOpcode << 3) | (Mod << 6); in ModRMByte()