/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_ctraits_fns.h | 38 const typename _Traits::char_type& __y) const 39 { return _Traits::eq(__x, __y); } 78 const typename _Traits::char_type& __y) const 79 { return _Traits::lt(__x, __y); }
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/ |
_watcom.h | 148 # define _STLP_ATOMIC_EXCHANGE(__x, __y) __stl_InterlockedExchange((long*)__x, (long)__y) 149 # define _STLP_ATOMIC_EXCHANGE_PTR(__x, __y) __stl_InterlockedExchange((long*)__x, (long)__y)
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_ctraits_fns.h | 38 const typename _Traits::char_type& __y) const 39 { return _Traits::eq(__x, __y); } 78 const typename _Traits::char_type& __y) const 79 { return _Traits::lt(__x, __y); }
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/ |
_watcom.h | 148 # define _STLP_ATOMIC_EXCHANGE(__x, __y) __stl_InterlockedExchange((long*)__x, (long)__y) 149 # define _STLP_ATOMIC_EXCHANGE_PTR(__x, __y) __stl_InterlockedExchange((long*)__x, (long)__y)
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
stl_function.h | 144 operator()(const _Tp& __x, const _Tp& __y) const 145 { return __x + __y; } 153 operator()(const _Tp& __x, const _Tp& __y) const 154 { return __x - __y; } 162 operator()(const _Tp& __x, const _Tp& __y) const 163 { return __x * __y; } 171 operator()(const _Tp& __x, const _Tp& __y) const 172 { return __x / __y; } 180 operator()(const _Tp& __x, const _Tp& __y) const 181 { return __x % __y; } [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
stl_function.h | 145 operator()(const _Tp& __x, const _Tp& __y) const 146 { return __x + __y; } 154 operator()(const _Tp& __x, const _Tp& __y) const 155 { return __x - __y; } 163 operator()(const _Tp& __x, const _Tp& __y) const 164 { return __x * __y; } 172 operator()(const _Tp& __x, const _Tp& __y) const 173 { return __x / __y; } 181 operator()(const _Tp& __x, const _Tp& __y) const 182 { return __x % __y; } [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
stl_function.h | 143 operator()(const _Tp& __x, const _Tp& __y) const 144 { return __x + __y; } 152 operator()(const _Tp& __x, const _Tp& __y) const 153 { return __x - __y; } 161 operator()(const _Tp& __x, const _Tp& __y) const 162 { return __x * __y; } 170 operator()(const _Tp& __x, const _Tp& __y) const 171 { return __x / __y; } 179 operator()(const _Tp& __x, const _Tp& __y) const 180 { return __x % __y; } [all...] |
/prebuilts/sdk/renderscript/clang-include/ |
ammintrin.h | 38 _mm_extract_si64(__m128i __x, __m128i __y) 40 return (__m128i)__builtin_ia32_extrq((__v2di)__x, (__v16qi)__y); 49 _mm_insert_si64(__m128i __x, __m128i __y) 51 return (__m128i)__builtin_ia32_insertq((__v2di)__x, (__v2di)__y);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
array | 228 operator==(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 230 return _VSTD::equal(__x.__elems_, __x.__elems_ + _Size, __y.__elems_); 236 operator!=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 238 return !(__x == __y); 244 operator<(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 246 return _VSTD::lexicographical_compare(__x.__elems_, __x.__elems_ + _Size, __y.__elems_, __y.__elems_ + _Size); 252 operator>(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 254 return __y < __x; 260 operator<=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) [all...] |
complex | 261 template<class _Tp> complex<_Tp> operator/(const complex<_Tp>& __x, const complex<_Tp>& __y); 528 operator+(const complex<_Tp>& __x, const complex<_Tp>& __y) 531 __t += __y; 538 operator+(const complex<_Tp>& __x, const _Tp& __y) 541 __t += __y; 548 operator+(const _Tp& __x, const complex<_Tp>& __y) 550 complex<_Tp> __t(__y); 558 operator-(const complex<_Tp>& __x, const complex<_Tp>& __y) 561 __t -= __y; 568 operator-(const complex<_Tp>& __x, const _Tp& __y) [all...] |
/external/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); }
|
_sparc_atomic.h | 59 # define _STLP_ATOMIC_EXCHANGE(__x, __y) _STLP_atomic_exchange((__stl_atomic_t*)__x, (__stl_atomic_t)__y)
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); }
|
_sparc_atomic.h | 59 # define _STLP_ATOMIC_EXCHANGE(__x, __y) _STLP_atomic_exchange((__stl_atomic_t*)__x, (__stl_atomic_t)__y)
|
/prebuilts/gcc/linux-x86/host/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); }
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/ |
stl_relops.h | 88 operator!=(const _Tp& __x, const _Tp& __y) 89 { return !(__x == __y); } 101 operator>(const _Tp& __x, const _Tp& __y) 102 { return __y < __x; } 114 operator<=(const _Tp& __x, const _Tp& __y) 115 { return !(__y < __x); } 127 operator>=(const _Tp& __x, const _Tp& __y) 128 { return !(__x < __y); }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/ |
stl_relops.h | 88 operator!=(const _Tp& __x, const _Tp& __y) 89 { return !(__x == __y); } 101 operator>(const _Tp& __x, const _Tp& __y) 102 { return __y < __x; } 114 operator<=(const _Tp& __x, const _Tp& __y) 115 { return !(__y < __x); } 127 operator>=(const _Tp& __x, const _Tp& __y) 128 { return !(__x < __y); }
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/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); }
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); }
|
_sparc_atomic.h | 59 # define _STLP_ATOMIC_EXCHANGE(__x, __y) _STLP_atomic_exchange((__stl_atomic_t*)__x, (__stl_atomic_t)__y)
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/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); }
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); }
|
_sparc_atomic.h | 59 # define _STLP_ATOMIC_EXCHANGE(__x, __y) _STLP_atomic_exchange((__stl_atomic_t*)__x, (__stl_atomic_t)__y)
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/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); }
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); }
|