Home
last modified time | relevance | path

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

12

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlvm.h33 LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj);
35 StkId val);
37 StkId val);
41 LUAI_FUNC void luaV_arith (lua_State *L, StkId ra, const TValue *rb,
43 LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb);
H A Dlapi.c180 StkId p; in lua_remove()
191 StkId p; in lua_insert()
192 StkId q; in lua_insert()
617 StkId t; in lua_gettable()
626 StkId t; in lua_getfield()
637 StkId t; in lua_rawget()
647 StkId t; in lua_rawgeti()
658 StkId t; in lua_rawgetp()
713 StkId o; in lua_getuservalue()
745 StkId t; in lua_settable()
[all …]
H A Dlstate.h71 StkId func; /* function index in the stack */
72 StkId top; /* top for this function */
79 StkId base; /* base for this function */
158 StkId top; /* first free slot in the stack */
162 StkId stack_last; /* last free slot in the stack */
163 StkId stack; /* stack base */
H A Dldo.h33 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
34 LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults,
38 LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult);
H A Dldebug.c49 StkId temp = ci->func; /* exchange its 'func' and 'extra' values */ in swapextra()
113 static const char *findvararg (CallInfo *ci, int n, StkId *pos) { in findvararg()
125 StkId *pos) { in findlocal()
127 StkId base; in findlocal()
139 StkId limit = (ci == L->ci) ? L->top : ci->next->func; in findlocal()
161 StkId pos = 0; /* to avoid warnings */ in lua_getlocal()
175 StkId pos = 0; /* to avoid warnings */ in lua_setlocal()
281 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.c266 StkId lim = L->top; in stackinuse()
330 StkId base, fixed; in adjust_varargs()
344 static StkId tryfuncTM (lua_State *L, StkId func) { in tryfuncTM()
346 StkId p; in tryfuncTM()
366 int luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall()
396 StkId base; in luaD_precall()
432 int luaD_poscall (lua_State *L, StkId firstResult) { in luaD_poscall()
433 StkId res; in luaD_poscall()
537 StkId oldtop; in recover()
573 StkId firstArg = cast(StkId, ud); in resume_cb()
[all …]
H A Dlvm.c46 int luaV_tostring (lua_State *L, StkId obj) { in luaV_tostring()
177 StkId res, TMS event) { in call_binTM()
297 StkId top = L->top; in luaV_concat()
410 void luaV_arith (lua_State *L, StkId ra, const TValue *rb, in luaV_arith()
463 StkId ra) { in pushclosure()
486 StkId base = ci->u.l.base; in luaV_finishOp()
599 StkId base; in luaV_execute()
608 StkId ra; in luaV_execute()
674 StkId rb = RB(i); in luaV_execute()
720 StkId rb; in luaV_execute()
[all …]
H A Dlfunc.h26 LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
27 LUAI_FUNC void luaF_close (lua_State *L, StkId level);
H A Dldebug.h27 LUAI_FUNC l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2);
H A Dlfunc.c46 UpVal *luaF_findupval (lua_State *L, StkId level) { in luaF_findupval()
88 void luaF_close (lua_State *L, StkId level) { in luaF_close()
H A Dltable.h36 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()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlstate.h49 StkId base; /* base for this function */
50 StkId func; /* function index in the stack */
51 StkId top; /* top for this function */
103 StkId top; /* first free slot in the stack */
104 StkId base; /* base of current function */
108 StkId stack_last; /* last free slot in the stack */
109 StkId stack; /* stack base */
H A Dlapi.c181 StkId p; in lua_remove()
192 StkId p; in lua_insert()
193 StkId q; in lua_insert()
204 StkId o; in lua_replace()
535 StkId t; in lua_gettable()
545 StkId t; in lua_getfield()
558 StkId t; in lua_rawget()
568 StkId o; in lua_rawgeti()
617 StkId o; in lua_getfenv()
646 StkId t; in lua_settable()
[all …]
H A Dldo.h42 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
43 LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults);
46 LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult);
54 LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop);
H A Dldo.c212 StkId base, fixed; in adjust_varargs()
244 static StkId tryfuncTM (lua_State *L, StkId func) { in tryfuncTM()
246 StkId p; in tryfuncTM()
265 int luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall()
275 StkId st, base; in luaD_precall()
332 static StkId callrethooks (lua_State *L, StkId firstResult) { in callrethooks()
343 int luaD_poscall (lua_State *L, StkId firstResult) { in luaD_poscall()
344 StkId res; in luaD_poscall()
370 void luaD_call (lua_State *L, StkId func, int nResults) { in luaD_call()
385 StkId firstArg = cast(StkId, ud); in resume()
[all …]
H A Dlvm.h28 LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj);
30 StkId val);
32 StkId val);
H A Dldebug.h23 LUAI_FUNC void luaG_concaterror (lua_State *L, StkId p1, StkId p2);
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 Dlvm.c47 int luaV_tostring (lua_State *L, StkId obj) { in luaV_tostring()
80 static void callTMres (lua_State *L, StkId res, const TValue *f, in callTMres()
166 StkId res, TMS event) { in call_binTM()
284 StkId top = L->base + last + 1; in luaV_concat()
317 static void Arith (lua_State *L, StkId ra, const TValue *rb, in Arith()
379 StkId base; in luaV_execute()
391 StkId ra; in luaV_execute()
469 StkId rb = RB(i); in luaV_execute()
617 StkId func = ci->func; in luaV_execute()
618 StkId pfunc = (ci+1)->func; /* previous function index */ in luaV_execute()
[all …]
H A Dldebug.c118 StkId limit = (ci == L->ci) ? L->top : (ci+1)->func; in findlocal()
238 StkId func = L->top - 1; in lua_getinfo()
560 StkId p; in isinstack()
581 void luaG_concaterror (lua_State *L, StkId p1, StkId p2) { in luaG_concaterror()
620 StkId errfunc = restorestack(L, L->errfunc); in luaG_errormsg()
H A Dltable.h30 LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
H A Dlfunc.c53 UpVal *luaF_findupval (lua_State *L, StkId level) { in luaF_findupval()
96 void luaF_close (lua_State *L, StkId level) { in luaF_close()
H A Dltable.c137 static int findindex (lua_State *L, Table *t, StkId key) { in findindex()
162 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next()
H A Dlobject.h193 typedef TValue *StkId; /* index to stack elements */ typedef

12