Home
last modified time | relevance | path

Searched refs:FIRST_RESERVED (Results 1 – 4 of 4) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dllex.h14 #define FIRST_RESERVED 257 macro
26 TK_AND = FIRST_RESERVED, TK_BREAK,
36 #define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1))
H A Dllex.c79 if (token < FIRST_RESERVED) { in luaX_token2str()
85 return luaX_tokens[token-FIRST_RESERVED]; in luaX_token2str()
431 return ts->tsv.reserved - 1 + FIRST_RESERVED; in llex()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dllex.h15 #define FIRST_RESERVED 257 macro
25 TK_AND = FIRST_RESERVED, TK_BREAK,
35 #define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1))
H A Dllex.c73 if (token < FIRST_RESERVED) { /* single-byte symbols? */ in luaX_token2str()
79 const char *s = luaX_tokens[token - FIRST_RESERVED]; in luaX_token2str()
499 return ts->tsv.extra - 1 + FIRST_RESERVED; in llex()