Searched refs:luaH_getint (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dltable.h26 LUAI_FUNC const TValue *luaH_getint (Table *t, int key);
H A Dltable.c448 const TValue *luaH_getint (Table *t, int key) { function
492 return luaH_getint(t, k); /* use specialized version */
522 const TValue *p = luaH_getint(t, key);
539 while (!ttisnil(luaH_getint(t, j))) {
545 while (!ttisnil(luaH_getint(t, i))) i++;
552 if (ttisnil(luaH_getint(t, m))) j = m;
H A Dlapi.c609 gt = luaH_getint(reg, LUA_RIDX_GLOBALS);
651 setobj2s(L, L->top, luaH_getint(hvalue(t), n));
736 gt = luaH_getint(reg, LUA_RIDX_GLOBALS);
983 const TValue *gt = luaH_getint(reg, LUA_RIDX_GLOBALS);
/freebsd-13-stable/contrib/lua/src/
H A Dltable.h38 LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key);
H A Dltable.c697 const TValue *luaH_getint (Table *t, lua_Integer key) { function
758 case LUA_VNUMINT: return luaH_getint(t, ivalue(key));
763 return luaH_getint(t, k); /* use specialized version */
785 const TValue *p = luaH_getint(t, key);
820 if (isempty(luaH_getint(t, j))) /* t[j] not present? */
825 } while (!isempty(luaH_getint(t, j))); /* repeat until an absent t[j] */
829 if (isempty(luaH_getint(t, m))) j = m;
920 if (isdummy(t) || isempty(luaH_getint(t, cast(lua_Integer, limit + 1))))
H A Dlvm.h92 ** of 'luaH_getint'.
98 ? &hvalue(t)->array[k - 1] : luaH_getint(hvalue(t), k), \
H A Dlapi.c636 return auxgetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name);
714 return finishrawget(L, luaH_getint(t, n));
817 auxsetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name);
1067 const TValue *gt = luaH_getint(reg, LUA_RIDX_GLOBALS);

Completed in 176 milliseconds