Home
last modified time | relevance | path

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

/haiku/src/apps/cortex/addons/common/
H A DRawBuffer.cpp253 uint32 targetChunk = targetSize - targetOffset; in rawCopyTo() local
255 if(targetChunk > remaining) in rawCopyTo()
256 targetChunk = remaining; in rawCopyTo()
259 while(targetChunk > 0) { in rawCopyTo()
263 if(sourceChunk > targetChunk) in rawCopyTo()
264 sourceChunk = targetChunk; in rawCopyTo()
282 targetChunk -= sourceChunk; in rawCopyTo()