Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlobject.c158 int luaO_str2d (const char *s, size_t len, lua_Number *result) { in luaO_str2d() function
Dllex.c209 #define buff2d(b,e) luaO_str2d(luaZ_buffer(b), luaZ_bufflen(b) - 1, e)
Dlobject.h598 LUAI_FUNC int luaO_str2d (const char *s, size_t len, lua_Number *result);
Dlvm.c38 if (ttisstring(obj) && luaO_str2d(svalue(obj), tsvalue(obj)->len, &num)) { in luaV_tonumber()