Home
last modified time | relevance | path

Searched refs:nBytesToAdd (Results 1 – 1 of 1) sorted by relevance

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DAPECompress.cpp209 int nBytesToAdd = nBytesAvailable; in AddDataFromInputSource() local
213 if (nBytesToAdd > nMaxBytes) nBytesToAdd = nMaxBytes; in AddDataFromInputSource()
216 if (nBytesToAdd > nIdealBytes) nBytesToAdd = nIdealBytes; in AddDataFromInputSource()
219 while ((nBytesToAdd % m_wfeInput.nBlockAlign) != 0) in AddDataFromInputSource()
220 nBytesToAdd--; in AddDataFromInputSource()
222 int nBlocksToAdd = nBytesToAdd / m_wfeInput.nBlockAlign; in AddDataFromInputSource()