Searched refs:nups (Results 1 – 5 of 5) sorted by relevance
/external/lua/src/ |
D | lparser.h | 158 lu_byte nups; /* number of upvalues */ member
|
D | lparser.c | 345 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()
|
D | ldblib.c | 180 settabsi(L, "nups", ar.nups); in db_getinfo()
|
D | lua.h | 479 unsigned char nups; /* (u) number of upvalues */ member
|
D | ldebug.c | 344 ar->nups = (f == NULL) ? 0 : f->c.nupvalues; in auxgetinfo()
|