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

1 2 3

  /art/runtime/base/
allocator.cc 22 #include "atomic.h"
28 Atomic<uint64_t> TrackedAllocators::bytes_used_[kAllocatorTagCount];
29 Atomic<uint64_t> TrackedAllocators::max_bytes_used_[kAllocatorTagCount];
30 Atomic<uint64_t> TrackedAllocators::total_bytes_used_[kAllocatorTagCount];
allocator.h 22 #include "atomic.h"
87 static Atomic<uint64_t> bytes_used_[kAllocatorTagCount];
88 static Atomic<uint64_t> max_bytes_used_[kAllocatorTagCount];
89 static Atomic<uint64_t> total_bytes_used_[kAllocatorTagCount];
mutex.h 26 #include "atomic.h"
172 Atomic<uint64_t> wait_time;
  /frameworks/native/opengl/libagl/
BufferObjectManager.h 25 #include <utils/Atomic.h>
BufferObjectManager.cpp 21 #include <utils/Atomic.h>
TextureObjectManager.h 24 #include <utils/Atomic.h>
  /art/runtime/
atomic.h 21 #include <atomic>
35 // exposed. Clients should be converted to use either class Atomic
38 // ThreadFenceForConstructor and Atomic::*JavaData.
149 // Does the architecture provide reasonable atomic long operations or do we fall back on mutexes?
188 class PACKED(sizeof(T)) Atomic : public std::atomic<T> {
190 Atomic<T>() : std::atomic<T>(0) { }
192 explicit Atomic<T>(T value) : std::atomic<T>(value) {
    [all...]
monitor_pool.h 25 #include "atomic.h"
166 Atomic<uintptr_t*> monitor_chunks_;
  /art/runtime/gc/accounting/
card_table-inl.h 20 #include "atomic.h"
32 Atomic<byte>* byte_atomic = reinterpret_cast<Atomic<byte>*>(address);
40 Atomic<uintptr_t>* word_atomic = reinterpret_cast<Atomic<uintptr_t>*>(address);
184 Atomic<uintptr_t>* atomic_word = reinterpret_cast<Atomic<uintptr_t>*>(word_cur);
space_bitmap-inl.h 24 #include "atomic.h"
39 Atomic<uword>* atomic_entry = reinterpret_cast<Atomic<uword>*>(&bitmap_begin_[index]);
  /art/runtime/mirror/
object-inl.h 24 #include "atomic.h"
145 Atomic<uint32_t>* atomic_rb_ptr = reinterpret_cast<Atomic<uint32_t>*>(raw_addr);
417 return reinterpret_cast<const Atomic<int32_t>*>(word_addr)->LoadSequentiallyConsistent();
419 return reinterpret_cast<const Atomic<int32_t>*>(word_addr)->LoadJavaData();
445 reinterpret_cast<Atomic<int32_t>*>(word_addr)->StoreSequentiallyConsistent(new_value);
447 reinterpret_cast<Atomic<int32_t>*>(word_addr)->StoreJavaData(new_value);
520 return reinterpret_cast<const Atomic<int64_t>*>(addr)->LoadSequentiallyConsistent();
522 return reinterpret_cast<const Atomic<int64_t>*>(addr)->LoadJavaData();
548 reinterpret_cast<Atomic<int64_t>*>(addr)->StoreSequentiallyConsistent(new_value)
    [all...]
object.cc 42 Atomic<uint32_t> Object::hash_code_seed(987654321U + std::time(nullptr));
  /external/chromium_org/third_party/skia/tests/
AtomicTest.cpp 34 DEF_TEST(Atomic, reporter) {
  /external/skia/tests/
AtomicTest.cpp 34 DEF_TEST(Atomic, reporter) {
  /art/runtime/gc/space/
image_space.h 143 static Atomic<uint32_t> bitmap_index_;
space.h 23 #include "atomic.h"
313 Atomic<byte*> end_;
  /system/core/libutils/
SharedBuffer.cpp 21 #include <utils/Atomic.h>
SystemClock.cpp 25 #include <utils/Atomic.h>
97 // NOTE - not atomic and may generate spurious warnings if the 64-bit
  /frameworks/native/services/sensorservice/
BatteryService.cpp 21 #include <utils/Atomic.h>
  /external/llvm/lib/Support/
Android.mk 10 Atomic.cpp \
  /external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
preference_validation_delegate_unittest.cc 26 : kPrefPath_("atomic.pref"),
194 TEST_P(PreferenceValidationDelegateNoIncident, Atomic) {
236 TEST_P(PreferenceValidationDelegateWithIncident, Atomic) {
  /art/runtime/gc/
heap.h 25 #include "atomic.h"
145 // Used so that we don't overflow the allocation time atomic integer.
    [all...]
  /frameworks/base/native/android/
storage_manager.cpp 24 #include <utils/Atomic.h>
  /frameworks/native/libs/binder/
BufferedTextOutput.cpp 20 #include <utils/Atomic.h>
  /hardware/invensense/60xx/libsensors_iio/
sensors_mpl.cpp 30 #include <utils/Atomic.h>

Completed in 1267 milliseconds

1 2 3