/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr1/ |
unordered_map.h | 145 _Alloc, __cache_hash_code>& __y) 146 { __x.swap(__y); } 154 _Alloc, __cache_hash_code>& __y) 155 { __x.swap(__y); } 267 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y) 268 { __x.swap(__y); } 273 unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __y) 274 { __x.swap(__y); }
|
ell_integral.tcc | 67 * @param __y The second of three symmetric arguments. 73 __ellint_rf(_Tp __x, _Tp __y, _Tp __z) 80 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 83 else if (__x + __y < __lolim || __x + __z < __lolim 84 || __y + __z < __lolim) 95 _Tp __yn = __y; 307 * @param __y The second of two symmetric arguments. 313 __ellint_rd(_Tp __x, _Tp __y, _Tp __z) 322 if (__x < _Tp(0) || __y < _Tp(0)) 325 else if (__x + __y < __lolim || __z < __lolim [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
stl_multiset.h | 675 * @param __y A %multiset of the same type as @a __x. 686 const multiset<_Key, _Compare, _Alloc>& __y) 687 { return __x._M_t == __y._M_t; } 692 * @param __y A %multiset of the same type as @a __x. 693 * @return True iff @a __x is lexicographically less than @a __y. 703 const multiset<_Key, _Compare, _Alloc>& __y) 704 { return __x._M_t < __y._M_t; } 710 const multiset<_Key, _Compare, _Alloc>& __y) 711 { return !(__x == __y); } 717 const multiset<_Key,_Compare,_Alloc>& __y) [all...] |
stl_set.h | 695 * @param __y A %set of the same type as @a x. 705 const set<_Key, _Compare, _Alloc>& __y) 706 { return __x._M_t == __y._M_t; } 711 * @param __y A %set of the same type as @a x. 712 * @return True iff @a __x is lexicographically less than @a __y. 722 const set<_Key, _Compare, _Alloc>& __y) 723 { return __x._M_t < __y._M_t; } 729 const set<_Key, _Compare, _Alloc>& __y) 730 { return !(__x == __y); } 736 const set<_Key, _Compare, _Alloc>& __y) [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
stl_multiset.h | 675 * @param __y A %multiset of the same type as @a __x. 686 const multiset<_Key, _Compare, _Alloc>& __y) 687 { return __x._M_t == __y._M_t; } 692 * @param __y A %multiset of the same type as @a __x. 693 * @return True iff @a __x is lexicographically less than @a __y. 703 const multiset<_Key, _Compare, _Alloc>& __y) 704 { return __x._M_t < __y._M_t; } 710 const multiset<_Key, _Compare, _Alloc>& __y) 711 { return !(__x == __y); } 717 const multiset<_Key,_Compare,_Alloc>& __y) [all...] |
stl_set.h | 695 * @param __y A %set of the same type as @a x. 705 const set<_Key, _Compare, _Alloc>& __y) 706 { return __x._M_t == __y._M_t; } 711 * @param __y A %set of the same type as @a x. 712 * @return True iff @a __x is lexicographically less than @a __y. 722 const set<_Key, _Compare, _Alloc>& __y) 723 { return __x._M_t < __y._M_t; } 729 const set<_Key, _Compare, _Alloc>& __y) 730 { return !(__x == __y); } 736 const set<_Key, _Compare, _Alloc>& __y) [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
stl_multiset.h | 727 * @param __y A %multiset of the same type as @a __x. 738 const multiset<_Key, _Compare, _Alloc>& __y) 739 { return __x._M_t == __y._M_t; } 744 * @param __y A %multiset of the same type as @a __x. 745 * @return True iff @a __x is lexicographically less than @a __y. 755 const multiset<_Key, _Compare, _Alloc>& __y) 756 { return __x._M_t < __y._M_t; } 762 const multiset<_Key, _Compare, _Alloc>& __y) 763 { return !(__x == __y); } 769 const multiset<_Key,_Compare,_Alloc>& __y) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
__bit_reference | 87 swap(__bit_reference<_Cp> __x, __bit_reference<_Cp> __y) _NOEXCEPT 90 __x = __y; 91 __y = __t; 97 swap(__bit_reference<_Cp> __x, __bit_reference<_Dp> __y) _NOEXCEPT 100 __x = __y; 101 __y = __t; 107 swap(__bit_reference<_Cp> __x, bool& __y) _NOEXCEPT 110 __x = __y; 111 __y = __t; 117 swap(bool& __x, __bit_reference<_Cp> __y) _NOEXCEP [all...] |
forward_list | 270 const __forward_list_iterator& __y) 271 {return __x.__ptr_ == __y.__ptr_;} 274 const __forward_list_iterator& __y) 275 {return !(__x == __y);} 344 const __forward_list_const_iterator& __y) 345 {return __x.__ptr_ == __y.__ptr_;} 348 const __forward_list_const_iterator& __y) 349 {return !(__x == __y);} 465 static void __swap_alloc(__node_allocator& __x, __node_allocator& __y) 468 {__swap_alloc(__x, __y, integral_constant<bool [all...] |
regex | 773 operator&(syntax_option_type __x, syntax_option_type __y) 775 return syntax_option_type(int(__x) & int(__y)); 781 operator|(syntax_option_type __x, syntax_option_type __y) 783 return syntax_option_type(int(__x) | int(__y)); 789 operator^(syntax_option_type __x, syntax_option_type __y) 791 return syntax_option_type(int(__x) ^ int(__y)); 796 operator&=(syntax_option_type& __x, syntax_option_type __y) 798 __x = __x & __y; 804 operator|=(syntax_option_type& __x, syntax_option_type __y) 806 __x = __x | __y; [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/ |
random.tcc | 253 uint32_t __y[4]; 256 __rshift<__sr2>(__y, __c); 258 ^ __y[0] ^ (__d[0] << __sl1)); 260 ^ __y[1] ^ (__d[1] << __sl1)); 262 ^ __y[2] ^ (__d[2] << __sl1)); 264 ^ __y[3] ^ (__d[3] << __sl1)); 424 result_type __x, __y; 428 __y = std::exp(std::log(__aurng()) / __param.beta()); 430 while (__x + __y > result_type(1)); 432 return __x / (__x + __y); [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/ |
ell_integral.tcc | 68 * @param __y The second of three symmetric arguments. 74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) 81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 84 else if (__x + __y < __lolim || __x + __z < __lolim 85 || __y + __z < __lolim) 96 _Tp __yn = __y; 308 * @param __y The second of two symmetric arguments. 314 __ellint_rd(const _Tp __x, const _Tp __y, const _Tp __z) 323 if (__x < _Tp(0) || __y < _Tp(0)) 326 else if (__x + __y < __lolim || __z < __lolim [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/ |
ell_integral.tcc | 68 * @param __y The second of three symmetric arguments. 74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) 81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 84 else if (__x + __y < __lolim || __x + __z < __lolim 85 || __y + __z < __lolim) 96 _Tp __yn = __y; 308 * @param __y The second of two symmetric arguments. 314 __ellint_rd(const _Tp __x, const _Tp __y, const _Tp __z) 323 if (__x < _Tp(0) || __y < _Tp(0)) 326 else if (__x + __y < __lolim || __z < __lolim [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/ |
ell_integral.tcc | 68 * @param __y The second of three symmetric arguments. 74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) 81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 84 else if (__x + __y < __lolim || __x + __z < __lolim 85 || __y + __z < __lolim) 96 _Tp __yn = __y; 308 * @param __y The second of two symmetric arguments. 314 __ellint_rd(const _Tp __x, const _Tp __y, const _Tp __z) 323 if (__x < _Tp(0) || __y < _Tp(0)) 326 else if (__x + __y < __lolim || __z < __lolim [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
ell_integral.tcc | 68 * @param __y The second of three symmetric arguments. 74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) 81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 84 else if (__x + __y < __lolim || __x + __z < __lolim 85 || __y + __z < __lolim) 96 _Tp __yn = __y; 308 * @param __y The second of two symmetric arguments. 314 __ellint_rd(const _Tp __x, const _Tp __y, const _Tp __z) 323 if (__x < _Tp(0) || __y < _Tp(0)) 326 else if (__x + __y < __lolim || __z < __lolim [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
ell_integral.tcc | 68 * @param __y The second of three symmetric arguments. 74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) 81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 84 else if (__x + __y < __lolim || __x + __z < __lolim 85 || __y + __z < __lolim) 96 _Tp __yn = __y; 308 * @param __y The second of two symmetric arguments. 314 __ellint_rd(const _Tp __x, const _Tp __y, const _Tp __z) 323 if (__x < _Tp(0) || __y < _Tp(0)) 326 else if (__x + __y < __lolim || __z < __lolim [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
ell_integral.tcc | 68 * @param __y The second of three symmetric arguments. 74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) 81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 84 else if (__x + __y < __lolim || __x + __z < __lolim 85 || __y + __z < __lolim) 96 _Tp __yn = __y; 308 * @param __y The second of two symmetric arguments. 314 __ellint_rd(const _Tp __x, const _Tp __y, const _Tp __z) 323 if (__x < _Tp(0) || __y < _Tp(0)) 326 else if (__x + __y < __lolim || __z < __lolim [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1/ |
ell_integral.tcc | 68 * @param __y The second of three symmetric arguments. 74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) 81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 84 else if (__x + __y < __lolim || __x + __z < __lolim 85 || __y + __z < __lolim) 96 _Tp __yn = __y; 308 * @param __y The second of two symmetric arguments. 314 __ellint_rd(const _Tp __x, const _Tp __y, const _Tp __z) 323 if (__x < _Tp(0) || __y < _Tp(0)) 326 else if (__x + __y < __lolim || __z < __lolim [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/ |
ell_integral.tcc | 68 * @param __y The second of three symmetric arguments. 74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) 81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 84 else if (__x + __y < __lolim || __x + __z < __lolim 85 || __y + __z < __lolim) 96 _Tp __yn = __y; 308 * @param __y The second of two symmetric arguments. 314 __ellint_rd(const _Tp __x, const _Tp __y, const _Tp __z) 323 if (__x < _Tp(0) || __y < _Tp(0)) 326 else if (__x + __y < __lolim || __z < __lolim [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/ |
ell_integral.tcc | 68 * @param __y The second of three symmetric arguments. 74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) 81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 84 else if (__x + __y < __lolim || __x + __z < __lolim 85 || __y + __z < __lolim) 96 _Tp __yn = __y; 308 * @param __y The second of two symmetric arguments. 314 __ellint_rd(const _Tp __x, const _Tp __y, const _Tp __z) 323 if (__x < _Tp(0) || __y < _Tp(0)) 326 else if (__x + __y < __lolim || __z < __lolim [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/ |
ell_integral.tcc | 68 * @param __y The second of three symmetric arguments. 74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) 81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 84 else if (__x + __y < __lolim || __x + __z < __lolim 85 || __y + __z < __lolim) 96 _Tp __yn = __y; 308 * @param __y The second of two symmetric arguments. 314 __ellint_rd(const _Tp __x, const _Tp __y, const _Tp __z) 323 if (__x < _Tp(0) || __y < _Tp(0)) 326 else if (__x + __y < __lolim || __z < __lolim [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/ |
ell_integral.tcc | 68 * @param __y The second of three symmetric arguments. 74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) 81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) 84 else if (__x + __y < __lolim || __x + __z < __lolim 85 || __y + __z < __lolim) 96 _Tp __yn = __y; 308 * @param __y The second of two symmetric arguments. 314 __ellint_rd(const _Tp __x, const _Tp __y, const _Tp __z) 323 if (__x < _Tp(0) || __y < _Tp(0)) 326 else if (__x + __y < __lolim || __z < __lolim [all...] |
/bionic/libc/arch-mips/string/ |
mips_strlen.c | 175 #define P(__x,__y) {\ 176 int a = my_strlen(__x + __y);\ 177 int b = (strlen)(__x + __y) /* library version */;\ 178 fprintf(stderr,"%s+%d: %s\n",#__x,__y,chk(a,b,&errors));\
|
/external/stlport/stlport/stl/ |
_istreambuf_iterator.h | 111 const istreambuf_iterator<_CharT, _Traits>& __y) { 112 return __x.equal(__y); 119 const istreambuf_iterator<_CharT, _Traits>& __y) { 120 return !__x.equal(__y);
|
_queue.h | 122 operator==(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) { 123 return __x._Get_s() == __y._Get_s(); 128 operator<(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) { 129 return __x._Get_s() < __y._Get_s();
|