Home
last modified time | relevance | path

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

/netbsd-src/external/mit/lua/dist/src/
H A Dltablib.c81 lua_geti(L, 1, i - 1); in tinsert()
102 lua_geti(L, 1, pos); /* result = t[pos] */ in tremove()
104 lua_geti(L, 1, pos + 1); in tremove()
135 lua_geti(L, 1, f + i); in tmove()
141 lua_geti(L, 1, f + i); in tmove()
152 lua_geti(L, 1, i); in addfield()
208 lua_geti(L, 1, i); in tunpack()
210 lua_geti(L, 1, e); /* push last element */ in tunpack()
308 while ((void)lua_geti(L, 1, ++i), sort_comp(L, -1, -2)) { in partition()
315 while ((void)lua_geti(L, 1, --j), sort_comp(L, -3, -1)) { in partition()
[all …]
H A Dlbaselib.c310 return (lua_geti(L, 1, i) == LUA_TNIL) ? 1 : 2; in ipairsaux()
H A Dlua.h287 LUA_API int (lua_geti) (lua_State *L, int idx, lua_Integer n); variable
H A Dlapi.c705 LUA_API int lua_geti (lua_State *L, int idx, lua_Integer n) { in lua_geti() function