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

  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
spinlock.h 54 SpinLock() : lockword_(kSpinLockFree) { }
73 if (base::subtle::Acquire_CompareAndSwap(&lockword_, kSpinLockFree,
74 kSpinLockHeld) != kSpinLockFree) {
86 (base::subtle::Acquire_CompareAndSwap(&lockword_, kSpinLockFree,
87 kSpinLockHeld) == kSpinLockFree);
101 base::subtle::Release_Store(&lockword_, kSpinLockFree);
114 return base::subtle::NoBarrier_Load(&lockword_) != kSpinLockFree;
119 enum { kSpinLockFree = 0 };
spinlock.cc 43 // kSpinLockFree represents the unlocked state
84 while (base::subtle::NoBarrier_Load(&lockword_) != kSpinLockFree && --c > 0) {
88 base::subtle::Acquire_CompareAndSwap(&lockword_, kSpinLockFree,
104 while (lock_value != kSpinLockFree) {
119 } else if (lock_value == kSpinLockFree) {
124 kSpinLockFree,
158 // unconditionally to guarantee the wait time is not kSpinLockFree or
177 // wait_cycles and lock value, so it can't be kSpinLockFree or
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
spinlock.h 54 SpinLock() : lockword_(kSpinLockFree) { }
73 if (base::subtle::Acquire_CompareAndSwap(&lockword_, kSpinLockFree,
74 kSpinLockHeld) != kSpinLockFree) {
86 (base::subtle::Acquire_CompareAndSwap(&lockword_, kSpinLockFree,
87 kSpinLockHeld) == kSpinLockFree);
101 base::subtle::Release_Store(&lockword_, kSpinLockFree);
114 return base::subtle::NoBarrier_Load(&lockword_) != kSpinLockFree;
119 enum { kSpinLockFree = 0 };
spinlock.cc 43 // kSpinLockFree represents the unlocked state
84 while (base::subtle::NoBarrier_Load(&lockword_) != kSpinLockFree && --c > 0) {
88 base::subtle::Acquire_CompareAndSwap(&lockword_, kSpinLockFree,
104 while (lock_value != kSpinLockFree) {
119 } else if (lock_value == kSpinLockFree) {
124 kSpinLockFree,
158 // unconditionally to guarantee the wait time is not kSpinLockFree or
177 // wait_cycles and lock value, so it can't be kSpinLockFree or

Completed in 30 milliseconds