Home
last modified time | relevance | path

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

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