Lines Matching refs:ncl
637 LClosure *ncl = luaF_newLclosure(L, nup);
638 ncl->p = p;
639 setclLvalue(L, ra, ncl); /* anchor new closure in stack */
642 ncl->upvals[i] = luaF_findupval(L, base + uv[i].idx);
644 ncl->upvals[i] = encup[uv[i].idx];
645 ncl->upvals[i]->refcount++;
649 p->cache = ncl; /* save it on cache for reuse */
1287 LClosure *ncl = getcached(p, cl->upvals, base); /* cached closure */
1288 if (ncl == NULL) /* no match? */
1291 setclLvalue(L, ra, ncl); /* push cashed closure */