Searched refs:lua_geti (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/lua/src/ |
H A D | ltablib.c | 77 lua_geti(L, 1, i - 1); in tinsert() 98 lua_geti(L, 1, pos); /* result = t[pos] */ in tremove() 100 lua_geti(L, 1, pos + 1); in tremove() 131 lua_geti(L, 1, f + i); in tmove() 137 lua_geti(L, 1, f + i); in tmove() 148 lua_geti(L, 1, i); in addfield() 204 lua_geti(L, 1, i); in tunpack() 206 lua_geti(L, 1, e); /* push last element */ in tunpack() 304 while ((void)lua_geti(L, 1, ++i), sort_comp(L, -1, -2)) { in partition() 311 while ((void)lua_geti(L, 1, --j), sort_comp(L, -3, -1)) { in partition() [all …]
|
H A D | lbaselib.c | 306 return (lua_geti(L, 1, i) == LUA_TNIL) ? 1 : 2; in ipairsaux()
|
H A D | lua.h | 264 LUA_API int (lua_geti) (lua_State *L, int idx, lua_Integer n); variable
|
H A D | lapi.c | 695 LUA_API int lua_geti (lua_State *L, int idx, lua_Integer n) { in lua_geti() function
|