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

/vbox/src/VBox/Devices/Network/
H A DSrvIntNetR0.cpp212 uint8_t cEntriesAlloc; member in struct:INTNETADDRCACHE
1271 if (RT_UNLIKELY(!pCache->cEntriesAlloc))
1279 if (pCache->cEntries >= pCache->cEntriesAlloc)
1285 Assert(pCache->cEntries < pCache->cEntriesAlloc);
1313 Assert(pCache->cEntries <= pCache->cEntriesAlloc);
1389 pCache->cEntriesAlloc = 0;
1412 pCache->cEntriesAlloc = 32;
1413 pCache->pbEntries = (uint8_t *)RTMemAllocZ(pCache->cEntriesAlloc * pCache->cbEntry);
1419 pCache->cEntriesAlloc = 0;
/vbox/src/VBox/Storage/
H A DVD.cpp5790 * @param cEntriesAlloc Number of list entries available.
5794 VBOXDDU_DECL(int) VDBackendInfo(unsigned cEntriesAlloc, PVDBACKENDINFO pEntries, argument
5801 LogFlowFunc(("cEntriesAlloc=%u pEntries=%#p pcEntriesUsed=%#p\n", cEntriesAlloc, pEntries, pcEntriesUsed));
5803 AssertMsgReturn(cEntriesAlloc,
5804 ("cEntriesAlloc=%u\n", cEntriesAlloc),
5815 if (cEntriesAlloc < g_cBackends)
5877 * @param cEntriesAlloc Number of list entries available.
5881 VBOXDDU_DECL(int) VDFilterInfo(unsigned cEntriesAlloc, PVDFILTERINF argument
[all...]

Completed in 59 milliseconds