Lines Matching refs:slot
634 const TValue *slot; in auxgetstr() local
636 if (luaV_fastget(L, t, str, slot, luaH_getstr)) { in auxgetstr()
637 setobj2s(L, L->top, slot); in auxgetstr()
643 luaV_finishget(L, t, s2v(L->top - 1), L->top - 1, slot); in auxgetstr()
669 const TValue *slot; in lua_gettable() local
673 if (luaV_fastget(L, t, s2v(L->top - 1), slot, luaH_get)) { in lua_gettable()
674 setobj2s(L, L->top - 1, slot); in lua_gettable()
677 luaV_finishget(L, t, s2v(L->top - 1), L->top - 1, slot); in lua_gettable()
691 const TValue *slot; in lua_geti() local
694 if (luaV_fastgeti(L, t, n, slot)) { in lua_geti()
695 setobj2s(L, L->top, slot); in lua_geti()
700 luaV_finishget(L, t, &aux, L->top, slot); in lua_geti()
824 const TValue *slot; in auxsetstr() local
827 if (luaV_fastget(L, t, str, slot, luaH_getstr)) { in auxsetstr()
828 luaV_finishfastset(L, t, slot, s2v(L->top - 1)); in auxsetstr()
834 luaV_finishset(L, t, s2v(L->top - 1), s2v(L->top - 2), slot); in auxsetstr()
851 const TValue *slot; in lua_settable() local
855 if (luaV_fastget(L, t, s2v(L->top - 2), slot, luaH_get)) { in lua_settable()
856 luaV_finishfastset(L, t, slot, s2v(L->top - 1)); in lua_settable()
859 luaV_finishset(L, t, s2v(L->top - 2), s2v(L->top - 1), slot); in lua_settable()
873 const TValue *slot; in lua_seti() local
877 if (luaV_fastgeti(L, t, n, slot)) { in lua_seti()
878 luaV_finishfastset(L, t, slot, s2v(L->top - 1)); in lua_seti()
883 luaV_finishset(L, t, &aux, s2v(L->top - 1), slot); in lua_seti()