/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_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...] |
/external/stlport/stlport/stl/ |
_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...] |
_tree.h | 93 static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) { 94 while (__x->_M_left != 0) __x = __x->_M_left; 95 return __x; 98 static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) { 99 while (__x->_M_right != 0) __x = __x->_M_right; 100 return __x; 493 _Base_ptr __x = _Rb_global_inst::_Rebalance_for_erase(__pos._M_node, local 550 _Base_ptr __x = _M_root(); \/\/ Current node. local 569 _Base_ptr __x = _M_root(); \/* Current node. *\/ local 583 _Base_ptr __x = _M_root(); \/* Current node. *\/ local [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_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...] |
_tree.h | 93 static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) { 94 while (__x->_M_left != 0) __x = __x->_M_left; 95 return __x; 98 static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) { 99 while (__x->_M_right != 0) __x = __x->_M_right; 100 return __x; 493 _Base_ptr __x = _Rb_global_inst::_Rebalance_for_erase(__pos._M_node, local 550 _Base_ptr __x = _M_root(); \/\/ Current node. local 569 _Base_ptr __x = _M_root(); \/* Current node. *\/ local 583 _Base_ptr __x = _M_root(); \/* Current node. *\/ local [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/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/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/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/5/sources/cxx-stl/stlport/stlport/stl/ |
_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...] |
_tree.h | 93 static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) { 94 while (__x->_M_left != 0) __x = __x->_M_left; 95 return __x; 98 static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) { 99 while (__x->_M_right != 0) __x = __x->_M_right; 100 return __x; 493 _Base_ptr __x = _Rb_global_inst::_Rebalance_for_erase(__pos._M_node, local 550 _Base_ptr __x = _M_root(); \/\/ Current node. local 569 _Base_ptr __x = _M_root(); \/* Current node. *\/ local 583 _Base_ptr __x = _M_root(); \/* Current node. *\/ local [all...] |
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_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...] |
_tree.h | 93 static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) { 94 while (__x->_M_left != 0) __x = __x->_M_left; 95 return __x; 98 static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) { 99 while (__x->_M_right != 0) __x = __x->_M_right; 100 return __x; 493 _Base_ptr __x = _Rb_global_inst::_Rebalance_for_erase(__pos._M_node, local 550 _Base_ptr __x = _M_root(); \/\/ Current node. local 569 _Base_ptr __x = _M_root(); \/* Current node. *\/ local 583 _Base_ptr __x = _M_root(); \/* Current node. *\/ local [all...] |
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_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...] |
_tree.h | 93 static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) { 94 while (__x->_M_left != 0) __x = __x->_M_left; 95 return __x; 98 static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) { 99 while (__x->_M_right != 0) __x = __x->_M_right; 100 return __x; 493 _Base_ptr __x = _Rb_global_inst::_Rebalance_for_erase(__pos._M_node, local 550 _Base_ptr __x = _M_root(); \/\/ Current node. local 569 _Base_ptr __x = _M_root(); \/* Current node. *\/ local 583 _Base_ptr __x = _M_root(); \/* Current node. *\/ local [all...] |
/prebuilts/ndk/8/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/8/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/8/sources/cxx-stl/stlport/stlport/stl/ |
_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...] |
/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/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
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...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
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...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
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...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/ |
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...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/ |
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...] |