Home
last modified time | relevance | path

Searched refs:s_planLock (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/audio/fftw/
DFFTFrameFFTW.cpp45 Mutex* FFTFrame::s_planLock = 0; member in WebCore::FFTFrame
217 if (!s_planLock) in initialize()
218 s_planLock = new Mutex(); in initialize()
239 delete s_planLock; in cleanup()
240 s_planLock = 0; in cleanup()
262 ASSERT(s_planLock); in fftwPlanForSize()
263 if (!s_planLock) in fftwPlanForSize()
265 MutexLocker locker(*s_planLock); in fftwPlanForSize()
/external/webkit/Source/WebCore/platform/audio/
DFFTFrame.h142 static Mutex *s_planLock; variable