Home
last modified time | relevance | path

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

/external/lua/src/
Dlparser.h158 lu_byte nups; /* number of upvalues */ member
Dlparser.c345 for (i = 0; i < fs->nups; i++) { in searchupvalue()
355 checklimit(fs, fs->nups + 1, MAXUPVAL, "upvalues"); in allocupvalue()
356 luaM_growvector(fs->ls->L, f->upvalues, fs->nups, f->sizeupvalues, in allocupvalue()
360 return &f->upvalues[fs->nups++]; in allocupvalue()
381 return fs->nups - 1; in newupvalue()
732 fs->nups = 0; in open_func()
761 luaM_shrinkvector(L, f->upvalues, f->sizeupvalues, fs->nups, Upvaldesc); in close_func()
1990 lua_assert(!funcstate.prev && funcstate.nups == 1 && !lexstate.fs); in luaY_parser()
Dldblib.c180 settabsi(L, "nups", ar.nups); in db_getinfo()
Dlua.h479 unsigned char nups; /* (u) number of upvalues */ member
Dldebug.c344 ar->nups = (f == NULL) ? 0 : f->c.nupvalues; in auxgetinfo()