HomeSort by relevance Sort by last modified time
    Searched refs:readIndex2 (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
OscillatorNode.cpp 294 unsigned readIndex2 = readIndex + 1;
298 readIndex2 = readIndex2 & readIndexMask;
308 float sample2Lower = lowerWaveData[readIndex2];
310 float sample2Higher = higherWaveData[readIndex2];
AudioBufferSourceNode.cpp 285 unsigned readIndex2 = readIndex + 1;
286 if (readIndex2 >= bufferLength) {
289 readIndex2 = static_cast<unsigned>(virtualReadIndex + 1 - virtualDeltaFrames);
291 readIndex2 = readIndex;
296 if (readIndex >= bufferLength || readIndex2 >= bufferLength)
305 double sample2 = source[readIndex2];
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioDelayDSPKernel.cpp 144 int readIndex2 = (readIndex1 + 1) % bufferLength;
152 double sample2 = buffer[readIndex2];

Completed in 83 milliseconds