Searched refs:__b (Results 1 - 6 of 6) sorted by relevance

/haiku/headers/cpp/std/
H A Dvalarray_array.h64 // copy plain array __a[<__n>] in __b[<__n>]
68 _Tp* __restrict__ __b)
69 { memcpy (__b, __a, __n * sizeof(_Tp)); }
71 // copy strided array __a[<__n : __s>] in plain __b[<__n>]
75 _Tp* __restrict__ __b)
76 { for (size_t __i=0; __i<__n; ++__i, ++__b, __a += __s) *__b = *__a; }
78 // copy plain __a[<__n>] in strided __b[<__n : __s>]
81 __valarray_copy (const _Tp* __restrict__ __a, _Tp* __restrict__ __b, argument
83 { for (size_t __i=0; __i<__n; ++__i, ++__a, __b
67 __valarray_copy(const _Tp* __restrict__ __a, size_t __n, _Tp* __restrict__ __b) argument
74 __valarray_copy(const _Tp* __restrict__ __a, size_t __n, size_t __s, _Tp* __restrict__ __b) argument
88 __valarray_copy(const _Tp* __restrict__ __a, const size_t* __restrict__ __i, _Tp* __restrict__ __b, size_t __n) argument
96 __valarray_copy(const _Tp* __restrict__ __a, size_t __n, _Tp* __restrict__ __b, const size_t* __restrict__ __i) argument
137 __valarray_copy(_Array<_Tp> __a, size_t __n, _Array<_Tp> __b) argument
142 __valarray_copy(_Array<_Tp> __a, size_t __n, size_t __s, _Array<_Tp> __b) argument
147 __valarray_copy(_Array<_Tp> __a, _Array<_Tp> __b, size_t __n, size_t __s) argument
152 __valarray_copy(_Array<_Tp> __a, _Array<size_t> __i, _Array<_Tp> __b, size_t __n) argument
158 __valarray_copy(_Array<_Tp> __a, size_t __n, _Array<_Tp> __b, _Array<size_t> __i) argument
176 _Array(const _Tp* __restrict__ __b, size_t __s) argument
[all...]
/haiku/headers/cpp/
H A Dstl_pair.h44 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} argument
H A Dstl_algobase.h64 inline void __iter_swap(_ForwardIter1 __a, _ForwardIter2 __b, _Tp*) { argument
66 *__a = *__b;
67 *__b = __tmp;
71 inline void iter_swap(_ForwardIter1 __a, _ForwardIter2 __b) { argument
72 __iter_swap(__a, __b, __VALUE_TYPE(__a));
76 inline void swap(_Tp& __a, _Tp& __b) { argument
78 __a = __b;
79 __b = __tmp;
91 inline const _Tp& min(const _Tp& __a, const _Tp& __b) { argument
92 return __b < __
96 max(const _Tp& __a, const _Tp& __b) argument
103 min(const _Tp& __a, const _Tp& __b, _Compare __comp) argument
108 max(const _Tp& __a, const _Tp& __b, _Compare __comp) argument
[all...]
H A Dstl_rope.h387 _Rope_RopeRep(_Tag __t, int __d, bool __b, size_t __size, argument
390 _M_tag(__t), _M_depth(__d), _M_is_balanced(__b), _M_c_string(0)
695 _Rope_RopeSubstring(_Rope_RopeRep<_CharT,_Alloc>* __b, size_t __s, argument
697 : _Rope_RopeFunction<_CharT,_Alloc>(this, __l, false, __a), _M_base(__b)
701 __stl_assert(__s + __l <= __b->_M_size);
790 _Rope_char_ref_proxy <_CharT, __Alloc > __b) {
792 __a = __b;
793 __b = __tmp;
804 _Rope_char_ref_proxy <_CharT, __Alloc > __b) { \
806 __a = __b; \
789 swap(_Rope_char_ref_proxy <_CharT, __Alloc > __a, _Rope_char_ref_proxy <_CharT, __Alloc > __b) argument
1461 _S_new_RopeSubstring( _Rope_RopeRep<_CharT,_Alloc>* __b, size_t __s, size_t __l, allocator_type __a) argument
1940 swap(rope& __b) argument
[all...]
H A Dstl_algo.h45 inline const _Tp& __median(const _Tp& __a, const _Tp& __b, const _Tp& __c) { argument
46 if (__a < __b)
47 if (__b < __c)
48 return __b;
55 else if (__b < __c)
58 return __b;
63 __median(const _Tp& __a, const _Tp& __b, const _Tp& __c, _Compare __comp) { argument
64 if (__comp(__a, __b))
65 if (__comp(__b, __c))
66 return __b;
[all...]
H A Dbitset583 reference( bitset& __b, size_t __pos ) {
584 _M_wp = &__b._M_getword(__pos);

Completed in 53 milliseconds