Home
last modified time | relevance | path

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

/external/syslinux/com32/lua/src/
Dlapi.c166 StkId func = L->ci->func; in lua_settop()
183 StkId p; in lua_remove()
194 StkId p; in lua_insert()
195 StkId q; in lua_insert()
250 StkId o = index2addr(L, idx); in lua_type()
262 StkId o = index2addr(L, idx); in lua_iscfunction()
287 StkId o1 = index2addr(L, index1); in lua_rawequal()
288 StkId o2 = index2addr(L, index2); in lua_rawequal()
294 StkId o1; /* 1st operand */ in lua_arith()
295 StkId o2; /* 2nd operand */ in lua_arith()
[all …]
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);
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 */
Dldo.c84 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) { in seterrorobj()
196 StkId lim = L->top; in stackinuse()
257 static StkId adjust_varargs (lua_State *L, Proto *p, int actual) { in adjust_varargs()
260 StkId base, fixed; in adjust_varargs()
274 static StkId tryfuncTM (lua_State *L, StkId func) { in tryfuncTM()
276 StkId p; in tryfuncTM()
296 int luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall()
326 StkId base; in luaD_precall()
362 int luaD_poscall (lua_State *L, StkId firstResult) { in luaD_poscall()
363 StkId res; in luaD_poscall()
[all …]
Dlvm.c70 int luaV_tostring (lua_State *L, StkId obj) { in luaV_tostring()
133 void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_gettable()
159 void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_settable()
199 StkId res, TMS event) { in call_binTM()
319 StkId top = L->top; in luaV_concat()
358 void luaV_objlen (lua_State *L, StkId ra, const TValue *rb) { in luaV_objlen()
383 void luaV_arith (lua_State *L, StkId ra, const TValue *rb, in luaV_arith()
402 static Closure *getcached (Proto *p, UpVal **encup, StkId base) { in getcached()
424 static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base, in pushclosure()
425 StkId ra) { in pushclosure()
[all …]
Dldebug.c107 static const char *findvararg (CallInfo *ci, int n, StkId *pos) { in findvararg()
119 StkId *pos) { in findlocal()
121 StkId base; in findlocal()
133 StkId limit = (ci == L->ci) ? L->top : ci->next->func; in findlocal()
154 StkId pos = 0; /* to avoid warnings */ in lua_getlocal()
167 StkId pos = 0; /* to avoid warnings */ in lua_setlocal()
270 StkId func; in lua_getinfo()
492 StkId p; in isinstack()
532 l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2) { in luaG_concaterror()
575 StkId errfunc = restorestack(L, L->errfunc); in luaG_errormsg()
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);
Dlfunc.h25 LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
26 LUAI_FUNC void luaF_close (lua_State *L, StkId level);
Dldebug.h26 LUAI_FUNC l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2);
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()
Dltable.h35 LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
Dltable.c145 static int findindex (lua_State *L, Table *t, StkId key) { in findindex()
170 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next()
Dlgc.c497 StkId o = th->stack; in traversestack()
503 StkId lim = th->stack + th->stacksize; /* real end of stack */ in traversestack()
Dlobject.h402 typedef TValue *StkId; /* index to stack elements */ typedef