Searched defs:__b (Results 1 - 14 of 14) sorted by relevance

/ndk/sources/cxx-stl/gabi++/include/
H A Dstl_pair.h79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} argument
/ndk/sources/cxx-stl/system/include/
H A Dstl_pair.h79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} argument
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_pair.h62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} argument
H A D_algobase.h66 inline void __swap_aux(_Tp& __a, _Tp& __b, const __true_type& /*SwapImplemented*/) { argument
67 __a._M_swap_workaround(__b);
71 inline void __swap_aux(_Tp& __a, _Tp& __b, const __false_type& /*SwapImplemented*/) { argument
73 __a = __b;
74 __b = __tmp;
81 inline void swap(_Tp& __a, _Tp& __b) { argument
89 _STLP_PRIV __swap_aux(__a, __b, _Implemented());
92 __a = __b;
93 __b = __tmp;
139 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b) { retur
146 min(unsigned long __a, unsigned long __b) argument
147 max(unsigned long __a, unsigned long __b) argument
152 min(const _Tp& __a, const _Tp& __b, _Compare __comp) argument
157 max(const _Tp& __a, const _Tp& __b, _Compare __comp) argument
162 min(const _Tp __a, const _Tp __b, _Compare __comp) argument
167 max(const _Tp __a, const _Tp __b, _Compare __comp) argument
[all...]
H A D_monetary.c287 typename string_type::iterator __b = __buf.begin(), __e = __buf.end(); local
289 if (!__is_positive) ++__b;
292 _STLP_PRIV __get_decimal_integer(__b, __e, __units, (_CharT*)0);
H A D_bitset.h373 reference( _Bitset& __b, size_t __pos ) { argument
374 _M_wp = &__b._M_getword(__pos);
H A 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) { argument
396 if (__a < __b || __a > __b || __a <= __b || __a >= __b) return __a;
397 return __b;
381 __const_parameter_required_for_copy_constructor(_Type , const _Type& __b) argument
388 __const_parameter_required_for_assignment_operator(_Type __a, const _Type& __b) argument
401 __equality_comparable_requirement_violation(_Type __a, _Type __b) argument
[all...]
H A D_algo.c62 const _Tp& __median(const _Tp& __a, const _Tp& __b, const _Tp& __c) { argument
63 if (__a < __b)
64 if (__b < __c)
65 return __b;
72 else if (__b < __c)
75 return __b;
83 __median(const _Tp& __a, const _Tp& __b, const _Tp& __c, _Compare __comp) { argument
84 if (__comp(__a, __b)) {
85 _STLP_VERBOSE_ASSERT(!__comp(__b, __a), _StlMsg_INVALID_STRICT_WEAK_PREDICATE)
86 if (__comp(__b, __
[all...]
H A D_rope.h378 _Rope_RopeRep(_Tag __t, unsigned char __d, bool __b, size_t _p_size, argument
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) argument
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; \
684 swap(_Rope_char_ref_proxy <_CharT, __Alloc > __a, _Rope_char_ref_proxy <_CharT, __Alloc > __b) argument
1223 _S_new_RopeSubstring(_Rope_RopeRep<_CharT,_Alloc>* __b, size_t __s, size_t __l, allocator_type __a) argument
1703 swap(_Self& __b) argument
[all...]
/ndk/sources/cxx-stl/stlport/stlport/stl/config/
H A D_windows.h206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) { argument
218 reinterpret_cast<long>(__b)));
220 return (void*)InterlockedExchange((long*)__a, (long)__b);
/ndk/tests/device/test-gnustl-full/unit/
H A Dstack_allocator.h185 inline void swap(StackAllocator<_Tp>& __a, StackAllocator<_Tp>& __b) argument
186 { __a.swap(__b); }
191 inline void swap(StackAllocator<int>& __a, StackAllocator<int>& __b) argument
192 { __a.swap(__b); }
193 inline void swap(StackAllocator<char>& __a, StackAllocator<char>& __b) argument
194 { __a.swap(__b); }
196 StackAllocator<pair<const int, int> >& __b)
197 { __a.swap(__b); }
195 swap(StackAllocator<pair<const int, int> >& __a, StackAllocator<pair<const int, int> >& __b) argument
/ndk/tests/device/test-stlport/unit/
H A Dstack_allocator.h185 inline void swap(StackAllocator<_Tp>& __a, StackAllocator<_Tp>& __b) argument
186 { __a.swap(__b); }
191 inline void swap(StackAllocator<int>& __a, StackAllocator<int>& __b) argument
192 { __a.swap(__b); }
193 inline void swap(StackAllocator<char>& __a, StackAllocator<char>& __b) argument
194 { __a.swap(__b); }
196 StackAllocator<pair<const int, int> >& __b)
197 { __a.swap(__b); }
195 swap(StackAllocator<pair<const int, int> >& __a, StackAllocator<pair<const int, int> >& __b) argument
/ndk/tests/build/b9193874-neon/jni/
H A Db9193874-neon.c24 vaddq_u16 (uint16x8_t __a, uint16x8_t __b) argument
26 return (uint16x8_t)__builtin_neon_vaddv8hi ((int16x8_t) __a, (int16x8_t) __b, 0);
29 vaddl_s16 (int16x4_t __a, int16x4_t __b) argument
31 return (int32x4_t)__builtin_neon_vaddlv4hi (__a, __b, 1);
34 vaddl_u8 (uint8x8_t __a, uint8x8_t __b) argument
36 return (uint16x8_t)__builtin_neon_vaddlv8qi ((int8x8_t) __a, (int8x8_t) __b, 0);
39 vaddw_u8 (uint16x8_t __a, uint8x8_t __b) argument
41 return (uint16x8_t)__builtin_neon_vaddwv8qi ((int16x8_t) __a, (int8x8_t) __b, 0);
44 vrhadd_u8 (uint8x8_t __a, uint8x8_t __b) argument
46 return (uint8x8_t)__builtin_neon_vhaddv8qi ((int8x8_t) __a, (int8x8_t) __b,
49 vsubl_s16(int16x4_t __a, int16x4_t __b) argument
54 vsubl_u8(uint8x8_t __a, uint8x8_t __b) argument
59 vshrn_n_u16(uint16x8_t __a, const int __b) argument
64 vrshrn_n_s32(int32x4_t __a, const int __b) argument
69 vshlq_n_s16(int16x8_t __a, const int __b) argument
74 vshll_n_s16(int16x4_t __a, const int __b) argument
79 vshll_n_u8(uint8x8_t __a, const int __b) argument
94 vcombine_s16(int16x4_t __a, int16x4_t __b) argument
119 vmulq_lane_s32(int32x4_t __a, int32x2_t __b, const int __c) argument
124 vmlal_lane_s16(int32x4_t __a, int16x4_t __b, int16x4_t __c, const int __d) argument
129 vqdmlal_lane_s16(int32x4_t __a, int16x4_t __b, int16x4_t __c, const int __d) argument
144 vst2_u8(uint8_t * __a, uint8x8x2_t __b) argument
150 vst4_u8(uint8_t * __a, uint8x8x4_t __b) argument
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/config/
H A Dsuffix.hpp373 inline const _Tp& min BOOST_PREVENT_MACRO_SUBSTITUTION (const _Tp& __a, const _Tp& __b) { argument
374 return __b < __a ? __b : __a;
377 inline const _Tp& max BOOST_PREVENT_MACRO_SUBSTITUTION (const _Tp& __a, const _Tp& __b) { argument
378 return __a < __b ? __b : __a;

Completed in 164 milliseconds