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

  /external/chromium_org/base/
atomicops.h 49 // We need to be able to go between Atomic64 and AtomicWord implicitly. This
50 // means Atomic64 and AtomicWord should be the same type on 64-bit.
60 // Use AtomicWord for a machine-sized pointer. It will use the Atomic32 or
62 typedef intptr_t AtomicWord;
163 // AtomicWord compatible with our other Atomic* types.
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
atomicops.h 67 // We need to be able to go between Atomic64 and AtomicWord implicitly. This
68 // means Atomic64 and AtomicWord should be the same type on 64-bit.
78 // Use AtomicWord for a machine-sized pointer. It will use the Atomic32 or
80 typedef intptr_t AtomicWord;
201 // On some platforms we need additional declarations to make AtomicWord
  /external/chromium_org/v8/src/base/
atomicops.h 46 // We need to be able to go between Atomic64 and AtomicWord implicitly. This
47 // means Atomic64 and AtomicWord should be the same type on 64-bit.
55 // Use AtomicWord for a machine-sized pointer. It will use the Atomic32 or
57 typedef intptr_t AtomicWord;
158 // AtomicWord compatible with our other Atomic* types.
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
atomicops.h 114 typedef intptr_t AtomicWord;
119 // cast AtomicWord to one of the basic atomic types (Atomic64 or Atomic32).
120 // It also serves to document the AtomicWord interface.
136 inline AtomicWord NoBarrier_CompareAndSwap(volatile AtomicWord* ptr,
137 AtomicWord old_value,
138 AtomicWord new_value) {
146 inline AtomicWord NoBarrier_AtomicExchange(volatile AtomicWord* ptr,
147 AtomicWord new_value)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
atomicops.h 114 typedef intptr_t AtomicWord;
119 // cast AtomicWord to one of the basic atomic types (Atomic64 or Atomic32).
120 // It also serves to document the AtomicWord interface.
136 inline AtomicWord NoBarrier_CompareAndSwap(volatile AtomicWord* ptr,
137 AtomicWord old_value,
138 AtomicWord new_value) {
146 inline AtomicWord NoBarrier_AtomicExchange(volatile AtomicWord* ptr,
147 AtomicWord new_value)
    [all...]

Completed in 546 milliseconds