Searched refs:cTracks (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/Storage/
H A DATAPIPassthrough.cpp140 * @param cTracks Number of tracks the list must be able to hold.
143 static int atapiTrackListReallocate(PTRACKLIST pTrackList, unsigned cTracks, uint32_t fFlags) argument
150 if (pTrackList->cTracksMax < cTracks)
152 PTRACK paTracksNew = (PTRACK)RTMemRealloc(pTrackList->paTracks, cTracks * sizeof(TRACK));
158 for (unsigned i = pTrackList->cTracksMax; i < cTracks; i++)
161 pTrackList->cTracksMax = cTracks;
167 pTrackList->cTracksCurrent = cTracks;
275 unsigned cTracks = cbCueSheet / 8; local
277 AssertReturn(cbCueSheet % 8 == 0 && cTracks, VERR_INVALID_PARAMETER);
279 rc = atapiTrackListReallocate(pTrackList, cTracks,
318 unsigned cTracks; local
[all...]

Completed in 43 milliseconds