Searched refs:lua_geti (Results 1 – 4 of 4) sorted by relevance
/external/lua/src/ |
D | ltablib.c | 76 lua_geti(L, 1, i - 1); in tinsert() 97 lua_geti(L, 1, pos); /* result = t[pos] */ in tremove() 99 lua_geti(L, 1, pos + 1); in tremove() 130 lua_geti(L, 1, f + i); in tmove() 136 lua_geti(L, 1, f + i); in tmove() 147 lua_geti(L, 1, i); in addfield() 202 lua_geti(L, 1, i); in tunpack() 204 lua_geti(L, 1, e); /* push last element */ in tunpack() 302 while ((void)lua_geti(L, 1, ++i), sort_comp(L, -1, -2)) { in partition() 309 while ((void)lua_geti(L, 1, --j), sort_comp(L, -3, -1)) { in partition() [all …]
|
D | lbaselib.c | 284 return (lua_geti(L, 1, i) == LUA_TNIL) ? 1 : 2; in ipairsaux()
|
D | lua.h | 253 LUA_API int (lua_geti) (lua_State *L, int idx, lua_Integer n); variable
|
D | lapi.c | 661 LUA_API int lua_geti (lua_State *L, int idx, lua_Integer n) { in lua_geti() function
|