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

  /external/chromium_org/third_party/skia/third_party/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;
479 StkId p;
519 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;
273 static StkId tryfuncTM (lua_State *L, StkId func) {
275 StkId p;
295 int luaD_precall (lua_State *L, StkId func, int nresults) {
325 StkId base;
355 int luaD_poscall (lua_State *L, StkId firstResult)
    [all...]
ltable.h 31 LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
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...]
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) {
lobject.h 402 typedef TValue *StkId; /* index to stack elements */
lgc.c 496 StkId o = th->stack;
502 StkId lim = th->stack + th->stacksize; /* real end of stack */
    [all...]

Completed in 998 milliseconds