Home | History | Annotate | Download | only in 4.4.3

Lines Matching full:__i2

684   atomic_compare_exchange_weak(volatile atomic_bool* __a, bool* __i1, bool __i2)
686 return __a->compare_exchange_weak(*__i1, __i2, memory_order_seq_cst,
692 bool* __i1, bool __i2)
694 return __a->compare_exchange_strong(*__i1, __i2, memory_order_seq_cst,
700 bool __i2, memory_order __m1,
702 { return __a->compare_exchange_weak(*__i1, __i2, __m1, __m2); }
706 bool* __i1, bool __i2,
708 { return __a->compare_exchange_strong(*__i1, __i2, __m1, __m2); }
735 _ITp* __i1, _ITp __i2,
737 { return __a->compare_exchange_weak(*__i1, __i2, __m1, __m2); }
742 _ITp* __i1, _ITp __i2,
745 { return __a->compare_exchange_strong(*__i1, __i2, __m1, __m2); }
800 _ITp* __i1, _ITp __i2)
802 return atomic_compare_exchange_weak_explicit(__a, __i1, __i2,
810 _ITp* __i1, _ITp __i2)
812 return atomic_compare_exchange_strong_explicit(__a, __i1, __i2,