Home
last modified time | relevance | path

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

/external/lua/src/
Dltm.c106 setobj2s(L, func, f); /* push function (assume EXTRA_STACK) */ in luaT_callTM()
107 setobj2s(L, func + 1, p1); /* 1st argument */ in luaT_callTM()
108 setobj2s(L, func + 2, p2); /* 2nd argument */ in luaT_callTM()
109 setobj2s(L, func + 3, p3); /* 3rd argument */ in luaT_callTM()
123 setobj2s(L, func, f); /* push function (assume EXTRA_STACK) */ in luaT_callTMres()
124 setobj2s(L, func + 1, p1); /* 1st argument */ in luaT_callTMres()
125 setobj2s(L, func + 2, p2); /* 2nd argument */ in luaT_callTMres()
Dlfunc.c118 setobj2s(L, top, tm); /* will call metamethod... */ in prepclosingmethod()
119 setobj2s(L, top + 1, obj); /* with 'self' as the 1st argument */ in prepclosingmethod()
120 setobj2s(L, top + 2, err); /* and error msg. as 2nd argument */ in prepclosingmethod()
Dlvm.c314 setobj2s(L, val, slot); /* done */ in luaV_finishget()
1174 setobj2s(L, ra, rb); in luaV_execute()
1180 setobj2s(L, ra, rb); in luaV_execute()
1205 setobj2s(L, ra, cl->upvals[b]->v); in luaV_execute()
1220 setobj2s(L, ra, slot); in luaV_execute()
1234 setobj2s(L, ra, slot); in luaV_execute()
1245 setobj2s(L, ra, slot); in luaV_execute()
1260 setobj2s(L, ra, slot); in luaV_execute()
1342 setobj2s(L, ra + 1, rb); in luaV_execute()
1344 setobj2s(L, ra, slot); in luaV_execute()
[all …]
Dlapi.c208 setobj2s(L, to, &temp); in reverse()
248 setobj2s(L, L->top, index2value(L, idx)); in lua_pushvalue()
619 setobj2s(L, L->top, slot); in auxgetstr()
646 setobj2s(L, L->top - 1, slot); in lua_gettable()
667 setobj2s(L, L->top, slot); in lua_geti()
684 setobj2s(L, L->top, val); in finishrawget()
779 setobj2s(L, L->top, &uvalue(o)->uv[n - 1].uv); in lua_getiuservalue()
1358 setobj2s(L, L->top, val); in lua_getupvalue()
Dltable.c311 setobj2s(L, key + 1, &t->array[i]); in luaH_next()
319 setobj2s(L, key + 1, gval(n)); in luaH_next()
Dlobject.h127 #define setobj2s(L,o1,o2) setobj(L,s2v(o1),o2) macro
Dlgc.c906 setobj2s(L, L->top++, tm); /* push finalizer... */ in GCTM()
907 setobj2s(L, L->top++, &v); /* ... and its argument */ in GCTM()
Dldebug.c407 setobj2s(L, L->top, func); in lua_getinfo()
Dldo.c362 setobj2s(L, func, tm); /* metamethod is the new function to be called */ in luaD_tryfuncTM()