Home
last modified time | relevance | path

Searched refs:__b (Results 1 – 13 of 13) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_algobase.h66 inline void __swap_aux(_Tp& __a, _Tp& __b, const __true_type& /*SwapImplemented*/) { in __swap_aux() argument
67 __a._M_swap_workaround(__b); in __swap_aux()
71 inline void __swap_aux(_Tp& __a, _Tp& __b, const __false_type& /*SwapImplemented*/) { in __swap_aux() argument
73 __a = __b; in __swap_aux()
74 __b = __tmp; in __swap_aux()
81 inline void swap(_Tp& __a, _Tp& __b) { in swap() argument
89 _STLP_PRIV __swap_aux(__a, __b, _Implemented()); in swap()
92 __a = __b; in swap()
93 __b = __tmp; in swap()
139 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b) { return __b < __a ? __b : __a; }
[all …]
Dconcept_checks.h382 const _Type& __b) {
383 _Type __c(__b);
389 const _Type& __b) {
390 __a = __b;
395 __less_than_comparable_requirement_violation(_Type __a, _Type __b) {
396 if (__a < __b || __a > __b || __a <= __b || __a >= __b) return __a;
397 return __b;
401 __equality_comparable_requirement_violation(_Type __a, _Type __b) {
402 if (__a == __b || __a != __b) return __a;
403 return __b;
D_hashtable.c484 for (size_t __b = 0; __b < __num_buckets; ++__b) { in _M_check() local
485 _ElemsIte __cur(_M_buckets[__b]), __last(_M_buckets[__b + 1]); in _M_check()
488 _STLP_ASSERT( _M_bkt_num(*__cur, __num_buckets) == __b ) in _M_check()
D_pair.h62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} in pair()
D_algo.c62 const _Tp& __median(const _Tp& __a, const _Tp& __b, const _Tp& __c) { in __median() argument
63 if (__a < __b) in __median()
64 if (__b < __c) in __median()
65 return __b; in __median()
72 else if (__b < __c) in __median()
75 return __b; in __median()
83 __median(const _Tp& __a, const _Tp& __b, const _Tp& __c, _Compare __comp) { in __median() argument
84 if (__comp(__a, __b)) { in __median()
85 _STLP_VERBOSE_ASSERT(!__comp(__b, __a), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) in __median()
86 if (__comp(__b, __c)) { in __median()
[all …]
D_rope.h378 _Rope_RopeRep(_Tag __t, unsigned char __d, bool __b, size_t _p_size,
381 _M_tag(__t), _M_is_balanced(__b), _M_depth(__d), _M_c_string(0), _M_size(__a, _p_size) {
601 _Rope_RopeSubstring(_RopeRep* __b, size_t __s, size_t __l, allocator_type __a)
603 _M_base(__b), _M_start(__s) {
605 _STLP_ASSERT(__s + __l <= __b->_M_size._M_data)
685 _Rope_char_ref_proxy <_CharT, __Alloc > __b) {
687 __a = __b;
688 __b = __tmp;
699 _Rope_char_ref_proxy <_CharT, __Alloc > __b) { \
701 __a = __b; \
[all …]
D_monetary.c287 typename string_type::iterator __b = __buf.begin(), __e = __buf.end(); in do_get() local
289 if (!__is_positive) ++__b; in do_get()
292 _STLP_PRIV __get_decimal_integer(__b, __e, __units, (_CharT*)0); in do_get()
D_bitset.h373 reference( _Bitset& __b, size_t __pos ) {
374 _M_wp = &__b._M_getword(__pos);
/ndk/tests/device/test-stlport/unit/
Dstack_allocator.h185 inline void swap(StackAllocator<_Tp>& __a, StackAllocator<_Tp>& __b) in swap() argument
186 { __a.swap(__b); } in swap()
191 inline void swap(StackAllocator<int>& __a, StackAllocator<int>& __b) in swap() argument
192 { __a.swap(__b); } in swap()
193 inline void swap(StackAllocator<char>& __a, StackAllocator<char>& __b) in swap() argument
194 { __a.swap(__b); } in swap()
196 StackAllocator<pair<const int, int> >& __b) in swap()
197 { __a.swap(__b); } in swap()
/ndk/tests/device/test-gnustl-full/unit/
Dstack_allocator.h185 inline void swap(StackAllocator<_Tp>& __a, StackAllocator<_Tp>& __b) in swap() argument
186 { __a.swap(__b); } in swap()
191 inline void swap(StackAllocator<int>& __a, StackAllocator<int>& __b) in swap() argument
192 { __a.swap(__b); } in swap()
193 inline void swap(StackAllocator<char>& __a, StackAllocator<char>& __b) in swap() argument
194 { __a.swap(__b); } in swap()
196 StackAllocator<pair<const int, int> >& __b) in swap()
197 { __a.swap(__b); } in swap()
/ndk/sources/cxx-stl/stlport/stlport/stl/config/
D_windows.h206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) { in STLPInterlockedExchangePointer() argument
218 reinterpret_cast<long>(__b))); in STLPInterlockedExchangePointer()
220 return (void*)InterlockedExchange((long*)__a, (long)__b); in STLPInterlockedExchangePointer()
/ndk/sources/cxx-stl/system/include/
Dstl_pair.h71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} in pair()
/ndk/sources/cxx-stl/gabi++/include/
Dstl_pair.h71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} in pair()