HomeSort by relevance Sort by last modified time
    Searched refs:Acquire_Load (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/libchrome/base/memory/
singleton.cc 24 value = subtle::Acquire_Load(instance);
  /external/v8/src/base/
once.cc 19 AtomicWord state = Acquire_Load(once);
48 state = Acquire_Load(once);
once.h 87 if (Acquire_Load(once) != ONCE_STATE_DONE) {
96 if (Acquire_Load(once) != ONCE_STATE_DONE) {
atomicops_internals_atomicword_compat.h 80 inline AtomicWord Acquire_Load(volatile const AtomicWord* ptr) {
81 return v8::base::Acquire_Load(
  /external/libchrome/base/
atomic_ref_count.h 52 bool res = (subtle::Acquire_Load(ptr) == 1);
60 bool res = (subtle::Acquire_Load(ptr) == 0);
lazy_instance.cc 32 while (subtle::Acquire_Load(state) == kLazyInstanceStateCreating) {
44 // Releases visibility over private_buf_ to readers. Pairing Acquire_Load's
atomicops.h 118 Atomic32 Acquire_Load(volatile const Atomic32* ptr);
140 Atomic64 Acquire_Load(volatile const Atomic64* ptr);
atomicops_internals_atomicword_compat.h 89 inline AtomicWord Acquire_Load(volatile const AtomicWord* ptr) {
90 return base::subtle::Acquire_Load(
  /external/protobuf/src/google/protobuf/stubs/
once.cc 66 internal::AtomicWord state = internal::Acquire_Load(once);
91 state = internal::Acquire_Load(once);
once.h 126 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
135 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
atomicops_internals_atomicword_compat.h 108 inline AtomicWord Acquire_Load(volatile const AtomicWord* ptr) {
109 return Acquire_Load(reinterpret_cast<volatile const Atomic32*>(ptr));
  /external/libchrome/base/synchronization/
cancellation_flag.cc 19 return base::subtle::Acquire_Load(&flag_) != 0;
  /external/libmojo/mojo/edk/system/
atomic_flag.h 43 return base::subtle::Acquire_Load(&flag_) ? true : false;
  /external/v8/src/profiler/
unbound-queue-inl.h 47 if (divider_ == base::Acquire_Load(&last_)) return false;
61 while (first_ != reinterpret_cast<Node*>(base::Acquire_Load(&divider_))) {
75 if (divider_ == base::Acquire_Load(&last_)) return NULL;
circular-queue-inl.h 28 if (base::Acquire_Load(&dequeue_pos_->marker) == kFull) {
45 if (base::Acquire_Load(&enqueue_pos_->marker) == kEmpty) {
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_pnacl.h 63 inline Atomic32 Acquire_Load(volatile const Atomic32* ptr) {
once.h 125 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
134 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_pnacl.h 63 inline Atomic32 Acquire_Load(volatile const Atomic32* ptr) {
once.h 125 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
134 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_pnacl.h 63 inline Atomic32 Acquire_Load(volatile const Atomic32* ptr) {
once.h 125 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
134 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
atomicops_internals_pnacl.h 63 inline Atomic32 Acquire_Load(volatile const Atomic32* ptr) {
once.h 125 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
134 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
once.h 126 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
135 if (internal::Acquire_Load(once) != ONCE_STATE_DONE) {
  /external/libchrome/base/trace_event/
heap_profiler_allocation_context_tracker.h 50 return static_cast<CaptureMode>(subtle::Acquire_Load(&capture_mode_));

Completed in 461 milliseconds

1 2 3 4 5