Home
last modified time | relevance | path

Searched refs:luaO_str2num (Results 1 – 5 of 5) sorted by relevance

/minix3/external/mit/lua/dist/src/
H A Dlobject.c309 size_t luaO_str2num (const char *s, TValue *o) { in luaO_str2num() function
H A Dllex.c232 #define buff2num(b,o) (luaO_str2num(luaZ_buffer(b), o) != 0)
H A Dlobject.h557 LUAI_FUNC size_t luaO_str2num (const char *s, TValue *o);
H A Dlvm.c83 luaO_str2num(svalue(obj), &v) == vslen(obj) + 1) { in luaV_tonumber_()
122 luaO_str2num(svalue(obj), &v) == vslen(obj) + 1) {
H A Dlapi.c342 size_t sz = luaO_str2num(s, L->top); in lua_stringtonumber()