Searched refs:setobj2s (Results 1 – 8 of 8) sorted by relevance
/minix/external/mit/lua/dist/src/ |
H A D | ltm.c | 98 setobj2s(L, L->top++, f); /* push function (assume EXTRA_STACK) */ in luaT_callTM() 99 setobj2s(L, L->top++, p1); /* 1st argument */ in luaT_callTM() 100 setobj2s(L, L->top++, p2); /* 2nd argument */ in luaT_callTM() 102 setobj2s(L, L->top++, p3); /* 3rd argument */ in luaT_callTM()
|
H A D | lapi.c | 131 setobj2s(to, to->top, from->top + i); in lua_xmove() 202 setobj2s(L, to, &temp); in reverse() 243 setobj2s(L, L->top, index2addr(L, idx)); in lua_pushvalue() 642 setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1)); in lua_rawget() 653 setobj2s(L, L->top, luaH_getint(hvalue(t), n)); in lua_rawgeti() 667 setobj2s(L, L->top, luaH_get(hvalue(t), &k)); in lua_rawgetp() 1212 setobj2s(L, L->top, val); in lua_getupvalue()
|
H A D | ltable.c | 206 setobj2s(L, key+1, &t->array[i]); in luaH_next() 212 setobj2s(L, key, gkey(gnode(t, i))); in luaH_next() 213 setobj2s(L, key+1, gval(gnode(t, i))); in luaH_next()
|
H A D | lvm.c | 180 setobj2s(L, val, res); /* result is the raw get */ 697 setobj2s(L, top - 2, top); /* put TM result in proper position */ 703 setobj2s(L, ci->u.l.base + GETARG_A(inst), L->top - 1); 806 setobj2s(L, ra, rb); 813 setobj2s(L, ra, rb); 830 setobj2s(L, ra, cl->upvals[b]->v);
|
H A D | lgc.c | 820 setobj2s(L, L->top, tm); /* push finalizer... */ in GCTM() 821 setobj2s(L, L->top + 1, &v); /* ... and its argument */ in GCTM()
|
H A D | lobject.h | 273 #define setobj2s setobj macro
|
H A D | ldebug.c | 182 setobj2s(L, L->top, pos); in lua_getlocal()
|
H A D | ldo.c | 307 setobj2s(L, func, tm); /* tag method is the new function to be called */ in tryfuncTM()
|