HomeSort by relevance Sort by last modified time
    Searched refs:__x (Results 1 - 25 of 276) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/
hash_fun.h 97 operator()(char __x) const
98 { return __x; }
105 operator()(unsigned char __x) const
106 { return __x; }
113 operator()(unsigned char __x) const
114 { return __x; }
121 operator()(short __x) const
122 { return __x; }
129 operator()(unsigned short __x) const
130 { return __x; }
    [all...]
binders.h 106 binder1st(const _Operation& __x,
108 : op(__x), value(__y) { }
111 operator()(const typename _Operation::second_argument_type& __x) const
112 { return op(value, __x); }
117 operator()(typename _Operation::second_argument_type& __x) const
118 { return op(value, __x); }
124 bind1st(const _Operation& __fn, const _Tp& __x)
127 return binder1st<_Operation>(__fn, _Arg1_type(__x));
141 binder2nd(const _Operation& __x,
143 : op(__x), value(__y) {
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_relops.h 85 operator!=(const _Tp& __x, const _Tp& __y)
86 { return !(__x == __y); }
98 operator>(const _Tp& __x, const _Tp& __y)
99 { return __y < __x; }
111 operator<=(const _Tp& __x, const _Tp& __y)
112 { return !(__y < __x); }
124 operator>=(const _Tp& __x, const _Tp& __y)
125 { return !(__x < __y); }
stl_function.h 138 operator()(const _Tp& __x, const _Tp& __y) const
139 { return __x + __y; }
147 operator()(const _Tp& __x, const _Tp& __y) const
148 { return __x - __y; }
156 operator()(const _Tp& __x, const _Tp& __y) const
157 { return __x * __y; }
165 operator()(const _Tp& __x, const _Tp& __y) const
166 { return __x / __y; }
174 operator()(const _Tp& __x, const _Tp& __y) const
175 { return __x % __y;
    [all...]
  /external/stlport/stlport/stl/
_relops_cont.h 7 inline bool _STLP_CALL operator==(const _STLP_TEMPLATE_CONTAINER& __x,
9 return __x.size() == __y.size() &&
10 equal(__x.begin(), __x.end(), __y.begin());
15 inline bool _STLP_CALL operator<(const _STLP_TEMPLATE_CONTAINER& __x,
17 return lexicographical_compare(__x.begin(), __x.end(),
25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x,
27 __x.swap(__y);
_hash_fun.h 72 size_t operator()(char __x) const { return __x; }
75 size_t operator()(unsigned char __x) const { return __x; }
79 size_t operator()(unsigned char __x) const { return __x; }
83 size_t operator()(short __x) const { return __x; }
86 size_t operator()(unsigned short __x) const { return __x; }
    [all...]
_valarray.h 102 valarray(const value_type& __x, size_t __n) : _Valarray_base<_Tp>(__n)
103 { uninitialized_fill_n(this->_M_first, this->_M_size, __x); }
106 valarray(const valarray<_Tp>& __x) : _Valarray_base<_Tp>(__x._M_size) {
107 uninitialized_copy(__x._M_first, __x._M_first + __x._M_size,
136 valarray<_Tp>& operator=(const valarray<_Tp>& __x) {
137 _STLP_ASSERT(__x.size() == this->size())
138 if (this != &__x)
    [all...]
_cstdlib.h 113 inline int abs(int __x) { return _STLP_VENDOR_CSTD::abs(__x); }
114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); }
131 inline long abs(long __x) { return _STLP_VENDOR_CSTD::labs(__x); }
137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); }
151 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return _STLP_VENDOR_CSTD::llabs(__x); }
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 7 inline bool _STLP_CALL operator==(const _STLP_TEMPLATE_CONTAINER& __x,
9 return __x.size() == __y.size() &&
10 equal(__x.begin(), __x.end(), __y.begin());
15 inline bool _STLP_CALL operator<(const _STLP_TEMPLATE_CONTAINER& __x,
17 return lexicographical_compare(__x.begin(), __x.end(),
25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x,
27 __x.swap(__y);
_hash_fun.h 72 size_t operator()(char __x) const { return __x; }
75 size_t operator()(unsigned char __x) const { return __x; }
79 size_t operator()(unsigned char __x) const { return __x; }
83 size_t operator()(short __x) const { return __x; }
86 size_t operator()(unsigned short __x) const { return __x; }
    [all...]
_valarray.h 102 valarray(const value_type& __x, size_t __n) : _Valarray_base<_Tp>(__n)
103 { uninitialized_fill_n(this->_M_first, this->_M_size, __x); }
106 valarray(const valarray<_Tp>& __x) : _Valarray_base<_Tp>(__x._M_size) {
107 uninitialized_copy(__x._M_first, __x._M_first + __x._M_size,
136 valarray<_Tp>& operator=(const valarray<_Tp>& __x) {
137 _STLP_ASSERT(__x.size() == this->size())
138 if (this != &__x)
    [all...]
_cstdlib.h 113 inline int abs(int __x) { return _STLP_VENDOR_CSTD::abs(__x); }
114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); }
131 inline long abs(long __x) { return _STLP_VENDOR_CSTD::labs(__x); }
137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); }
151 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return _STLP_VENDOR_CSTD::llabs(__x); }
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
mathcalls.h 55 __MATHCALL (acos,, (_Mdouble_ __x));
57 __MATHCALL (asin,, (_Mdouble_ __x));
59 __MATHCALL (atan,, (_Mdouble_ __x));
61 __MATHCALL (atan2,, (_Mdouble_ __y, _Mdouble_ __x));
64 __MATHCALL (cos,, (_Mdouble_ __x));
66 __MATHCALL (sin,, (_Mdouble_ __x));
68 __MATHCALL (tan,, (_Mdouble_ __x));
73 __MATHCALL (cosh,, (_Mdouble_ __x));
75 __MATHCALL (sinh,, (_Mdouble_ __x));
77 __MATHCALL (tanh,, (_Mdouble_ __x));
    [all...]
byteswap.h 37 ({ register unsigned short int __v, __x = (x); \
38 if (__builtin_constant_p (__x)) \
39 __v = __bswap_constant_16 (__x); \
43 : "0" (__x) \
50 ({ register unsigned short int __x = (x); __bswap_constant_16 (__x); }))
70 ({ register unsigned int __v, __x = (x); \
71 if (__builtin_constant_p (__x)) \
72 __v = __bswap_constant_32 (__x); \
74 __asm__ ("bswap %0" : "=r" (__v) : "0" (__x)); \
    [all...]
mathinline.h 36 __NTH (__signbitf (float __x))
38 __extension__ union { float __f; int __i; } __u = { __f: __x };
42 __NTH (__signbit (double __x))
44 __extension__ union { double __d; int __i[2]; } __u = { __d: __x };
48 __NTH (__signbitl (long double __x))
50 __extension__ union { long double __l; int __i[3]; } __u = { __l: __x };
  /external/stlport/stlport/stl/config/
_cray.h 58 # define _STLP_NATIVE_C_HEADER(__x) </usr/include/##__x>
60 # define _STLP_NATIVE_CPP_RUNTIME_HEADER(__x) </opt/ctl/CC/CC/include/##__x>
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_cray.h 58 # define _STLP_NATIVE_C_HEADER(__x) </usr/include/##__x>
60 # define _STLP_NATIVE_CPP_RUNTIME_HEADER(__x) </opt/ctl/CC/CC/include/##__x>
  /bionic/libstdc++/include/
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)
    [all...]
  /ndk/sources/cxx-stl/system/include/
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)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
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)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
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)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
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)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
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)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
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)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
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)
    [all...]

Completed in 1532 milliseconds

1 2 3 4 5 6 7 8 91011>>