Searched refs:targetOffset (Results 1 - 4 of 4) sorted by last modified time

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

Completed in 66 milliseconds