HomeSort by relevance Sort by last modified time
    Searched refs:__x (Results 101 - 125 of 1174) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/5/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...]
  /prebuilts/ndk/6/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...]
  /prebuilts/ndk/7/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...]
  /prebuilts/ndk/8/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...]
  /prebuilts/gcc/linux-x86/host/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...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/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...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/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...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/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...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
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/
_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...]
  /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/
_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...]
  /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...]
  /prebuilts/ndk/5/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...]
  /prebuilts/ndk/6/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 2139 milliseconds

1 2 3 45 6 7 8 91011>>