Lines Matching refs:__y
207 bool operator==(__thread_id __x, __thread_id __y) _NOEXCEPT
208 {return __x.__id_ == __y.__id_;}
210 bool operator!=(__thread_id __x, __thread_id __y) _NOEXCEPT
211 {return !(__x == __y);}
213 bool operator< (__thread_id __x, __thread_id __y) _NOEXCEPT
214 {return __x.__id_ < __y.__id_;}
216 bool operator<=(__thread_id __x, __thread_id __y) _NOEXCEPT
217 {return !(__y < __x);}
219 bool operator> (__thread_id __x, __thread_id __y) _NOEXCEPT
220 {return __y < __x ;}
222 bool operator>=(__thread_id __x, __thread_id __y) _NOEXCEPT
223 {return !(__x < __y);}
407 void swap(thread& __x, thread& __y) _NOEXCEPT {__x.swap(__y);}