HomeSort by relevance Sort by last modified time
    Searched refs:StkId (Results 1 - 25 of 30) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lvm.h 32 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);
ldebug.h 26 LUAI_FUNC l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2);
lfunc.h 25 LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
26 LUAI_FUNC void luaF_close (lua_State *L, StkId level);
ldo.h 32 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);
lstate.h 70 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 */
lapi.c 166 StkId func = L->ci->func;
183 StkId p;
194 StkId p;
195 StkId q;
250 StkId o = index2addr(L, idx);
262 StkId o = index2addr(L, idx);
287 StkId o1 = index2addr(L, index1);
288 StkId o2 = index2addr(L, index2);
294 StkId o1; /* 1st operand */
295 StkId o2; /* 2nd operand *
    [all...]
ldebug.c 107 static const char *findvararg (CallInfo *ci, int n, StkId *pos) {
119 StkId *pos) {
121 StkId base;
133 StkId limit = (ci == L->ci) ? L->top : ci->next->func;
154 StkId pos = 0; /* to avoid warnings */
167 StkId pos = 0; /* to avoid warnings */
270 StkId func;
492 StkId p;
532 l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2)
    [all...]
ldo.c 84 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) {
196 StkId lim = L->top;
257 static StkId adjust_varargs (lua_State *L, Proto *p, int actual) {
260 StkId base, fixed;
274 static StkId tryfuncTM (lua_State *L, StkId func) {
276 StkId p;
296 int luaD_precall (lua_State *L, StkId func, int nresults) {
326 StkId base;
362 int luaD_poscall (lua_State *L, StkId firstResult)
    [all...]
lvm.c 47 int luaV_tostring (lua_State *L, StkId obj) {
110 void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) {
136 void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val) {
176 StkId res, TMS event) {
296 StkId top = L->top;
335 void luaV_objlen (lua_State *L, StkId ra, const TValue *rb) {
360 void luaV_arith (lua_State *L, StkId ra, const TValue *rb,
379 static Closure *getcached (Proto *p, UpVal **encup, StkId base) {
401 static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base,
402 StkId ra)
    [all...]
ltable.h 35 LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
lfunc.c 47 UpVal *luaF_findupval (lua_State *L, StkId level) {
89 void luaF_close (lua_State *L, StkId level) {
ltable.c 144 static int findindex (lua_State *L, Table *t, StkId key) {
169 int luaH_next (lua_State *L, Table *t, StkId key) {
  /external/lua/src/
ldo.h 42 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);
44 LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults);
47 LUAI_FUNC int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult,
lstate.h 93 StkId func; /* function index in the stack */
94 StkId top; /* top for this function */
98 StkId base; /* base for this function */
182 StkId top; /* first free slot in the stack */
186 StkId stack_last; /* last free slot in the stack */
187 StkId stack; /* stack base */
lfunc.h 54 LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
55 LUAI_FUNC void luaF_close (lua_State *L, StkId level);
ltm.h 68 StkId res, TMS event);
70 StkId res, TMS event);
lapi.c 173 StkId func = L->ci->func;
193 static void reverse (lua_State *L, StkId from, StkId to) {
208 StkId p, t, m;
252 StkId o = index2addr(L, idx);
265 StkId o = index2addr(L, idx);
271 StkId o = index2addr(L, idx);
296 StkId o1 = index2addr(L, index1);
297 StkId o2 = index2addr(L, index2);
319 StkId o1, o2
    [all...]
ltm.c 105 StkId func = L->top;
125 StkId res, TMS event) {
136 StkId res, TMS event) {
lvm.h 102 StkId val, const TValue *slot);
104 StkId val, const TValue *slot);
111 LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb);
ldo.c 91 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) {
212 StkId lim = L->top;
293 static StkId adjust_varargs (lua_State *L, Proto *p, int actual) {
296 StkId base, fixed;
315 static void tryfuncTM (lua_State *L, StkId func) {
317 StkId p;
334 static int moveresults (lua_State *L, const TValue *firstResult, StkId res,
376 int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult, int nres) {
377 StkId res;
413 int luaD_precall (lua_State *L, StkId func, int nresults)
    [all...]
ltable.h 56 LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
lvm.c 160 void luaV_finishget (lua_State *L, const TValue *t, TValue *key, StkId val,
204 StkId val, const TValue *slot) {
460 static void copy2buff (StkId top, int n, char *buff) {
477 StkId top = L->top;
517 void luaV_objlen (lua_State *L, StkId ra, const TValue *rb) {
610 static LClosure *getcached (Proto *p, UpVal **encup, StkId base) {
632 static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base,
633 StkId ra) {
658 StkId base = ci->u.l.base;
684 StkId top = L->top - 1; /* top when 'luaT_trybinTM' was called *
    [all...]
ldebug.c 65 StkId temp = ci->func; /* exchange its 'func' and 'extra' values */
134 static const char *findvararg (CallInfo *ci, int n, StkId *pos) {
146 StkId *pos) {
148 StkId base;
160 StkId limit = (ci == L->ci) ? L->top : ci->next->func;
182 StkId pos = NULL; /* to avoid warnings */
196 StkId pos = NULL; /* to avoid warnings */
313 StkId func;
642 StkId errfunc = restorestack(L, L->errfunc);
lfunc.c 57 UpVal *luaF_findupval (lua_State *L, StkId level) {
83 void luaF_close (lua_State *L, StkId level) {
lobject.h 294 typedef TValue *StkId; /* index to stack elements */
541 LUAI_FUNC void luaO_tostring (lua_State *L, StkId obj);

Completed in 620 milliseconds

1 2