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

  /external/chromium/base/
atomicops.h 38 // Bug 1308991. We need this for /Wp64, to mark it safe for AtomicWord casting.
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.
55 // Use AtomicWord for a machine-sized pointer. It will use the Atomic32 or
57 typedef intptr_t AtomicWord;
151 // AtomicWord compatible with our other Atomic* types.
  /external/chromium_org/base/
atomicops.h 48 // We need to be able to go between Atomic64 and AtomicWord implicitly. This
49 // means Atomic64 and AtomicWord should be the same type on 64-bit.
59 // Use AtomicWord for a machine-sized pointer. It will use the Atomic32 or
61 typedef intptr_t AtomicWord;
159 // AtomicWord compatible with our other Atomic* types.
  /external/chromium_org/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.
70 // Use AtomicWord for a machine-sized pointer. It will use the Atomic32 or
73 typedef Atomic32 AtomicWord;
75 typedef intptr_t AtomicWord;
  /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.
70 // Use AtomicWord for a machine-sized pointer. It will use the Atomic32 or
72 typedef intptr_t AtomicWord;
platform.h 90 // Use AtomicWord for a machine-sized pointer. It is assumed that
92 typedef intptr_t AtomicWord;
300 static void ReleaseStore(volatile AtomicWord* ptr, AtomicWord value);
  /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;
195 // On some platforms we need additional declarations to make AtomicWord
  /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 107 milliseconds