Searched refs:luaH_getint (Results 1 – 4 of 4) sorted by relevance
/l4re-core-master/lua/lib/contrib/src/ |
A D | ltable.c | 719 const TValue *luaH_getint (Table *t, lua_Integer key) { in luaH_getint() function 780 case LUA_VNUMINT: return luaH_getint(t, ivalue(key)); in luaH_get() 785 return luaH_getint(t, k); /* use specialized version */ in luaH_get() 820 const TValue *p = luaH_getint(t, key); in luaH_setint() 853 if (isempty(luaH_getint(t, j))) /* t[j] not present? */ in hash_search() 858 } while (!isempty(luaH_getint(t, j))); /* repeat until an absent t[j] */ in hash_search() 862 if (isempty(luaH_getint(t, m))) j = m; in hash_search() 953 if (isdummy(t) || isempty(luaH_getint(t, cast(lua_Integer, limit + 1)))) in luaH_getn()
|
A D | ltable.h | 38 LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key);
|
A D | lvm.h | 100 ? &hvalue(t)->array[k - 1] : luaH_getint(hvalue(t), k), \
|
A D | lapi.c | 742 return finishrawget(L, luaH_getint(t, n)); in lua_rawgeti()
|
Completed in 10 milliseconds