Searched defs:Atomic (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Datomic.h35 // exposed. Clients should be converted to use either class Atomic
38 // ThreadFenceForConstructor and Atomic::*JavaData.
191 class PACKED(sizeof(T)) Atomic : public std::atomic<T> {
193 Atomic<T>() : std::atomic<T>(0) { } function
195 explicit Atomic<T>(T value) : std::atomic<T>(value) { } function
297 typedef Atomic<int32_t> AtomicInteger;
302 static_assert(sizeof(Atomic<int64_t>) == sizeof(int64_t), "Weird Atomic<int64> size");
308 static_assert(alignof(Atomic<int64_t>) == alignof(int64_t),
309 "Atomic<int6
[all...]

Completed in 600 milliseconds