Searched defs:RTENV_GROW_SIZE (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/generic/
H A Denv-generic.cpp60 #define RTENV_GROW_SIZE 16 macro
150 pIntEnv->cAllocated = RT_ALIGN_Z(RT_MAX(cAllocated, RTENV_GROW_SIZE), RTENV_GROW_SIZE);
168 return rtEnvCreate(pEnv, RTENV_GROW_SIZE, false /*fCaseSensitive*/);
435 void *pvNew = RTMemRealloc(pIntEnv->papszEnv, sizeof(char *) * (pIntEnv->cAllocated + RTENV_GROW_SIZE));
441 pIntEnv->cAllocated += RTENV_GROW_SIZE;

Completed in 44 milliseconds