Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlopcodes.h272 LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES]; variable
274 #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))
H A Dlopcodes.c64 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = { variable