Searched refs:writeIndex (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/Modules/webaudio/
H A DAudioParamTimeline.cpp170 unsigned writeIndex = 0; local
179 for (; writeIndex < fillToFrame; ++writeIndex)
180 values[writeIndex] = defaultValue;
192 for (int i = 0; i < n && writeIndex < numberOfValues; ++i) {
217 for (; writeIndex < fillToFrame; ++writeIndex) {
220 values[writeIndex] = value;
226 for (; writeIndex < fillToFrame; ++writeIndex)
[all...]
H A DRealtimeAnalyser.cpp167 unsigned writeIndex = m_writeIndex; local
168 if (writeIndex < fftSize) {
169 memcpy(tempP, inputBuffer + writeIndex - fftSize + InputBufferSize, sizeof(*tempP) * (fftSize - writeIndex));
170 memcpy(tempP + fftSize - writeIndex, inputBuffer, sizeof(*tempP) * writeIndex);
172 memcpy(tempP, inputBuffer + writeIndex - fftSize, sizeof(*tempP) * fftSize);
285 unsigned writeIndex = m_writeIndex; local
289 float value = inputBuffer[(i + writeIndex - fftSize + InputBufferSize) % InputBufferSize];
H A DAudioBufferSourceNode.cpp199 unsigned writeIndex = destinationFrameOffset; local
264 memcpy(destinationChannels[i] + writeIndex, sourceChannels[i] + readIndex, sizeof(float) * framesThisTime);
266 writeIndex += framesThisTime;
273 if (renderSilenceAndFinishIfNotLooping(bus, writeIndex, framesToProcess))
307 destination[writeIndex] = narrowPrecisionToFloat(sample);
309 writeIndex++;
316 if (renderSilenceAndFinishIfNotLooping(bus, writeIndex, framesToProcess))
/macosx-10.10/WebCore-7600.1.25/platform/audio/
H A DReverbAccumulationBuffer.cpp85 size_t writeIndex = (*readIndex + delayFrames) % bufferLength; local
90 size_t framesAvailable = bufferLength - writeIndex;
96 bool isSafe = writeIndex <= bufferLength && numberOfFrames1 + writeIndex <= bufferLength && numberOfFrames2 <= bufferLength;
101 vadd(source, 1, destination + writeIndex, 1, destination + writeIndex, 1, numberOfFrames1);
107 return writeIndex;
H A DReverbInputBuffer.h47 size_t writeIndex() const { return m_writeIndex; } function in class:WebCore::ReverbInputBuffer
H A DReverbConvolver.cpp164 int writeIndex = m_inputBuffer.writeIndex(); local
170 while ((readIndex = m_backgroundStages[0]->inputReadIndex()) != writeIndex) { // FIXME: do better to detect buffer overrun...
/macosx-10.10/ICU-531.30/icuSources/common/
H A Duts46.cpp606 int32_t readIndex=mappingStart, writeIndex=mappingStart; local
613 s[writeIndex++]=0x73; // Replace sharp s with first s.
615 if(writeIndex==readIndex) {
625 u_memmove(s+writeIndex+1, s+writeIndex, length-writeIndex);
628 s[writeIndex++]=0x73;
633 s[writeIndex++]=0x3c3;
641 // Only really necessary if writeIndex was different from readIndex.
642 s[writeIndex
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_filedb/
H A DDbIndex.h179 uint32 writeIndex(WriteSection &ws, uint32 offset);
H A DDbIndex.cpp439 DbMutableIndex::writeIndex(WriteSection &ws, uint32 offset) function in class:DbMutableIndex
H A DAppleDatabase.cpp552 offset = it->second->writeIndex(tableSection, offset);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_filedb/lib/
H A DDbIndex.h179 uint32 writeIndex(WriteSection &ws, uint32 offset);
H A DDbIndex.cpp439 DbMutableIndex::writeIndex(WriteSection &ws, uint32 offset) function in class:DbMutableIndex
H A DAppleDatabase.cpp552 offset = it->second->writeIndex(tableSection, offset);

Completed in 218 milliseconds