Searched refs:sizek (Results 1 – 8 of 8) sorted by relevance
/external/lua/src/ |
D | lfunc.c | 250 f->sizek = 0; in luaF_newproto() 276 luaM_freearray(L, f->k, f->sizek); in luaF_freeproto()
|
D | ldump.c | 110 int n = f->sizek; in dumpConstants()
|
D | luac.c | 686 S(f->sizelocvars),S(f->sizek),S(f->sizep)); in PrintHeader() 692 n=f->sizek; in PrintDebug()
|
D | lundump.c | 159 f->sizek = n; in loadConstants()
|
D | lcode.c | 562 oldsize = f->sizek; in addk() 567 luaM_growvector(L, f->k, k, f->sizek, TValue, MAXARG_Ax, "constants"); in addk() 568 while (oldsize < f->sizek) setnilvalue(&f->k[oldsize++]); in addk()
|
D | lobject.h | 534 int sizek; /* size of 'k' */ member
|
D | lgc.c | 576 for (i = 0; i < f->sizek; i++) /* mark literals */ in traverseproto() 584 return 1 + f->sizek + f->sizeupvalues + f->sizep + f->sizelocvars; in traverseproto()
|
D | lparser.c | 758 luaM_shrinkvector(L, f->k, f->sizek, fs->nk, TValue); in close_func()
|