Home
last modified time | relevance | path

Searched refs:luaP_opmodes (Results 1 – 2 of 2) sorted by relevance

/redis-3.2.3/deps/lua/src/
H A Dlopcodes.h252 LUAI_DATA const lu_byte luaP_opmodes[NUM_OPCODES]; variable
254 #define getOpMode(m) (cast(enum OpMode, luaP_opmodes[m] & 3))
255 #define getBMode(m) (cast(enum OpArgMask, (luaP_opmodes[m] >> 4) & 3))
256 #define getCMode(m) (cast(enum OpArgMask, (luaP_opmodes[m] >> 2) & 3))
257 #define testAMode(m) (luaP_opmodes[m] & (1 << 6))
258 #define testTMode(m) (luaP_opmodes[m] & (1 << 7))
H A Dlopcodes.c61 const lu_byte luaP_opmodes[NUM_OPCODES] = { variable