Home
last modified time | relevance | path

Searched refs:__y (Results 1 – 4 of 4) sorted by relevance

/bionic/libstdc++/include/
Dstl_pair.h78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
80 return __x.first == __y.first && __x.second == __y.second;
84 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second);
91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
92 return !(__x == __y);
96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
97 return __y < __x;
101 inline bool operator<=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
[all …]
/bionic/libc/arch-mips/string/
Dmips_strlen.c176 #define P(__x,__y) {\ in main() argument
177 int a = my_strlen(__x + __y);\ in main()
178 int b = (strlen)(__x + __y) /* library version */;\ in main()
179 fprintf(stderr,"%s+%d: %s\n",#__x,__y,chk(a,b,&errors));\ in main()
Dmips-string-ops.h100 #define detect_zero(__x,__y,__01s,__80s)\ argument
126 #define detect_zero(__x,__y,_01s,_80s)\ argument
/bionic/libm/upstream-freebsd/lib/msun/src/
Dmath_private.h659 const __typeof (y) __y = (y); \
661 DOPRINT_END2(__x, __y); \
662 __x + __y; \