Searched refs:luaH_getint (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/contrib/lua/src/ |
| H A D | ltable.c | 697 const TValue *luaH_getint (Table *t, lua_Integer key) { in luaH_getint() function 758 case LUA_VNUMINT: return luaH_getint(t, ivalue(key)); in luaH_get() 763 return luaH_getint(t, k); /* use specialized version */ in luaH_get() 785 const TValue *p = luaH_getint(t, key); in luaH_setint() 820 if (isempty(luaH_getint(t, j))) /* t[j] not present? */ in hash_search() 825 } while (!isempty(luaH_getint(t, j))); /* repeat until an absent t[j] */ in hash_search() 829 if (isempty(luaH_getint(t, m))) j = m; in hash_search() 920 if (isdummy(t) || isempty(luaH_getint(t, cast(lua_Integer, limit + 1)))) in luaH_getn()
|
| H A D | ltable.h | 38 LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key);
|
| H A D | lvm.h | 98 ? &hvalue(t)->array[k - 1] : luaH_getint(hvalue(t), k), \
|
| H A D | lapi.c | 636 return auxgetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name); in lua_getglobal() 714 return finishrawget(L, luaH_getint(t, n)); in lua_rawgeti() 817 auxsetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name); in lua_setglobal() 1067 const TValue *gt = luaH_getint(reg, LUA_RIDX_GLOBALS); in lua_load()
|
| /freebsd-13.1/sys/contrib/openzfs/module/lua/ |
| H A D | ltable.c | 448 const TValue *luaH_getint (Table *t, int key) { in luaH_getint() function 492 return luaH_getint(t, k); /* use specialized version */ in luaH_get() 522 const TValue *p = luaH_getint(t, key); in luaH_setint() 539 while (!ttisnil(luaH_getint(t, j))) { in unbound_search() 545 while (!ttisnil(luaH_getint(t, i))) i++; in unbound_search() 552 if (ttisnil(luaH_getint(t, m))) j = m; in unbound_search()
|
| H A D | ltable.h | 26 LUAI_FUNC const TValue *luaH_getint (Table *t, int key);
|
| H A D | lapi.c | 609 gt = luaH_getint(reg, LUA_RIDX_GLOBALS); in lua_getglobal() 651 setobj2s(L, L->top, luaH_getint(hvalue(t), n)); in lua_rawgeti() 736 gt = luaH_getint(reg, LUA_RIDX_GLOBALS); in lua_setglobal() 983 const TValue *gt = luaH_getint(reg, LUA_RIDX_GLOBALS); in lua_load()
|