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

/vbox/include/iprt/
H A Dbignum.h84 uint32_t cAllocated; member in struct:RTBIGNUM
H A Dlockvalidator.h215 uint32_t volatile cAllocated; member in struct:RTLOCKVALRECSHRD
/vbox/src/VBox/Runtime/generic/
H A Denv-generic.cpp97 size_t cAllocated; member in struct:RTENVINTERNAL
131 * @param cAllocated The initial array size.
135 static int rtEnvCreate(PRTENVINTERNAL *ppIntEnv, size_t cAllocated, bool fCaseSensitive) argument
150 pIntEnv->cAllocated = RT_ALIGN_Z(RT_MAX(cAllocated, RTENV_GROW_SIZE), RTENV_GROW_SIZE);
151 pIntEnv->papszEnv = (char **)RTMemAllocZ(sizeof(pIntEnv->papszEnv[0]) * pIntEnv->cAllocated);
433 if (pIntEnv->cVars + 2 > pIntEnv->cAllocated)
435 void *pvNew = RTMemRealloc(pIntEnv->papszEnv, sizeof(char *) * (pIntEnv->cAllocated + RTENV_GROW_SIZE));
441 pIntEnv->cAllocated += RTENV_GROW_SIZE;
442 for (size_t iNewVar = pIntEnv->cVars; iNewVar < pIntEnv->cAllocated; iNewVa
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DCPUMR3CpuId.cpp584 uint32_t cAllocated; local
587 cAllocated = RT_ALIGN(cLeaves, 16);
588 if (cLeaves + 1 > cAllocated)
590 void *pvNew = RTMemRealloc(*ppaLeaves, (cAllocated + 16) * sizeof(**ppaLeaves));
/vbox/src/VBox/Runtime/common/misc/
H A Dlockvalidator.cpp2471 uint32_t cAllocated = pRec->cAllocated; local
2476 for (uint32_t i = 0; i < cAllocated; i++)
2669 uint32_t cAllocated = pRec->Shared.cAllocated; local
2671 while (++iEntry < cAllocated)
2778 if (iEntry + 1 < pRec->Shared.cAllocated)
3414 pRec->cAllocated = 0;
3491 ASMAtomicUoWriteU32(&pRec->cAllocated, 0);
3547 uint32_t const cMax = pShared->cAllocated;
3817 uint32_t cAllocated = pShared->cAllocated; local
[all...]

Completed in 92 milliseconds