Home
last modified time | relevance | path

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

/external/lua/src/
Dllex.h14 #define FIRST_RESERVED 257 macro
28 TK_AND = FIRST_RESERVED, TK_BREAK,
40 #define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1))
Dllex.c83 if (token < FIRST_RESERVED) { /* single-byte symbols? */ in luaX_token2str()
88 const char *s = luaX_tokens[token - FIRST_RESERVED]; in luaX_token2str()
533 return ts->extra - 1 + FIRST_RESERVED; in llex()