Searched refs:__y (Results 1 – 6 of 6) sorted by relevance
/bionic/libstdc++/include/ |
D | stl_pair.h | 78 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-mips64/string/ |
D | mips_strlen.c | 176 #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()
|
D | mips-string-ops.h | 100 #define detect_zero(__x,__y,__01s,__80s)\ argument 126 #define detect_zero(__x,__y,_01s,_80s)\ argument
|
/bionic/libc/arch-mips/string/ |
D | mips_strlen.c | 175 #define P(__x,__y) {\ in main() argument 176 int a = my_strlen(__x + __y);\ in main() 177 int b = (strlen)(__x + __y) /* library version */;\ in main() 178 fprintf(stderr,"%s+%d: %s\n",#__x,__y,chk(a,b,&errors));\ in main()
|
D | mips-string-ops.h | 100 #define detect_zero(__x,__y,__01s,__80s)\ argument 126 #define detect_zero(__x,__y,_01s,_80s)\ argument
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | math_private.h | 659 const __typeof (y) __y = (y); \ 661 DOPRINT_END2(__x, __y); \ 662 __x + __y; \
|