HomeSort by relevance Sort by last modified time
    Searched full:upvalues (Results 1 - 25 of 60) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ldump.c 115 DumpChar(f->upvalues[i].instack,D);
116 DumpChar(f->upvalues[i].idx,D);
136 for (i=0; i<n; i++) DumpString(f->upvalues[i].name,D);
lundump.c 139 f->upvalues=luaM_newvector(S->L,n,Upvaldesc);
141 for (i=0; i<n; i++) f->upvalues[i].name=NULL;
144 f->upvalues[i].instack=LoadByte(S);
145 f->upvalues[i].idx=LoadByte(S);
168 for (i=0; i<n; i++) f->upvalues[i].name=LoadString(S);
lparser.h 28 VUPVAL, /* info = index of upvalue in 'upvalues' */
110 lu_byte nups; /* number of upvalues */
lstate.h 27 ** Open upvalues are not subject to independent garbage collection. They
29 ** double-linked list with all open upvalues (g->uvhead) so that it can
137 UpVal uvhead; /* head of double-linked list of all open upvalues */
171 GCObject *openupval; /* list of open upvalues in this stack */
luac.c 149 if (f->p[i]->sizeupvalues>0) f->p[i]->upvalues[0].instack=0;
274 #define UPVALNAME(x) ((f->upvalues[x].name) ? getstr(f->upvalues[x].name) : "-")
417 printf("upvalues (%d) for %p:\n",n,VOID(f));
421 i,UPVALNAME(i),f->upvalues[i].instack,f->upvalues[i].idx);
lfunc.c 121 f->upvalues = NULL;
141 luaM_freearray(L, f->upvalues, f->sizeupvalues);
lobject.h 474 Upvaldesc *upvalues; /* upvalue information */ member in struct:Proto
477 int sizeupvalues; /* size of 'upvalues' */
494 ** Lua Upvalues
519 TValue upvalue[1]; /* list of upvalues */
526 UpVal *upvals[1]; /* list of upvalues */
lgc.c 192 lua_assert(!isblack(o)); /* open upvalues are never black */
238 ** mark an object. Userdata, strings, and closed upvalues are visited
241 ** upvalues are already linked in 'headuv' list.)
263 return; /* open upvalues remain gray */
321 ** mark all values stored in marked open upvalues. (See comment in
465 markobject(g, f->upvalues[i].name);
481 for (i = 0; i < cl->nupvalues; i++) /* mark its upvalues */
489 for (i = 0; i < cl->nupvalues; i++) /* mark its upvalues */
695 ** sweep the (open) upvalues of a thread and resize its stack and
700 sweepwholelist(L, &L1->openupval); /* sweep open upvalues */
    [all...]
  /external/skia/third_party/lua/src/
ldump.c 115 DumpChar(f->upvalues[i].instack,D);
116 DumpChar(f->upvalues[i].idx,D);
136 for (i=0; i<n; i++) DumpString(f->upvalues[i].name,D);
lparser.h 28 VUPVAL, /* info = index of upvalue in 'upvalues' */
110 lu_byte nups; /* number of upvalues */
lundump.c 139 f->upvalues=luaM_newvector(S->L,n,Upvaldesc);
141 for (i=0; i<n; i++) f->upvalues[i].name=NULL;
144 f->upvalues[i].instack=LoadByte(S);
145 f->upvalues[i].idx=LoadByte(S);
168 for (i=0; i<n; i++) f->upvalues[i].name=LoadString(S);
lstate.h 27 ** Open upvalues are not subject to independent garbage collection. They
29 ** double-linked list with all open upvalues (g->uvhead) so that it can
137 UpVal uvhead; /* head of double-linked list of all open upvalues */
171 GCObject *openupval; /* list of open upvalues in this stack */
luac.c 149 if (f->p[i]->sizeupvalues>0) f->p[i]->upvalues[0].instack=0;
274 #define UPVALNAME(x) ((f->upvalues[x].name) ? getstr(f->upvalues[x].name) : "-")
417 printf("upvalues (%d) for %p:\n",n,VOID(f));
421 i,UPVALNAME(i),f->upvalues[i].instack,f->upvalues[i].idx);
lfunc.c 121 f->upvalues = NULL;
141 luaM_freearray(L, f->upvalues, f->sizeupvalues);
lobject.h 474 Upvaldesc *upvalues; /* upvalue information */ member in struct:Proto
477 int sizeupvalues; /* size of 'upvalues' */
494 ** Lua Upvalues
519 TValue upvalue[1]; /* list of upvalues */
526 UpVal *upvals[1]; /* list of upvalues */
lgc.c 192 lua_assert(!isblack(o)); /* open upvalues are never black */
238 ** mark an object. Userdata, strings, and closed upvalues are visited
241 ** upvalues are already linked in 'headuv' list.)
263 return; /* open upvalues remain gray */
321 ** mark all values stored in marked open upvalues. (See comment in
465 markobject(g, f->upvalues[i].name);
481 for (i = 0; i < cl->nupvalues; i++) /* mark its upvalues */
489 for (i = 0; i < cl->nupvalues; i++) /* mark its upvalues */
688 ** sweep the (open) upvalues of a thread and resize its stack and
693 sweepwholelist(L, &L1->openupval); /* sweep open upvalues */
    [all...]
  /external/syslinux/com32/lua/src/
ldump.c 115 DumpChar(f->upvalues[i].instack,D);
116 DumpChar(f->upvalues[i].idx,D);
136 for (i=0; i<n; i++) DumpString(f->upvalues[i].name,D);
lundump.c 139 f->upvalues=luaM_newvector(S->L,n,Upvaldesc);
141 for (i=0; i<n; i++) f->upvalues[i].name=NULL;
144 f->upvalues[i].instack=LoadByte(S);
145 f->upvalues[i].idx=LoadByte(S);
168 for (i=0; i<n; i++) f->upvalues[i].name=LoadString(S);
lparser.h 28 VUPVAL, /* info = index of upvalue in 'upvalues' */
110 lu_byte nups; /* number of upvalues */
lstate.h 27 ** Open upvalues are not subject to independent garbage collection. They
29 ** double-linked list with all open upvalues (g->uvhead) so that it can
137 UpVal uvhead; /* head of double-linked list of all open upvalues */
171 GCObject *openupval; /* list of open upvalues in this stack */
luac.c 149 if (f->p[i]->sizeupvalues>0) f->p[i]->upvalues[0].instack=0;
274 #define UPVALNAME(x) ((f->upvalues[x].name) ? getstr(f->upvalues[x].name) : "-")
417 printf("upvalues (%d) for %p:\n",n,VOID(f));
421 i,UPVALNAME(i),f->upvalues[i].instack,f->upvalues[i].idx);
lfunc.c 121 f->upvalues = NULL;
141 luaM_freearray(L, f->upvalues, f->sizeupvalues);
lobject.h 474 Upvaldesc *upvalues; /* upvalue information */ member in struct:Proto
477 int sizeupvalues; /* size of 'upvalues' */
494 ** Lua Upvalues
519 TValue upvalue[1]; /* list of upvalues */
526 UpVal *upvals[1]; /* list of upvalues */
lgc.c 192 lua_assert(!isblack(o)); /* open upvalues are never black */
238 ** mark an object. Userdata, strings, and closed upvalues are visited
241 ** upvalues are already linked in 'headuv' list.)
263 return; /* open upvalues remain gray */
321 ** mark all values stored in marked open upvalues. (See comment in
465 markobject(g, f->upvalues[i].name);
481 for (i = 0; i < cl->nupvalues; i++) /* mark its upvalues */
489 for (i = 0; i < cl->nupvalues; i++) /* mark its upvalues */
695 ** sweep the (open) upvalues of a thread and resize its stack and
700 sweepwholelist(L, &L1->openupval); /* sweep open upvalues */
    [all...]
  /packages/services/Car/tests/carservice_test/src/com/android/car/test/
CarProjectionManagerTest.java 125 int[] upValues = {VehicleHwKeyInputAction.ACTION_UP, KeyEvent.KEYCODE_VOICE_ASSIST, 0, 0 };
129 .addIntValue(upValues)

Completed in 1383 milliseconds

1 2 3