Searched refs:oldsize (Results 1 – 10 of 10) sorted by relevance
/civetweb-2.7.6/src/third_party/lua-5.1.5/src/ |
D | lparser.c | 146 int oldsize = f->sizelocvars; in registerlocalvar() local 149 while (oldsize < f->sizelocvars) f->locvars[oldsize++].varname = NULL; in registerlocalvar() 186 int oldsize = f->sizeupvalues; in indexupvalue() local 197 while (oldsize < f->sizeupvalues) f->upvalues[oldsize++] = NULL; in indexupvalue() 313 int oldsize = f->sizep; in pushclosure() local 317 while (oldsize < f->sizep) f->p[oldsize++] = NULL; in pushclosure()
|
D | lmem.h | 41 LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
|
D | lcode.c | 233 int oldsize = f->sizek; in addk() local 242 while (oldsize < f->sizek) setnilvalue(&f->k[oldsize++]); in addk()
|
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/ |
D | lparser.c | 168 int oldsize = f->sizelocvars; in registerlocalvar() local 171 while (oldsize < f->sizelocvars) f->locvars[oldsize++].varname = NULL; in registerlocalvar() 233 int oldsize = f->sizeupvalues; in newupvalue() local 237 while (oldsize < f->sizeupvalues) f->upvalues[oldsize++].name = NULL; in newupvalue() 504 int oldsize = f->sizep; in addprototype() local 506 while (oldsize < f->sizep) f->p[oldsize++] = NULL; in addprototype()
|
D | lmem.h | 50 LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
|
D | lcode.c | 295 int k, oldsize; in addk() local 305 oldsize = f->sizek; in addk() 311 while (oldsize < f->sizek) setnilvalue(&f->k[oldsize++]); in addk()
|
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/ |
D | lparser.c | 164 int oldsize = f->sizelocvars; in registerlocalvar() local 167 while (oldsize < f->sizelocvars) in registerlocalvar() 168 f->locvars[oldsize++].varname = NULL; in registerlocalvar() 230 int oldsize = f->sizeupvalues; in newupvalue() local 234 while (oldsize < f->sizeupvalues) in newupvalue() 235 f->upvalues[oldsize++].name = NULL; in newupvalue() 505 int oldsize = f->sizep; in addprototype() local 507 while (oldsize < f->sizep) in addprototype() 508 f->p[oldsize++] = NULL; in addprototype()
|
D | lmem.h | 62 LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
|
D | lcode.c | 432 int k, oldsize; in addk() local 441 oldsize = f->sizek; in addk() 447 while (oldsize < f->sizek) setnilvalue(&f->k[oldsize++]); in addk()
|
/civetweb-2.7.6/src/ |
D | civetweb.c | 1420 uintptr_t oldsize; in mg_realloc_ex() local 1434 oldsize = ((uintptr_t *)data)[0]; in mg_realloc_ex() 1439 mg_atomic_add(&mstat->totalMemUsed, -(int64_t)oldsize); in mg_realloc_ex() 1444 (unsigned long)oldsize, in mg_realloc_ex()
|