Home | History | Annotate | Download | only in bits

Lines Matching defs:__atomic_base

161     struct __atomic_base
169 __atomic_base() = default;
170 ~__atomic_base() = default;
171 __atomic_base(const __atomic_base&) = delete;
172 __atomic_base& operator=(const __atomic_base&) = delete;
173 __atomic_base& operator=(const __atomic_base&) volatile = delete;
176 constexpr __atomic_base(__int_type __i): _M_i (__i) { }
440 struct __atomic_base<_PTp*>
448 __atomic_base() = default;
449 ~__atomic_base() = default;
450 __atomic_base(const __atomic_base&) = delete;
451 __atomic_base& operator=(const __atomic_base&) = delete;
452 __atomic_base& operator=(const __atomic_base&) volatile = delete;
455 constexpr __atomic_base(__return_pointer_type __p): _M_i (__p) { }