Home | History | Annotate | Download | only in bits

Lines Matching refs:__i1

334       compare_exchange_weak(__integral_type& __i1, __integral_type __i2,
340 return _ATOMIC_CMPEXCHNG_(this, &__i1, __i2, __m1);
344 compare_exchange_weak(__integral_type& __i1, __integral_type __i2,
347 return compare_exchange_weak(__i1, __i2, __m,
352 compare_exchange_strong(__integral_type& __i1, __integral_type __i2,
358 return _ATOMIC_CMPEXCHNG_(this, &__i1, __i2, __m1);
362 compare_exchange_strong(__integral_type& __i1, __integral_type __i2,
365 return compare_exchange_strong(__i1, __i2, __m,
435 compare_exchange_weak(bool& __i1, bool __i2, memory_order __m1,
437 { return _M_base.compare_exchange_weak(__i1, __i2, __m1, __m2); }
440 compare_exchange_weak(bool& __i1, bool __i2,
442 { return _M_base.compare_exchange_weak(__i1, __i2, __m); }
445 compare_exchange_strong(bool& __i1, bool __i2, memory_order __m1,
447 { return _M_base.compare_exchange_strong(__i1, __i2, __m1, __m2); }
451 compare_exchange_strong(bool& __i1, bool __i2,
453 { return _M_base.compare_exchange_strong(__i1, __i2, __m); }