OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:luaP_opmodes
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/third_party/lua/src/
lopcodes.h
272
LUAI_DDEC const lu_byte
luaP_opmodes
[NUM_OPCODES];
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))
lopcodes.c
64
LUAI_DDEF const lu_byte
luaP_opmodes
[NUM_OPCODES] = {
Completed in 76 milliseconds