Home
last modified time | relevance | path

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

/haiku/src/apps/cortex/addons/common/
H A DRawBuffer.cpp232 uint32 targetOffset = *pioTargetFrame * m_frameSize; in rawCopyTo() local
244 if(toCopy > (targetSize-targetOffset)) in rawCopyTo()
245 toCopy = (targetSize-targetOffset); in rawCopyTo()
253 uint32 targetChunk = targetSize - targetOffset; in rawCopyTo()
268 (int8*)target.m_pData + targetOffset, in rawCopyTo()
273 targetOffset += sourceChunk; in rawCopyTo()
274 if(targetOffset == targetSize) in rawCopyTo()
275 targetOffset = 0; in rawCopyTo()
289 *pioTargetFrame = targetOffset / m_frameSize; in rawCopyTo()
300 uint32 targetOffset, in rawCopyTo() argument
[all …]
H A DAudioBuffer.cpp205 uint32 targetOffset = *pioTargetFrame * m_frameSize; in copyTo() local
216 if(toCopy > (targetSize-targetOffset)) in copyTo()
217 toCopy = (targetSize-targetOffset); in copyTo()
227 (void*) ((int8*)target.m_pData + targetOffset), in copyTo()
235 targetOffset += sampleSize; in copyTo()
236 if(targetOffset == targetSize) in copyTo()
237 targetOffset = 0; in copyTo()
242 *pioTargetFrame = targetOffset / m_frameSize; in copyTo()
/haiku/src/apps/mediaplayer/supplier/
H A DMediaTrackAudioSupplier.h48 void* target, int64 targetOffset,
51 int64 targetOffset, int64 position,
H A DMediaTrackAudioSupplier.cpp303 void* target, int64 targetOffset, in _CopyFrames() argument
310 target = (char*)target + frameSize * (position - targetOffset); in _CopyFrames()
322 void* target, int64 targetOffset, in _CopyFrames() argument
325 _CopyFrames(buffer->data, buffer->offset, target, targetOffset, position, in _CopyFrames()