Searched refs:upvalues (Results 1 – 10 of 10) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lundump.c | 139 f->upvalues=luaM_newvector(S->L,n,Upvaldesc); in LoadUpvalues() 141 for (i=0; i<n; i++) f->upvalues[i].name=NULL; in LoadUpvalues() 144 f->upvalues[i].instack=LoadByte(S); in LoadUpvalues() 145 f->upvalues[i].idx=LoadByte(S); in LoadUpvalues() 168 for (i=0; i<n; i++) f->upvalues[i].name=LoadString(S); in LoadDebug()
|
D | ldump.c | 115 DumpChar(f->upvalues[i].instack,D); in DumpUpvalues() 116 DumpChar(f->upvalues[i].idx,D); in DumpUpvalues() 136 for (i=0; i<n; i++) DumpString(f->upvalues[i].name,D); in DumpDebug()
|
D | luac.c | 149 if (f->p[i]->sizeupvalues>0) f->p[i]->upvalues[0].instack=0; in combine() 274 #define UPVALNAME(x) ((f->upvalues[x].name) ? getstr(f->upvalues[x].name) : "-") 421 i,UPVALNAME(i),f->upvalues[i].instack,f->upvalues[i].idx); in PrintDebug()
|
D | lfunc.c | 121 f->upvalues = NULL; in luaF_newproto() 141 luaM_freearray(L, f->upvalues, f->sizeupvalues); in luaF_freeproto()
|
D | lparser.c | 223 Upvaldesc *up = fs->f->upvalues; in searchupvalue() 235 luaM_growvector(fs->ls->L, f->upvalues, fs->nups, f->sizeupvalues, in newupvalue() 237 while (oldsize < f->sizeupvalues) f->upvalues[oldsize++].name = NULL; in newupvalue() 238 f->upvalues[fs->nups].instack = (v->k == VLOCAL); in newupvalue() 239 f->upvalues[fs->nups].idx = cast_byte(v->u.info); in newupvalue() 240 f->upvalues[fs->nups].name = name; in newupvalue() 571 luaM_reallocvector(L, f->upvalues, f->sizeupvalues, fs->nups, Upvaldesc); in close_func()
|
D | lvm.c | 383 Upvaldesc *uv = p->upvalues; in getcached() 404 Upvaldesc *uv = p->upvalues; in pushclosure()
|
D | lobject.h | 474 Upvaldesc *upvalues; /* upvalue information */ member
|
D | ldebug.c | 101 TString *s = check_exp(uv < p->sizeupvalues, p->upvalues[uv].name); in upvalname()
|
D | lgc.c | 465 markobject(g, f->upvalues[i].name); in traverseproto()
|
D | lapi.c | 1208 name = p->upvalues[n-1].name; in aux_upvalue()
|