Lines Matching refs:__y
228 bool operator==(__thread_id __x, __thread_id __y) _NOEXCEPT
229 {return __libcpp_thread_id_equal(__x.__id_, __y.__id_);}
231 bool operator!=(__thread_id __x, __thread_id __y) _NOEXCEPT
232 {return !(__x == __y);}
234 bool operator< (__thread_id __x, __thread_id __y) _NOEXCEPT
235 {return __libcpp_thread_id_less(__x.__id_, __y.__id_);}
237 bool operator<=(__thread_id __x, __thread_id __y) _NOEXCEPT
238 {return !(__y < __x);}
240 bool operator> (__thread_id __x, __thread_id __y) _NOEXCEPT
241 {return __y < __x ;}
243 bool operator>=(__thread_id __x, __thread_id __y) _NOEXCEPT
244 {return !(__x < __y);}
424 void swap(thread& __x, thread& __y) _NOEXCEPT {__x.swap(__y);}