Searched refs:luaH_getint (Results 1 – 3 of 3) sorted by relevance
/external/lua/src/ |
D | ltable.c | 516 const TValue *luaH_getint (Table *t, lua_Integer key) { in luaH_getint() function 592 case LUA_TNUMINT: return luaH_getint(t, ivalue(key)); in luaH_get() 597 return luaH_getint(t, k); /* use specialized version */ in luaH_get() 619 const TValue *p = luaH_getint(t, key); in luaH_setint() 636 while (!ttisnil(luaH_getint(t, j))) { in unbound_search() 641 while (!ttisnil(luaH_getint(t, i))) i++; in unbound_search() 649 if (ttisnil(luaH_getint(t, m))) j = m; in unbound_search()
|
D | ltable.h | 43 LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key);
|
D | lapi.c | 608 return auxgetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name); in lua_getglobal() 633 if (luaV_fastget(L, t, n, slot, luaH_getint)) { in lua_geti() 663 setobj2s(L, L->top, luaH_getint(hvalue(t), n)); in lua_rawgeti() 762 auxsetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name); in lua_setglobal() 789 if (luaV_fastset(L, t, n, slot, luaH_getint, L->top - 1)) in lua_seti() 1005 const TValue *gt = luaH_getint(reg, LUA_RIDX_GLOBALS); in lua_load()
|