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

  /external/llvm/include/llvm/ADT/
Statistic.h 80 Value.fetch_sub(1, std::memory_order_relaxed);
86 return Value.fetch_sub(1, std::memory_order_relaxed);
99 Value.fetch_sub(V, std::memory_order_relaxed);
  /external/skia/include/private/
SkSemaphore.h 81 if (fCount.fetch_sub(1, std::memory_order_acquire) <= 0) {
SkAtomics.h 79 T fetch_sub(const T& val, sk_memory_order mo = default_memory_order) { function in class:SkAtomic
  /system/core/libutils/include/utils/
LightRefBase.h 40 if (mCount.fetch_sub(1, std::memory_order_release) == 1) {
  /frameworks/native/opengl/libagl/
BufferObjectManager.h 76 if (mCount.fetch_sub(1, std::memory_order_release) == 0) {
egl.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
atomic_base.h 396 { return fetch_sub(1); }
400 { return fetch_sub(1); }
622 fetch_sub(__int_type __i,
627 fetch_sub(__int_type __i,
719 { return fetch_sub(1); }
723 { return fetch_sub(1); }
873 fetch_sub(ptrdiff_t __d,
878 fetch_sub(ptrdiff_t __d,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
atomic_base.h 396 { return fetch_sub(1); }
400 { return fetch_sub(1); }
622 fetch_sub(__int_type __i,
627 fetch_sub(__int_type __i,
719 { return fetch_sub(1); }
723 { return fetch_sub(1); }
873 fetch_sub(ptrdiff_t __d,
878 fetch_sub(ptrdiff_t __d,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
atomic_base.h 396 { return fetch_sub(1); }
400 { return fetch_sub(1); }
622 fetch_sub(__int_type __i,
627 fetch_sub(__int_type __i,
719 { return fetch_sub(1); }
723 { return fetch_sub(1); }
873 fetch_sub(ptrdiff_t __d,
878 fetch_sub(ptrdiff_t __d,
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
atomic_base.h 400 { return fetch_sub(1); }
404 { return fetch_sub(1); }
626 fetch_sub(__int_type __i,
631 fetch_sub(__int_type __i,
723 { return fetch_sub(1); }
727 { return fetch_sub(1); }
877 fetch_sub(ptrdiff_t __d,
882 fetch_sub(ptrdiff_t __d,
  /system/core/libutils/
SharedBuffer.cpp 127 int32_t prevRefCount = mRefs.fetch_sub(1, std::memory_order_release);
RefBase.cpp 413 int32_t old = refs->mStrong.fetch_sub(INITIAL_STRONG_VALUE,
424 const int32_t c = refs->mStrong.fetch_sub(1, std::memory_order_release);
465 refs->mStrong.fetch_sub(INITIAL_STRONG_VALUE,
498 const int32_t c = impl->mWeak.fetch_sub(1, std::memory_order_release);
625 impl->mStrong.fetch_sub(INITIAL_STRONG_VALUE,
  /art/runtime/
atomic.h 295 return this->fetch_sub(value, std::memory_order_seq_cst); // Return old value.
299 return this->fetch_sub(value, std::memory_order_relaxed); // Return old value.
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
atomic_base.h 403 { return fetch_sub(1); }
407 { return fetch_sub(1); }
629 fetch_sub(__int_type __i,
634 fetch_sub(__int_type __i,
726 { return fetch_sub(1); }
730 { return fetch_sub(1); }
880 fetch_sub(ptrdiff_t __d,
885 fetch_sub(ptrdiff_t __d,
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
atomic_base.h 403 { return fetch_sub(1); }
407 { return fetch_sub(1); }
629 fetch_sub(__int_type __i,
634 fetch_sub(__int_type __i,
726 { return fetch_sub(1); }
730 { return fetch_sub(1); }
880 fetch_sub(ptrdiff_t __d,
885 fetch_sub(ptrdiff_t __d,
  /frameworks/native/opengl/libs/EGL/
egl_object.h 55 inline size_t decRef() { return count.fetch_sub(1, std::memory_order_acq_rel); }
  /system/core/libpixelflinger/codeflinger/
CodeCache.cpp 123 if (mCount.fetch_sub(1, std::memory_order_acq_rel) == 1) {
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDeviceThreadPool.h 38 unsigned int v = state_.fetch_sub(2, std::memory_order_acq_rel) - 2;
TensorContractionThreadPool.h 541 Index s = state_packing_ready_[k % P].fetch_sub(1);
552 if (s != 1 && state->fetch_sub(1) != 1) return;
561 Index s = state_switch_[k % P].fetch_sub(v);
    [all...]
  /external/icu/icu4c/source/common/
umutex.h 75 return var->fetch_sub(1) - 1;
  /external/skia/src/core/
SkSharedMutex.cpp 343 int32_t oldQueueCounts = fQueueCounts.fetch_sub(1 << kSharedOffset,
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors_mac.cc 87 OSATOMIC_INTERCEPTORS_ARITHMETIC(OSAtomicDecrement, fetch_sub,
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/core_validation/
core_validation.cpp     [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
core_validation.cpp     [all...]
  /external/vulkan-validation-layers/layers/
core_validation.cpp     [all...]

Completed in 2402 milliseconds