Home
last modified time | relevance | path

Searched refs:nups (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlparser.h110 lu_byte nups; /* number of upvalues */ member
Dlparser.c224 for (i = 0; i < fs->nups; i++) { in searchupvalue()
234 checklimit(fs, fs->nups + 1, MAXUPVAL, "upvalues"); in newupvalue()
235 luaM_growvector(fs->ls->L, f->upvalues, fs->nups, f->sizeupvalues, 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()
242 return fs->nups++; in newupvalue()
539 fs->nups = 0; in open_func()
571 luaM_reallocvector(L, f->upvalues, f->sizeupvalues, fs->nups, Upvaldesc); in close_func()
572 f->sizeupvalues = fs->nups; in close_func()
[all …]
Dldblib.c144 settabsi(L, "nups", ar.nups); in db_getinfo()
234 luaL_argcheck(L, 1 <= nup && nup <= ar.nups, argnup, "invalid upvalue index"); in checkupval()
Dldebug.c229 ar->nups = (f == NULL) ? 0 : f->c.nupvalues; in auxgetinfo()
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlua.h408 unsigned char nups; /* (u) number of upvalues */ member