Searched refs:__x (Results 1 – 4 of 4) 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/kernel/common/linux/byteorder/ |
D | swab.h | 17 #define ___swab16(x) ({ __u16 __x = (x); ((__u16)( (((__u16)(__x) & (__u16)0x00ffU) << 8) | … 19 …__x = (x); ((__u32)( (((__u32)(__x) & (__u32)0x000000ffUL) << 24) | (((__u32)(__x) & (__u32)… 21 …__x = (x); ((__u64)( (__u64)(((__u64)(__x) & (__u64)0x00000000000000ffULL) << 56) | (__u64)(…
|
D | swabb.h | 15 …define ___swahw32(x) ({ __u32 __x = (x); ((__u32)( (((__u32)(__x) & (__u32)0x0000ffffUL) <<… 16 …define ___swahb32(x) ({ __u32 __x = (x); ((__u32)( (((__u32)(__x) & (__u32)0x00ff00ffUL) <<…
|
/bionic/libc/kernel/common/asm-generic/ |
D | cputime.h | 56 #define clock_t_to_cputime(__x) clock_t_to_jiffies(__x) argument
|