Searched refs:isCopySafe (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/audio/
H A DReverbInputBuffer.cpp46 bool isCopySafe = m_writeIndex + numberOfFrames <= bufferLength; local
47 ASSERT(isCopySafe);
48 if (!isCopySafe)
H A DReverbAccumulationBuffer.cpp51 bool isCopySafe = m_readIndex <= bufferLength && numberOfFrames <= bufferLength; local
53 ASSERT(isCopySafe);
54 if (!isCopySafe)
H A DReverb.cpp170 bool isCopySafe = destinationChannelL->data() && destinationChannelR->data() && destinationChannelL->length() >= framesToProcess && destinationChannelR->length() >= framesToProcess; local
171 ASSERT(isCopySafe);
172 if (!isCopySafe)

Completed in 154 milliseconds