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

  /external/chromium/base/
atomicops.h 44 // We need to be able to go between Atomic64 and AtomicWord implicitly. This
45 // means Atomic64 and AtomicWord should be the same type on 64-bit.
49 typedef int64_t Atomic64;
51 typedef intptr_t Atomic64;
56 // Atomic64 routines below, depending on your architecture.
111 Atomic64 NoBarrier_CompareAndSwap(volatile Atomic64* ptr,
112 Atomic64 old_value,
113 Atomic64 new_value);
114 Atomic64 NoBarrier_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value)
    [all...]
  /external/v8/src/
atomicops.h 59 // We need to be able to go between Atomic64 and AtomicWord implicitly. This
60 // means Atomic64 and AtomicWord should be the same type on 64-bit.
64 typedef int64_t Atomic64;
66 typedef intptr_t Atomic64;
71 // Atomic64 routines below, depending on your architecture.
126 Atomic64 NoBarrier_CompareAndSwap(volatile Atomic64* ptr,
127 Atomic64 old_value,
128 Atomic64 new_value);
129 Atomic64 NoBarrier_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value)
    [all...]

Completed in 17 milliseconds