Searched refs:luaH_getint (Results 1 – 4 of 4) sorted by relevance
/external/lua/src/ |
D | ltable.c | 683 const TValue *luaH_getint (Table *t, lua_Integer key) { in luaH_getint() function 744 case LUA_VNUMINT: return luaH_getint(t, ivalue(key)); in luaH_get() 749 return luaH_getint(t, k); /* use specialized version */ in luaH_get() 771 const TValue *p = luaH_getint(t, key); in luaH_setint() 806 if (isempty(luaH_getint(t, j))) /* t[j] not present? */ in hash_search() 811 } while (!isempty(luaH_getint(t, j))); /* repeat until an absent t[j] */ in hash_search() 815 if (isempty(luaH_getint(t, m))) j = m; in hash_search() 906 if (isdummy(t) || isempty(luaH_getint(t, cast(lua_Integer, limit + 1)))) in luaH_getn()
|
D | ltable.h | 38 LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key);
|
D | lvm.h | 98 ? &hvalue(t)->array[k - 1] : luaH_getint(hvalue(t), k), \
|
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()
|