Searched refs:setobjs2s (Results 1 – 6 of 6) sorted by relevance
/external/lua/src/ |
D | ltm.c | 133 setobjs2s(L, res, --L->top); /* move result to its place */ in luaT_callTMres() 245 setobjs2s(L, L->top++, ci->func); in luaT_adjustvarargs() 248 setobjs2s(L, L->top++, ci->func + i); in luaT_adjustvarargs() 266 setobjs2s(L, where + i, ci->func - nextra + i); in luaT_getvarargs()
|
D | ldo.c | 106 setobjs2s(L, oldtop, L->top - 1); /* error message on current top */ in luaD_seterrorobj() 124 setobjs2s(L, g->mainthread->top++, L->top - 1); /* copy error obj. */ in luaD_throw() 360 setobjs2s(L, p, p-1); in luaD_tryfuncTM() 383 setobjs2s(L, res, L->top - nres); /* move it to proper place */ in moveresults() 403 setobjs2s(L, res + i, firstresult + i); in moveresults() 438 setobjs2s(L, ci->func + i, func + i); in luaD_pretailcall()
|
D | ldebug.c | 237 setobjs2s(L, L->top, pos); in lua_getlocal() 252 setobjs2s(L, pos, L->top - 1); in lua_setlocal() 758 setobjs2s(L, L->top, L->top - 1); /* move argument */ in luaG_errormsg() 759 setobjs2s(L, L->top - 1, errfunc); /* push function */ in luaG_errormsg()
|
D | lvm.c | 648 setobjs2s(L, top - 2, top - 1); /* result is second op. */ in luaV_concat() 813 setobjs2s(L, base + GETARG_A(*(ci->u.l.savedpc - 2)), --L->top); in luaV_finishOp() 819 setobjs2s(L, base + GETARG_A(inst), --L->top); in luaV_finishOp() 843 setobjs2s(L, top - 2, top); /* put TM result in proper position */ in luaV_finishOp() 1159 setobjs2s(L, ra, RB(i)); in luaV_execute() 1695 setobjs2s(L, base - 1, ra); /* at least this result */ in luaV_execute() 1754 setobjs2s(L, ra + 2, ra + 4); /* save control variable */ in luaV_execute()
|
D | lapi.c | 129 setobjs2s(to, to->top, from->top + i); in lua_xmove() 207 setobjs2s(L, from, to); in reverse() 317 setobjs2s(L, L->top, L->top - 1); in lua_arith()
|
D | lobject.h | 125 #define setobjs2s(L,o1,o2) setobj(L,s2v(o1),s2v(o2)) macro
|