Home
last modified time | relevance | path

Searched refs:setobjs2s (Results 1 – 11 of 11) sorted by relevance

/freebsd/sys/contrib/openzfs/module/lua/
H A Dlvm.c105 setobjs2s(L, p3, --L->top); in callTM()
305 setobjs2s(L, top - 2, top - 1); /* result is second op. */ in luaV_concat()
492 setobjs2s(L, base + GETARG_A(inst), --L->top); in luaV_finishOp()
618 setobjs2s(L, ra, RB(i)); in luaV_execute()
674 setobjs2s(L, ra+1, rb); in luaV_execute()
724 setobjs2s(L, ra, rb); in luaV_execute()
768 setobjs2s(L, ra, rb); in luaV_execute()
805 setobjs2s(L, ofunc + aux, nfunc + aux); in luaV_execute()
856 setobjs2s(L, cb+2, ra+2); in luaV_execute()
857 setobjs2s(L, cb+1, ra+1); in luaV_execute()
[all …]
H A Dldebug.c181 setobjs2s(L, pos, L->top - 1); in lua_setlocal()
299 setobjs2s(L, L->top, func); in lua_getinfo()
590 setobjs2s(L, L->top, L->top - 1); /* move argument */ in luaG_errormsg()
591 setobjs2s(L, L->top - 1, errfunc); /* push function */ in luaG_errormsg()
H A Dldo.c165 setobjs2s(L, oldtop, L->top - 1); /* error message on current top */ in seterrorobj()
189 setobjs2s(L, G(L)->mainthread->top++, L->top - 1); /* copy error obj. */ in luaD_throw()
350 setobjs2s(L, L->top++, fixed + i); in adjust_varargs()
364 for (p = L->top; p > func; p--) setobjs2s(L, p, p-1); in tryfuncTM()
462 setobjs2s(L, res++, firstResult++); in luaD_poscall()
H A Dlapi.c183 while (++p < L->top) setobjs2s(L, p-1, p); in lua_remove()
196 setobjs2s(L, q, q - 1); in lua_insert()
197 setobjs2s(L, p, L->top); in lua_insert()
299 setobjs2s(L, L->top, L->top - 1); in lua_arith()
H A Dlobject.h248 #define setobjs2s setobj macro
/freebsd/contrib/lua/src/
H A Dltm.c133 setobjs2s(L, res, --L->top.p); /* move result to its place */ in luaT_callTMres()
246 setobjs2s(L, L->top.p++, ci->func.p); in luaT_adjustvarargs()
249 setobjs2s(L, L->top.p++, ci->func.p + i); in luaT_adjustvarargs()
267 setobjs2s(L, where + i, ci->func.p - nextra + i); in luaT_getvarargs()
H A Dldebug.c233 setobjs2s(L, L->top.p, pos); in lua_getlocal()
248 setobjs2s(L, pos, L->top.p - 1); in lua_setlocal()
813 setobjs2s(L, L->top.p, L->top.p - 1); /* move argument */ in luaG_errormsg()
814 setobjs2s(L, L->top.p - 1, errfunc); /* push function */ in luaG_errormsg()
832 setobjs2s(L, L->top.p - 2, L->top.p - 1); /* remove 'msg' */ in luaG_runerror()
H A Dldo.c107 setobjs2s(L, oldtop, L->top.p - 1); /* error message on current top */ in luaD_seterrorobj()
124 setobjs2s(L, g->mainthread->top.p++, L->top.p - 1); /* copy error obj. */ in luaD_throw()
420 setobjs2s(L, p, p-1); in luaD_tryfuncTM()
444 setobjs2s(L, res, L->top.p - nres); /* move it to proper place */ in moveresults()
472 setobjs2s(L, res + i, firstresult + i); in moveresults()
559 setobjs2s(L, ci->func.p + i, func + i); in luaD_pretailcall()
H A Dlvm.c654 setobjs2s(L, top - 2, top - 1); /* result is second op. */ in luaV_concat()
820 setobjs2s(L, base + GETARG_A(*(ci->u.l.savedpc - 2)), --L->top.p); in luaV_finishOp()
826 setobjs2s(L, base + GETARG_A(inst), --L->top.p); in luaV_finishOp()
850 setobjs2s(L, top - 2, top); /* put TM result in proper position */ in luaV_finishOp()
1190 setobjs2s(L, ra, RB(i)); in luaV_execute()
1776 setobjs2s(L, base - 1, ra); /* at least this result */ in luaV_execute()
1846 setobjs2s(L, ra + 2, ra + 4); /* save control variable */ in luaV_execute()
H A Dlapi.c137 setobjs2s(to, to->top.p, from->top.p + i); in lua_xmove()
231 setobjs2s(L, from, to); in reverse()
341 setobjs2s(L, L->top.p, L->top.p - 1); in lua_arith()
H A Dlobject.h129 #define setobjs2s(L,o1,o2) setobj(L,s2v(o1),s2v(o2)) macro