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

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DAPEDecompress.cpp96 int nBlocksLeft = nBlocksToRetrieve; int nBlocksThisPass = 1; local
97 while ((nBlocksLeft > 0) && (nBlocksThisPass > 0))
106 nBlocksThisPass = min(nBlocksLeft, nFrameBufferBlocks);
113 nBlocksLeft -= nBlocksThisPass;
119 int nBlocksRetrieved = nBlocksToRetrieve - nBlocksLeft;
180 int nBlocksLeft = nMaxBlocks; local
181 while (nBlocksLeft > 0)
189 int nBlocksThisPass = min(nFrameBlocksLeft, nBlocksLeft);
226 nBlocksLeft -= nBlocksThisPass;
H A DAPESimple.cpp330 int nBlocksLeft = spAPEDecompress->GetInfo(APE_DECOMPRESS_TOTAL_BLOCKS); local
333 spMACProgressHelper.Assign(new CMACProgressHelper(nBlocksLeft / BLOCKS_PER_DECODE, pPercentageDone, ProgressCallback, pKillFlag));
336 while (nBlocksLeft > 0)
359 nBlocksLeft -= nBlocksDecoded;

Completed in 45 milliseconds