Searched refs:luaH_getint (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/mit/lua/dist/src/ |
H A D | ltable.c | 744 const TValue *luaH_getint (Table *t, lua_Integer key) { in luaH_getint() function 805 case LUA_VNUMINT: return luaH_getint(t, ivalue(key)); in luaH_get() 811 return luaH_getint(t, k); /* use specialized version */ in luaH_get() 847 const TValue *p = luaH_getint(t, key); in luaH_setint() 880 if (isempty(luaH_getint(t, j))) /* t[j] not present? */ in hash_search() 885 } while (!isempty(luaH_getint(t, j))); /* repeat until an absent t[j] */ in hash_search() 889 if (isempty(luaH_getint(t, m))) j = m; in hash_search() 980 if (isdummy(t) || isempty(luaH_getint(t, cast(lua_Integer, limit + 1)))) in luaH_getn()
|
H A D | ltable.h | 40 LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key);
|
H A D | lvm.h | 106 ? &hvalue(t)->array[k - 1] : luaH_getint(hvalue(t), k), \
|
H A D | lapi.c | 758 return finishrawget(L, luaH_getint(t, n)); in lua_rawgeti()
|