Home | History | Annotate | Download | only in bits

Lines Matching refs:atomic_bool

224   // atomic_bool     bool
396 /// atomic_bool
398 struct atomic_bool
404 atomic_bool() = default;
405 ~atomic_bool() = default;
406 atomic_bool(const atomic_bool&) = delete;
407 atomic_bool& operator=(const atomic_bool&) = delete;
409 atomic_bool(bool __i) : _M_base(__i) { }