• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/bits/

Lines Matching refs:__x

193       _Tp operator()(const _Tp& __x, const _Tp& __y) const
194 { return __x + __y; }
200 _Tp operator()(const _Tp& __x, const _Tp& __y) const
201 { return __x - __y; }
207 _Tp operator()(const _Tp& __x, const _Tp& __y) const
208 { return __x * __y; }
214 _Tp operator()(const _Tp& __x, const _Tp& __y) const
215 { return __x / __y; }
221 _Tp operator()(const _Tp& __x, const _Tp& __y) const
222 { return __x % __y; }
228 _Tp operator()(const _Tp& __x, const _Tp& __y) const
229 { return __x ^ __y; }
235 _Tp operator()(const _Tp& __x, const _Tp& __y) const
236 { return __x & __y; }
242 _Tp operator()(const _Tp& __x, const _Tp& __y) const
243 { return __x | __y; }
249 _Tp operator()(const _Tp& __x, const _Tp& __y) const
250 { return __x << __y; }
256 _Tp operator()(const _Tp& __x, const _Tp& __y) const
257 { return __x >> __y; }
263 bool operator()(const _Tp& __x, const _Tp& __y) const
264 { return __x && __y; }
270 bool operator()(const _Tp& __x, const _Tp& __y) const
271 { return __x || __y; }
277 bool operator()(const _Tp& __x) const { return !__x; }
283 bool operator()(const _Tp& __x, const _Tp& __y) const
284 { return __x == __y; }
290 bool operator()(const _Tp& __x, const _Tp& __y) const
291 { return __x != __y; }
297 bool operator()(const _Tp& __x, const _Tp& __y) const
298 { return __x < __y; }
304 bool operator()(const _Tp& __x, const _Tp& __y) const
305 { return __x > __y; }
311 bool operator()(const _Tp& __x, const _Tp& __y) const
312 { return __x <= __y; }
318 bool operator()(const _Tp& __x, const _Tp& __y) const
319 { return __x >= __y; }
326 _Tp operator()(const _Tp& __x, const _Tp& __y) const
327 { return atan2(__x, __y); }
333 _Tp operator()(const _Tp& __x, const _Tp& __y) const
334 { return pow(__x, __y); }