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

  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadSafeRefCounted.h 52 atomicIncrement(&m_refCount);
Atomics.h 66 ALWAYS_INLINE int atomicIncrement(int volatile* addend) { return InterlockedIncrement(reinterpret_cast<long volatile*>(addend)); }
69 ALWAYS_INLINE int64_t atomicIncrement(int64_t volatile* addend) { return InterlockedIncrement64(reinterpret_cast<long long volatile*>(addend)); }
92 ALWAYS_INLINE int atomicIncrement(int volatile* addend) { return atomicAdd(addend, 1); }
95 ALWAYS_INLINE int64_t atomicIncrement(int64_t volatile* addend) { return __sync_add_and_fetch(addend, 1); }
237 using WTF::atomicIncrement;
RefCountedLeakCounter.cpp 86 atomicIncrement(&m_count);
HashTable.h 44 atomicIncrement(&HashTableStats::numAccesses); \
53 atomicIncrement(&HashTableStats::numAccesses); \
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scheduler/
TracedTask.cpp 32 // atomicIncrement is slow so we only do it if tracing is enabled
33 m_flowTraceID = static_cast<uint64_t>(atomicIncrement(&s_nextFlowTraceID));
Scheduler.cpp 155 atomicIncrement(&m_highPriorityTaskCount);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentation.h 97 inline void frontendCreated() { atomicIncrement(&FrontendCounter::s_frontendCounter); }
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNode.cpp 486 atomicIncrement(&m_connectionRefCount);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.cpp 110 return atomicIncrement(&currentTransactionId);
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
ThreadState.cpp 221 if (atomicIncrement(&m_unparkedThreadCount) > 0)
234 atomicIncrement(&m_unparkedThreadCount);
    [all...]
HeapTest.cpp 494 atomicIncrement(&m_gcCount);
538 atomicIncrement(&m_gcCount);
    [all...]

Completed in 372 milliseconds