Home | History | Annotate | Download | only in bits

Lines Matching defs:_M_base

235       // Requires __integral_type convertible to _M_base._M_i.
396 __atomic_base<bool> _M_base;
404 atomic_bool(bool __i) : _M_base(__i) { }
408 { return _M_base.operator=(__i); }
411 { return _M_base.load(); }
415 { return _M_base.is_lock_free(); }
419 { _M_base.store(__i, __m); }
423 { return _M_base.load(__m); }
427 { return _M_base.exchange(__i, __m); }
432 { return _M_base.compare_exchange_weak(__i1, __i2, __m1, __m2); }
437 { return _M_base.compare_exchange_weak(__i1, __i2, __m); }
442 { return _M_base.compare_exchange_strong(__i1, __i2, __m1, __m2); }
448 { return _M_base.compare_exchange_strong(__i1, __i2, __m); }