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

  /external/chromium_org/third_party/WebKit/Source/wtf/
Atomics.h 54 // atomicAdd returns the result of the addition.
55 ALWAYS_INLINE int atomicAdd(int volatile* addend, int increment)
87 // atomicAdd returns the result of the addition.
88 ALWAYS_INLINE int atomicAdd(int volatile* addend, int increment) { return __sync_add_and_fetch(addend, increment); }
92 ALWAYS_INLINE int atomicIncrement(int volatile* addend) { return atomicAdd(addend, 1); }
234 using WTF::atomicAdd;
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
ThreadState.cpp 140 atomicAdd(&m_unparkedThreadCount, threads.size());
    [all...]

Completed in 91 milliseconds