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

/vbox/src/VBox/Runtime/common/vfs/
H A Dvfsmemory.cpp386 uint32_t cbNextExtent = pThis->cbExtent; local
387 if (RT_IS_POWER_OF_TWO(cbNextExtent))
388 cbNextExtent *= 2;
392 cbNextExtent = _4K;
393 while (cbNextExtent < pThis->cbExtent)
394 cbNextExtent *= 2;
396 if (((pThis->Base.ObjInfo.cbAllocated + cbNextExtent) & (cbNextExtent - 1)) == 0)
397 pThis->cbExtent = cbNextExtent;

Completed in 51 milliseconds