HomeSort by relevance Sort by last modified time
    Searched refs:__x (Results 51 - 75 of 565) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilt/ndk/android-ndk-r5/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...]
stl_multiset.h 181 multiset(const multiset& __x)
182 : _M_t(__x._M_t) { }
192 multiset(multiset&& __x)
193 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
220 operator=(const multiset& __x)
222 _M_t = __x._M_t;
235 operator=(multiset&& __x)
239 this->swap(__x);
380 swap(multiset&& __x)
382 swap(multiset& __x)
    [all...]
stl_set.h 188 set(const set& __x)
189 : _M_t(__x._M_t) { }
199 set(set&& __x)
200 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
227 operator=(const set& __x)
229 _M_t = __x._M_t;
242 operator=(set&& __x)
246 this->swap(__x);
387 swap(set&& __x)
389 swap(set& __x)
    [all...]
atomicfwd_c.h 122 #define atomic_load_explicit(__a, __x) \
123 _ATOMIC_LOAD_(__a, __x)
128 #define atomic_store_explicit(__a, __m, __x) \
129 _ATOMIC_STORE_(__a, __m, __x)
134 #define atomic_exchange_explicit(__a, __m, __x) \
135 _ATOMIC_MODIFY_(__a, =, __m, __x)
140 #define atomic_compare_exchange_explicit(__a, __e, __m, __x, __y) \
141 _ATOMIC_CMPEXCHNG_(__a, __e, __m, __x)
146 #define atomic_fetch_add_explicit(__a, __m, __x) \
147 _ATOMIC_MODIFY_(__a, +=, __m, __x)
    [all...]
  /prebuilt/ndk/android-ndk-r6/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...]
stl_multiset.h 181 multiset(const multiset& __x)
182 : _M_t(__x._M_t) { }
192 multiset(multiset&& __x)
193 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
220 operator=(const multiset& __x)
222 _M_t = __x._M_t;
235 operator=(multiset&& __x)
239 this->swap(__x);
380 swap(multiset&& __x)
382 swap(multiset& __x)
    [all...]
stl_set.h 188 set(const set& __x)
189 : _M_t(__x._M_t) { }
199 set(set&& __x)
200 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
227 operator=(const set& __x)
229 _M_t = __x._M_t;
242 operator=(set&& __x)
246 this->swap(__x);
387 swap(set&& __x)
389 swap(set& __x)
    [all...]
atomicfwd_c.h 122 #define atomic_load_explicit(__a, __x) \
123 _ATOMIC_LOAD_(__a, __x)
128 #define atomic_store_explicit(__a, __m, __x) \
129 _ATOMIC_STORE_(__a, __m, __x)
134 #define atomic_exchange_explicit(__a, __m, __x) \
135 _ATOMIC_MODIFY_(__a, =, __m, __x)
140 #define atomic_compare_exchange_explicit(__a, __e, __m, __x, __y) \
141 _ATOMIC_CMPEXCHNG_(__a, __e, __m, __x)
146 #define atomic_fetch_add_explicit(__a, __m, __x) \
147 _ATOMIC_MODIFY_(__a, +=, __m, __x)
    [all...]
  /external/stlport/stlport/stl/
_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...]
_numeric.c 74 _Tp __power(_Tp __x, _Integer __n, _MonoidOperation __opr) {
81 __x = __opr(__x, __x);
83 _Tp __result = __x;
87 __x = __opr(__x, __x);
89 __result = __opr(__result, __x);
95 _STLP_MPWFIX_CATCH_ACTION(__x = _Tp()
    [all...]
_function_base.h 66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; }
79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; }
82 void _M_swap_workaround(less<_Tp>& __x) {}
115 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; }
120 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; }
135 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y;
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_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...]
_numeric.c 74 _Tp __power(_Tp __x, _Integer __n, _MonoidOperation __opr) {
81 __x = __opr(__x, __x);
83 _Tp __result = __x;
87 __x = __opr(__x, __x);
89 __result = __opr(__result, __x);
95 _STLP_MPWFIX_CATCH_ACTION(__x = _Tp()
    [all...]
_function_base.h 66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; }
79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; }
82 void _M_swap_workaround(less<_Tp>& __x) {}
115 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; }
120 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; }
135 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y;
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_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...]
_numeric.c 74 _Tp __power(_Tp __x, _Integer __n, _MonoidOperation __opr) {
81 __x = __opr(__x, __x);
83 _Tp __result = __x;
87 __x = __opr(__x, __x);
89 __result = __opr(__result, __x);
95 _STLP_MPWFIX_CATCH_ACTION(__x = _Tp()
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_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...]
_numeric.c 74 _Tp __power(_Tp __x, _Integer __n, _MonoidOperation __opr) {
81 __x = __opr(__x, __x);
83 _Tp __result = __x;
87 __x = __opr(__x, __x);
89 __result = __opr(__result, __x);
95 _STLP_MPWFIX_CATCH_ACTION(__x = _Tp()
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_multiset.h 181 multiset(const multiset& __x)
182 : _M_t(__x._M_t) { }
192 multiset(multiset&& __x)
193 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
220 operator=(const multiset& __x)
222 _M_t = __x._M_t;
235 operator=(multiset&& __x)
239 this->swap(__x);
380 swap(multiset&& __x)
382 swap(multiset& __x)
    [all...]
stl_set.h 188 set(const set& __x)
189 : _M_t(__x._M_t) { }
199 set(set&& __x)
200 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
227 operator=(const set& __x)
229 _M_t = __x._M_t;
242 operator=(set&& __x)
246 this->swap(__x);
387 swap(set&& __x)
389 swap(set& __x)
    [all...]
atomicfwd_c.h 122 #define atomic_load_explicit(__a, __x) \
123 _ATOMIC_LOAD_(__a, __x)
128 #define atomic_store_explicit(__a, __m, __x) \
129 _ATOMIC_STORE_(__a, __m, __x)
134 #define atomic_exchange_explicit(__a, __m, __x) \
135 _ATOMIC_MODIFY_(__a, =, __m, __x)
140 #define atomic_compare_exchange_explicit(__a, __e, __m, __x, __y) \
141 _ATOMIC_CMPEXCHNG_(__a, __e, __m, __x)
146 #define atomic_fetch_add_explicit(__a, __m, __x) \
147 _ATOMIC_MODIFY_(__a, +=, __m, __x)
    [all...]
  /external/stlport/stlport/stl/config/
_sgi.h 10 #define _STLP_NATIVE_HEADER(__x) </usr/include/CC/##__x>
11 #define _STLP_NATIVE_C_HEADER(__x) </usr/include/##__x>
12 #define _STLP_NATIVE_OLD_STREAMS_HEADER(__x) </usr/include/CC/##__x>
13 #define _STLP_NATIVE_CPP_C_HEADER(__x) </usr/include/CC/##__x>
14 #define _STLP_NATIVE_CPP_RUNTIME_HEADER(__x) </usr/include/CC/##__x>
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_sgi.h 10 #define _STLP_NATIVE_HEADER(__x) </usr/include/CC/##__x>
11 #define _STLP_NATIVE_C_HEADER(__x) </usr/include/##__x>
12 #define _STLP_NATIVE_OLD_STREAMS_HEADER(__x) </usr/include/CC/##__x>
13 #define _STLP_NATIVE_CPP_C_HEADER(__x) </usr/include/CC/##__x>
14 #define _STLP_NATIVE_CPP_RUNTIME_HEADER(__x) </usr/include/CC/##__x>
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/config/
_sgi.h 10 #define _STLP_NATIVE_HEADER(__x) </usr/include/CC/##__x>
11 #define _STLP_NATIVE_C_HEADER(__x) </usr/include/##__x>
12 #define _STLP_NATIVE_OLD_STREAMS_HEADER(__x) </usr/include/CC/##__x>
13 #define _STLP_NATIVE_CPP_C_HEADER(__x) </usr/include/CC/##__x>
14 #define _STLP_NATIVE_CPP_RUNTIME_HEADER(__x) </usr/include/CC/##__x>
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/
_sgi.h 10 #define _STLP_NATIVE_HEADER(__x) </usr/include/CC/##__x>
11 #define _STLP_NATIVE_C_HEADER(__x) </usr/include/##__x>
12 #define _STLP_NATIVE_OLD_STREAMS_HEADER(__x) </usr/include/CC/##__x>
13 #define _STLP_NATIVE_CPP_C_HEADER(__x) </usr/include/CC/##__x>
14 #define _STLP_NATIVE_CPP_RUNTIME_HEADER(__x) </usr/include/CC/##__x>
    [all...]

Completed in 535 milliseconds

1 23 4 5 6 7 8 91011>>