Home
last modified time | relevance | path

Searched refs:lisdigit (Results 1 – 3 of 3) sorted by relevance

/minix3/external/mit/lua/dist/src/
H A Dlctype.h63 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) macro
89 #define lisdigit(c) (isdigit(c)) macro
H A Dllex.c260 lua_assert(lisdigit(ls->current)); in read_numeral()
293 lua_assert(lisdigit(ls->current)); in read_numeral()
421 for (i = 0; i < 3 && lisdigit(ls->current); i++) { /* read up to 3 digits */ in readdecesc()
470 esccheck(ls, lisdigit(ls->current), "invalid escape sequence"); in read_string()
579 else if (!lisdigit(ls->current)) return '.'; in llex()
H A Dlobject.c182 if (lisdigit(c)) return c - '0'; in luaO_hexavalue()
249 if (!lisdigit(cast_uchar(*s))) in lua_strx2number()
251 while (lisdigit(cast_uchar(*s))) /* read exponent */ in lua_strx2number()
295 for (; lisdigit(cast_uchar(*s)); s++) { in l_str2int()