Home
last modified time | relevance | path

Searched refs:setobj2s (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/mit/lua/dist/src/
H A Dltm.c115 setobj2s(L, func, f); /* push function (assume EXTRA_STACK) */ in luaT_callTM()
116 setobj2s(L, func + 1, p1); /* 1st argument */ in luaT_callTM()
117 setobj2s(L, func + 2, p2); /* 2nd argument */ in luaT_callTM()
118 setobj2s(L, func + 3, p3); /* 3rd argument */ in luaT_callTM()
132 setobj2s(L, func, f); /* push function (assume EXTRA_STACK) */ in luaT_callTMres()
133 setobj2s(L, func + 1, p1); /* 1st argument */ in luaT_callTMres()
134 setobj2s(L, func + 2, p2); /* 2nd argument */ in luaT_callTMres()
H A Dlfunc.c114 setobj2s(L, top, tm); /* will call metamethod... */ in callclosemethod()
115 setobj2s(L, top + 1, obj); /* with 'self' as the 1st argument */ in callclosemethod()
116 setobj2s(L, top + 2, err); /* and error msg. as 2nd argument */ in callclosemethod()
H A Dlvm.c339 setobj2s(L, val, slot); /* done */
1290 setobj2s(L, ra, rb);
1297 setobj2s(L, ra, rb);
1327 setobj2s(L, ra, cl->upvals[b]->v.p);
1344 setobj2s(L, ra, slot);
1359 setobj2s(L, ra, slot);
1371 setobj2s(L, ra, slot);
1387 setobj2s(L, ra, slot);
1474 setobj2s(L, ra + 1, rb);
1476 setobj2s(L, ra, slot);
[all …]
H A Dlapi.c238 setobj2s(L, to, &temp); in reverse()
278 setobj2s(L, L->top.p, index2value(L, idx)); in lua_pushvalue()
653 setobj2s(L, L->top.p, slot); in auxgetstr()
690 setobj2s(L, L->top.p - 1, slot); in lua_gettable()
711 setobj2s(L, L->top.p, slot); in lua_geti()
728 setobj2s(L, L->top.p, val); in finishrawget()
823 setobj2s(L, L->top.p, &uvalue(o)->uv[n - 1].uv); in lua_getiuservalue()
1400 setobj2s(L, L->top.p, val); in lua_getupvalue()
H A Dltable.c365 setobj2s(L, key + 1, &t->array[i]); in luaH_next()
373 setobj2s(L, key + 1, gval(n)); in luaH_next()
H A Dlobject.h135 #define setobj2s(L,o1,o2) setobj(L,s2v(o1),o2) macro
H A Dlgc.c921 setobj2s(L, L->top.p++, tm); /* push finalizer... */ in GCTM()
922 setobj2s(L, L->top.p++, &v); /* ... and its argument */ in GCTM()
H A Dldebug.c408 setobj2s(L, L->top.p, func); in lua_getinfo()
H A Dldo.c426 setobj2s(L, func, tm); /* metamethod is the new function to be called */ in luaD_tryfuncTM()