Searched refs:luaH_getint (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/lua/src/ |
H A D | ltable.c | 730 const TValue *luaH_getint (Table *t, lua_Integer key) { in luaH_getint() function 791 case LUA_VNUMINT: return luaH_getint(t, ivalue(key)); in luaH_get() 796 return luaH_getint(t, k); /* use specialized version */ in luaH_get() 831 const TValue *p = luaH_getint(t, key); in luaH_setint() 864 if (isempty(luaH_getint(t, j))) /* t[j] not present? */ in hash_search() 869 } while (!isempty(luaH_getint(t, j))); /* repeat until an absent t[j] */ in hash_search() 873 if (isempty(luaH_getint(t, m))) j = m; in hash_search() 964 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 | 100 ? &hvalue(t)->array[k - 1] : luaH_getint(hvalue(t), k), \
|
H A D | lapi.c | 748 return finishrawget(L, luaH_getint(t, n)); in lua_rawgeti()
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | ltable.c | 447 const TValue *luaH_getint (Table *t, int key) { in luaH_getint() function 491 return luaH_getint(t, k); /* use specialized version */ in luaH_get() 521 const TValue *p = luaH_getint(t, key); in luaH_setint() 538 while (!ttisnil(luaH_getint(t, j))) { in unbound_search() 544 while (!ttisnil(luaH_getint(t, i))) i++; in unbound_search() 551 if (ttisnil(luaH_getint(t, m))) j = m; in unbound_search()
|
H A D | ltable.h | 25 LUAI_FUNC const TValue *luaH_getint (Table *t, int key);
|
H A D | lapi.c | 610 gt = luaH_getint(reg, LUA_RIDX_GLOBALS); in lua_getglobal() 652 setobj2s(L, L->top, luaH_getint(hvalue(t), n)); in lua_rawgeti() 737 gt = luaH_getint(reg, LUA_RIDX_GLOBALS); in lua_setglobal() 984 const TValue *gt = luaH_getint(reg, LUA_RIDX_GLOBALS); in lua_load()
|