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

  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadSafeRefCounted.h 70 if (atomicDecrement(&m_refCount) <= 0) {
Atomics.h 67 ALWAYS_INLINE int atomicDecrement(int volatile* addend) { return InterlockedDecrement(reinterpret_cast<long volatile*>(addend)); }
70 ALWAYS_INLINE int64_t atomicDecrement(int64_t volatile* addend) { return InterlockedDecrement64(reinterpret_cast<long long volatile*>(addend)); }
93 ALWAYS_INLINE int atomicDecrement(int volatile* addend) { return atomicSubtract(addend, 1); }
96 ALWAYS_INLINE int64_t atomicDecrement(int64_t volatile* addend) { return __sync_sub_and_fetch(addend, 1); }
236 using WTF::atomicDecrement;
RefCountedLeakCounter.cpp 91 atomicDecrement(&m_count);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentation.h 98 inline void frontendDeleted() { atomicDecrement(&FrontendCounter::s_frontendCounter); }
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNode.cpp 529 atomicDecrement(&m_connectionRefCount);
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
ThreadState.cpp 230 if (!atomicDecrement(&m_unparkedThreadCount))
254 if (!atomicDecrement(&m_unparkedThreadCount)) {
    [all...]
HeapTest.cpp 505 atomicDecrement(&m_threadsToFinish);
549 atomicDecrement(&m_threadsToFinish);
    [all...]

Completed in 222 milliseconds