Searched refs:__x (Results 1 – 4 of 4) sorted by relevance
/bionic/libc/arch-mips/string/ |
D | mips-string-ops.h | 68 #define _ULW(__x) ((struct ulw *) ((char *)(&__x)))->b; argument 100 #define detect_zero(__x,__y,__01s,__80s)\ argument 101 ((unsigned) __builtin_mips_subu_s_qb((v4i8) __01s,(v4i8) __x)) 104 #define set_byte_lanes(__x) ((unsigned) __builtin_mips_repl_qb(__x)) argument 107 #define def_and_set_01(__x) unsigned __x = (unsigned) __builtin_mips_repl_qb(0x01) argument 110 #define def_and_set_80(__x) /* do nothing */ argument 126 #define detect_zero(__x,__y,_01s,_80s)\ argument 127 ((unsigned) (((__x) - _01s) & ~(__x)) & _80s) 130 #define def_and_set_80(__x) unsigned __x = 0x8080808080808080ul argument 131 #define def_and_set_01(__x) unsigned __x = 0x0101010101010101ul argument [all …]
|
D | mips_strlen.c | 42 #define do_strlen_byte(__x) {\ argument 43 if ((bx.b.B##__x) == 0) break;\ 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()
|
/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/libm/upstream-freebsd/lib/msun/src/ |
D | math_private.h | 658 const __typeof (x) __x = (x); \ 661 DOPRINT_END2(__x, __y); \ 662 __x + __y; \
|