Home | History | Annotate | Download | only in bits

Lines Matching refs:__x

144       operator()(const _Tp& __x, const _Tp& __y) const
145 { return __x + __y; }
153 operator()(const _Tp& __x, const _Tp& __y) const
154 { return __x - __y; }
162 operator()(const _Tp& __x, const _Tp& __y) const
163 { return __x * __y; }
171 operator()(const _Tp& __x, const _Tp& __y) const
172 { return __x / __y; }
180 operator()(const _Tp& __x, const _Tp& __y) const
181 { return __x % __y; }
189 operator()(const _Tp& __x) const
190 { return -__x; }
208 operator()(const _Tp& __x, const _Tp& __y) const
209 { return __x == __y; }
217 operator()(const _Tp& __x, const _Tp& __y) const
218 { return __x != __y; }
226 operator()(const _Tp& __x, const _Tp& __y) const
227 { return __x > __y; }
235 operator()(const _Tp& __x, const _Tp& __y) const
236 { return __x < __y; }
244 operator()(const _Tp& __x, const _Tp& __y) const
245 { return __x >= __y; }
253 operator()(const _Tp& __x, const _Tp& __y) const
254 { return __x <= __y; }
272 operator()(const _Tp& __x, const _Tp& __y) const
273 { return __x && __y; }
281 operator()(const _Tp& __x, const _Tp& __y) const
282 { return __x || __y; }
290 operator()(const _Tp& __x) const
291 { return !__x; }
301 operator()(const _Tp& __x, const _Tp& __y) const
302 { return __x & __y; }
309 operator()(const _Tp& __x, const _Tp& __y) const
310 { return __x | __y; }
317 operator()(const _Tp& __x, const _Tp& __y) const
318 { return __x ^ __y; }
360 unary_negate(const _Predicate& __x) : _M_pred(__x) { }
363 operator()(const typename _Predicate::argument_type& __x) const
364 { return !_M_pred(__x); }
384 binary_negate(const _Predicate& __x) : _M_pred(__x) { }
387 operator()(const typename _Predicate::first_argument_type& __x,
389 { return !_M_pred(__x, __y); }
432 pointer_to_unary_function(_Result (*__x)(_Arg))
433 : _M_ptr(__x) { }
436 operator()(_Arg __x) const
437 { return _M_ptr(__x); }
443 ptr_fun(_Result (*__x)(_Arg))
444 { return pointer_to_unary_function<_Arg, _Result>(__x); }
458 pointer_to_binary_function(_Result (*__x)(_Arg1, _Arg2))
459 : _M_ptr(__x) { }
462 operator()(_Arg1 __x, _Arg2 __y) const
463 { return _M_ptr(__x, __y); }
469 ptr_fun(_Result (*__x)(_Arg1, _Arg2))
470 { return pointer_to_binary_function<_Arg1, _Arg2, _Result>(__x); }
477 operator()(_Tp& __x) const
478 { return __x; }
481 operator()(const _Tp& __x) const
482 { return __x; }
490 operator()(_Pair& __x) const
491 { return __x.first; }
494 operator()(const _Pair& __x) const
495 { return __x.first; }
500 operator()(_Pair2& __x) const
501 { return __x.first; }
505 __x) const
506 { return __x.first; }
515 operator()(_Pair& __x) const
516 { return __x.second; }
519 operator()(const _Pair& __x) const
520 { return __x.second; }
622 operator()(_Tp* __p, _Arg __x) const
623 { return (__p->*_M_f)(__x); }
640 operator()(const _Tp* __p, _Arg __x) const
641 { return (__p->*_M_f)(__x); }
658 operator()(_Tp& __r, _Arg __x) const
659 { return (__r.*_M_f)(__x); }
676 operator()(const _Tp& __r, _Arg __x) const
677 { return (__r.*_M_f)(__x); }