Home
last modified time | relevance | path

Searched refs:lua_tointeger (Results 1 – 8 of 8) sorted by relevance

/redis-3.2.3/deps/lua/src/
H A Dldblib.c105 if (!lua_getstack(L1, (int)lua_tointeger(L, arg+1), &ar)) { in db_getinfo()
329 level = (int)lua_tointeger(L, arg+2); in db_errorfb()
H A Dlauxlib.c190 lua_Integer d = lua_tointeger(L, narg); in luaL_checkinteger()
281 int n = (lua_type(L, -1) == LUA_TNUMBER) ? lua_tointeger(L, -1) : -1; in checkint()
489 ref = (int)lua_tointeger(L, -1); /* ref = t[FREELIST_REF] */ in luaL_ref()
H A Dloslib.c113 res = (int)lua_tointeger(L, -1); in getfield()
H A Dlua_cmsgpack.c359 lua_Integer i = lua_tointeger(L,-1); in mp_encode_lua_integer()
445 if (!lua_isinteger(L,-1) || (n = lua_tointeger(L, -1)) <= 0) in table_is_an_array()
H A Dlua.h147 LUA_API lua_Integer (lua_tointeger) (lua_State *L, int idx);
H A Dliolib.c348 size_t l = (size_t)lua_tointeger(L, n); in g_read()
H A Dlstrlib.c557 for (src = s + (size_t)lua_tointeger(L, lua_upvalueindex(3)); in gmatch_aux()
H A Dlapi.c323 LUA_API lua_Integer lua_tointeger (lua_State *L, int idx) { in lua_tointeger() function