Searched refs:luaP_opmodes (Results 1 – 4 of 4) sorted by relevance
272 LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES]; variable274 #define getOpMode(m) (cast(enum OpMode, luaP_opmodes[m] & 3))275 #define getBMode(m) (cast(enum OpArgMask, (luaP_opmodes[m] >> 4) & 3))276 #define getCMode(m) (cast(enum OpArgMask, (luaP_opmodes[m] >> 2) & 3))277 #define testAMode(m) (luaP_opmodes[m] & (1 << 6))278 #define testTMode(m) (luaP_opmodes[m] & (1 << 7))
64 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = { variable
381 LUAI_DDEC(const lu_byte luaP_opmodes[NUM_OPCODES];)383 #define getOpMode(m) (cast(enum OpMode, luaP_opmodes[m] & 7))384 #define testAMode(m) (luaP_opmodes[m] & (1 << 3))385 #define testTMode(m) (luaP_opmodes[m] & (1 << 4))386 #define testITMode(m) (luaP_opmodes[m] & (1 << 5))387 #define testOTMode(m) (luaP_opmodes[m] & (1 << 6))388 #define testMMMode(m) (luaP_opmodes[m] & (1 << 7))
18 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = { variable