OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isCopySafe
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/audio/
ReverbInputBuffer.cpp
46
bool
isCopySafe
= m_writeIndex + numberOfFrames <= bufferLength;
47
ASSERT(
isCopySafe
);
48
if (!
isCopySafe
)
ReverbAccumulationBuffer.cpp
51
bool
isCopySafe
= m_readIndex <= bufferLength && numberOfFrames <= bufferLength;
53
ASSERT(
isCopySafe
);
54
if (!
isCopySafe
)
Reverb.cpp
179
bool
isCopySafe
= destinationChannelL->data() && destinationChannelR->data() && destinationChannelL->length() >= framesToProcess && destinationChannelR->length() >= framesToProcess;
180
ASSERT(
isCopySafe
);
181
if (!
isCopySafe
)
Completed in 348 milliseconds