Home
last modified time | relevance | path

Searched refs:StkId (Results 1 – 14 of 14) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlvm.h32 LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj);
34 StkId val);
36 StkId val);
40 LUAI_FUNC void luaV_arith (lua_State *L, StkId ra, const TValue *rb,
42 LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb);
H A Dlapi.c182 StkId p; in lua_remove()
193 StkId p; in lua_insert()
194 StkId q; in lua_insert()
619 StkId t; in lua_gettable()
628 StkId t; in lua_getfield()
639 StkId t; in lua_rawget()
649 StkId t; in lua_rawgeti()
660 StkId t; in lua_rawgetp()
715 StkId o; in lua_getuservalue()
747 StkId t; in lua_settable()
[all …]
H A Dlstate.h70 StkId func; /* function index in the stack */
71 StkId top; /* top for this function */
78 StkId base; /* base for this function */
157 StkId top; /* first free slot in the stack */
161 StkId stack_last; /* last free slot in the stack */
162 StkId stack; /* stack base */
H A Dldo.c200 StkId lim = L->top; in stackinuse()
264 StkId base, fixed; in adjust_varargs()
278 static StkId tryfuncTM (lua_State *L, StkId func) { in tryfuncTM()
280 StkId p; in tryfuncTM()
300 int luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall()
330 StkId base; in luaD_precall()
366 int luaD_poscall (lua_State *L, StkId firstResult) { in luaD_poscall()
367 StkId res; in luaD_poscall()
466 StkId oldtop; in recover()
502 StkId firstArg = cast(StkId, ud); in resume_cb()
[all …]
H A Dldebug.c50 StkId temp = ci->func; /* exchange its 'func' and 'extra' values */ in swapextra()
114 static const char *findvararg (CallInfo *ci, int n, StkId *pos) { in findvararg()
126 StkId *pos) { in findlocal()
128 StkId base; in findlocal()
140 StkId limit = (ci == L->ci) ? L->top : ci->next->func; in findlocal()
162 StkId pos = 0; /* to avoid warnings */ in lua_getlocal()
176 StkId pos = 0; /* to avoid warnings */ in lua_setlocal()
282 StkId func; in lua_getinfo()
506 StkId p; in isinstack()
546 l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2) { in luaG_concaterror()
[all …]
H A Dldo.h32 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
33 LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults,
37 LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult);
H A Dlvm.c47 int luaV_tostring (lua_State *L, StkId obj) { in luaV_tostring()
176 StkId res, TMS event) { in call_binTM()
296 StkId top = L->top; in luaV_concat()
409 void luaV_arith (lua_State *L, StkId ra, const TValue *rb, in luaV_arith()
462 StkId ra) { in pushclosure()
485 StkId base = ci->u.l.base; in luaV_finishOp()
598 StkId base; in luaV_execute()
607 StkId ra; in luaV_execute()
673 StkId rb = RB(i); in luaV_execute()
719 StkId rb; in luaV_execute()
[all …]
H A Dlfunc.h25 LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
26 LUAI_FUNC void luaF_close (lua_State *L, StkId level);
H A Dldebug.h26 LUAI_FUNC l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2);
H A Dlfunc.c47 UpVal *luaF_findupval (lua_State *L, StkId level) { in luaF_findupval()
89 void luaF_close (lua_State *L, StkId level) { in luaF_close()
H A Dltable.h35 LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
H A Dltable.c144 static int findindex (lua_State *L, Table *t, StkId key) { in findindex()
169 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next()
H A Dlgc.c497 StkId o = th->stack; in traversestack()
503 StkId lim = th->stack + th->stacksize; /* real end of stack */ in traversestack()
H A Dlobject.h401 typedef TValue *StkId; /* index to stack elements */ typedef