Searched refs:__a (Results 1 - 25 of 36) sorted by relevance

12

/haiku/headers/cpp/std/
H A Dvalarray_array.h44 // fill plain array __a[<__n>] with __t
47 __valarray_fill (_Tp* __restrict__ __a, size_t __n, const _Tp& __t) argument
48 { while (__n--) *__a++ = __t; }
50 // fill strided array __a[<__n-1 : __s>] with __t
53 __valarray_fill (_Tp* __restrict__ __a, size_t __n, argument
55 { for (size_t __i=0; __i<__n; ++__i, __a+=__s) *__a = __t; }
57 // fill indirect array __a[__i[<__n>]] with __i
60 __valarray_fill(_Tp* __restrict__ __a, const size_t* __restrict__ __i, argument
62 { for (size_t __j=0; __j<__n; ++__j, ++__i) __a[*__
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
81 __valarray_copy(const _Tp* __restrict__ __a, _Tp* __restrict__ __b, size_t __n, size_t __s) 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
121 __valarray_fill(_Array<_Tp> __a, size_t __n, const _Tp& __t) argument
126 __valarray_fill(_Array<_Tp> __a, size_t __n, size_t __s, const _Tp& __t) argument
131 __valarray_fill(_Array<_Tp> __a, _Array<size_t> __i, size_t __n, const _Tp& __t) 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
[all...]
H A Dindirect_array.h95 inline indirect_array<_Tp>::indirect_array(const indirect_array<_Tp>& __a) argument
96 : _M_sz (__a._M_sz), _M_index (__a._M_index),
97 _M_array (__a._M_array) {}
101 indirect_array<_Tp>::indirect_array (_Array<_Tp> __a, size_t __s, argument
103 : _M_sz (__s), _M_index (__i), _M_array (__a) {}
H A Dgslice_array.h96 gslice_array<_Tp>::gslice_array (_Array<_Tp> __a, argument
98 : _M_array (__a), _M_index (__i) {}
103 gslice_array<_Tp>::gslice_array (const gslice_array<_Tp>& __a) argument
104 : _M_array (__a._M_array), _M_index (__a._M_index) {}
H A Dstd_valarray.h490 _Tp* const __a = static_cast<_Tp*> (alloca (sizeof(_Tp) * _M_size)); local
492 __valarray_copy (_M_data, _M_size, __a);
495 __valarray_fill(__a, __n, _Tp());
497 __valarray_copy (_M_data+__n, _M_size-__n, __a);
498 __valarray_fill (__a+_M_size-__n, __n, _Tp());
502 __valarray_copy (_M_data, _M_size+__n, __a-__n);
503 __valarray_fill(__a, -__n, _Tp());
505 return valarray<_Tp> (__a, _M_size);
512 _Tp* const __a = static_cast<_Tp*> (alloca (sizeof(_Tp) * _M_size)); local
514 __valarray_copy(_M_data, _M_size, __a);
[all...]
/haiku/headers/cpp/
H A Dmemory37 auto_ptr(auto_ptr& __a) __STL_NOTHROW : _M_ptr(__a.release()) {}
38 template <class _Tp1> auto_ptr(auto_ptr<_Tp1>& __a) __STL_NOTHROW
39 : _M_ptr(__a.release()) {}
40 auto_ptr& operator=(auto_ptr& __a) __STL_NOTHROW {
41 if (&__a != this) {
43 _M_ptr = __a.release();
48 auto_ptr& operator=(auto_ptr<_Tp1>& __a) __STL_NOTHROW {
49 if (__a.get() != this->get()) {
51 _M_ptr = __a
[all...]
H A Dstl_algobase.h64 inline void __iter_swap(_ForwardIter1 __a, _ForwardIter2 __b, _Tp*) { argument
65 _Tp __tmp = *__a;
66 *__a = *__b;
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
77 _Tp __tmp = __a;
78 __a = __b;
91 inline const _Tp& min(const _Tp& __a, cons argument
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.h252 #define __ROPE_DEFINE_ALLOCS(__a) \
254 typedef _Rope_RopeConcatenation<_CharT,__a> __C; \
256 typedef _Rope_RopeLeaf<_CharT,__a> __L; \
258 typedef _Rope_RopeFunction<_CharT,__a> __F; \
260 typedef _Rope_RopeSubstring<_CharT,__a> __S; \
284 _Rope_rep_alloc_base(size_t __size, const allocator_type& __a) argument
285 : _M_size(__size), _M_data_allocator(__a) {}
340 _Rope_rep_base(size_t __size, const allocator_type& __a) argument
341 : _Base(__size, __a) {}
388 allocator_type __a)
387 _Rope_RopeRep(_Tag __t, int __d, bool __b, size_t __size, allocator_type __a) argument
564 _Rope_RopeLeaf(__GC_CONST _CharT* __d, size_t __size, allocator_type __a) argument
593 _Rope_RopeConcatenation(_Rope_RopeRep<_CharT,_Alloc>* __l, _Rope_RopeRep<_CharT,_Alloc>* __r, allocator_type __a) argument
630 _Rope_RopeFunction(char_producer<_CharT>* __f, size_t __size, bool __d, allocator_type __a) argument
695 _Rope_RopeSubstring(_Rope_RopeRep<_CharT,_Alloc>* __b, size_t __s, size_t __l, allocator_type __a) argument
789 swap(_Rope_char_ref_proxy <_CharT, __Alloc > __a, _Rope_char_ref_proxy <_CharT, __Alloc > __b) argument
1170 _Rope_alloc_base(_RopeRep *__t, const allocator_type& __a) argument
1172 _Rope_alloc_base(const allocator_type& __a) argument
1230 _Rope_base(_RopeRep* __t, const allocator_type& __a) argument
1231 _Rope_base(const allocator_type& __a) argument
1427 _S_new_RopeLeaf(__GC_CONST _CharT *__s, size_t __size, allocator_type __a) argument
1438 _S_new_RopeConcatenation( _RopeRep* __left, _RopeRep* __right, allocator_type __a) argument
1450 _S_new_RopeFunction(char_producer<_CharT>* __f, size_t __size, bool __d, allocator_type __a) argument
1461 _S_new_RopeSubstring( _Rope_RopeRep<_CharT,_Alloc>* __b, size_t __s, size_t __l, allocator_type __a) argument
1475 _S_RopeLeaf_from_unowned_char_ptr(const _CharT *__s, size_t __size, allocator_type __a) argument
[all...]
H A Dstl_multiset.h77 const allocator_type& __a = allocator_type())
78 : _M_t(__comp, __a) {}
90 const allocator_type& __a = allocator_type())
91 : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
101 const allocator_type& __a = allocator_type())
102 : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
110 const allocator_type& __a = allocator_type())
111 : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
H A Dstl_pair.h44 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} argument
H A Dstl_set.h77 const allocator_type& __a = allocator_type())
78 : _M_t(__comp, __a) {}
88 const allocator_type& __a = allocator_type())
89 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
97 const allocator_type& __a = allocator_type())
98 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
105 const allocator_type& __a = allocator_type())
106 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
H A Dstl_hash_map.h88 const allocator_type& __a = allocator_type())
89 : _M_ht(__n, __hf, __eql, __a) {}
108 const allocator_type& __a = allocator_type())
109 : _M_ht(__n, __hf, __eql, __a)
125 const allocator_type& __a = allocator_type())
126 : _M_ht(__n, __hf, __eql, __a)
141 const allocator_type& __a = allocator_type())
142 : _M_ht(__n, __hf, __eql, __a)
271 const allocator_type& __a = allocator_type())
272 : _M_ht(__n, __hf, __eql, __a) {}
[all...]
H A Dstl_hash_set.h86 const allocator_type& __a = allocator_type())
87 : _M_ht(__n, __hf, __eql, __a) {}
106 const allocator_type& __a = allocator_type())
107 : _M_ht(__n, __hf, __eql, __a)
123 const allocator_type& __a = allocator_type())
124 : _M_ht(__n, __hf, __eql, __a)
139 const allocator_type& __a = allocator_type())
140 : _M_ht(__n, __hf, __eql, __a)
265 const allocator_type& __a = allocator_type())
266 : _M_ht(__n, __hf, __eql, __a) {}
[all...]
H A Dstl_map.h92 const allocator_type& __a = allocator_type())
93 : _M_t(__comp, __a) {}
103 const allocator_type& __a = allocator_type())
104 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
112 const allocator_type& __a = allocator_type())
113 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
120 const allocator_type& __a = allocator_type())
121 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
H A Dstl_multimap.h91 const allocator_type& __a = allocator_type())
92 : _M_t(__comp, __a) { }
103 const allocator_type& __a = allocator_type())
104 : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
111 const allocator_type& __a = allocator_type())
112 : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
119 const allocator_type& __a = allocator_type())
120 : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
H A Dpthread_alloc127 _Pthread_alloc_per_thread_state<_Max_size>* __a;
133 !(__a = (_Pthread_alloc_per_thread_state<_Max_size>*)
135 __a = _S_get_per_thread_state();
137 __my_free_list = __a -> __free_list + _S_freelist_index(__n);
140 void *__r = __a -> _M_refill(_S_round_up(__n));
152 _Pthread_alloc_per_thread_state<_Max_size>* __a;
159 !(__a = (_Pthread_alloc_per_thread_state<_Max_size> *)
161 __a = _S_get_per_thread_state();
163 __my_free_list = __a->__free_list + _S_freelist_index(__n);
249 _Pthread_alloc_per_thread_state<_Max_size>* __a
[all...]
H A Dstl_bvector.h257 _Bvector_alloc_base(const allocator_type& __a) argument
258 : _M_data_allocator(__a), _M_start(), _M_finish(), _M_end_of_storage(0) {}
315 _Bvector_base(const allocator_type& __a) : _Base(__a) {} argument
523 explicit __BVECTOR(const allocator_type& __a = allocator_type())
524 : _Base(__a) {}
527 const allocator_type& __a = allocator_type())
528 : _Base(__a)
550 const allocator_type& __a = allocator_type())
551 : _Base(__a)
[all...]
H A Dstl_list.h140 _List_alloc_base(const allocator_type& __a) : _Node_allocator(__a) {} argument
186 _List_base(const allocator_type& __a) : _Base(__a) { argument
310 explicit list(const allocator_type& __a = allocator_type()) : _Base(__a) {}
405 const allocator_type& __a = allocator_type())
406 : _Base(__a)
418 const allocator_type& __a = allocator_type())
419 : _Base(__a)
[all...]
H A Dstl_slist.h190 _Slist_alloc_base(const allocator_type& __a) : _M_node_allocator(__a) {} argument
235 _Slist_base(const allocator_type& __a) : _Base(__a) { _M_head._M_next = 0; } argument
353 explicit slist(const allocator_type& __a = allocator_type()) : _Base(__a) {}
356 const allocator_type& __a = allocator_type()) : _Base(__a)
367 const allocator_type& __a = allocator_type()) : _Base(__a)
[all...]
H A Dstl_vector.h59 _Vector_alloc_base(const allocator_type& __a) argument
60 : _M_data_allocator(__a), _M_start(0), _M_finish(0), _M_end_of_storage(0)
110 _Vector_base(const allocator_type& __a) : _Base(__a) {} argument
111 _Vector_base(size_t __n, const allocator_type& __a) : _Base(__a) { argument
235 explicit vector(const allocator_type& __a = allocator_type())
236 : _Base(__a) {}
239 const allocator_type& __a = allocator_type())
240 : _Base(__n, __a)
[all...]
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Ddrand48-iter.c41 buffer->__a = 0x5deece66dull;
52 result = X * buffer->__a + buffer->__c;
H A Dlcong48_r.c32 buffer->__a = ((uint64_t) param[5] << 32 | (uint32_t) param[4] << 16
H A Dseed48_r.c36 buffer->__a = 0x5deece66dull;
H A Dsrand48_r.c36 buffer->__a = 0x5deece66dull;
H A Dlonglong.h142 UDItype __xr = (X), __t, __a; \
144 __a = __clz_tab[__t ^ 0xff] - 1; \
145 __asm__("extbl %1,%2,%0" : "=r"(__t) : "r"(__xr), "r"(__a)); \
146 (COUNT) = 64 - (__clz_tab[__t] + __a*8); \
150 UDItype __xr = (X), __t, __a; \
153 __a = ((__t & 0xCC) != 0) * 2; \
154 __a += ((__t & 0xF0) != 0) * 4; \
155 __a += ((__t & 0xAA) != 0); \
156 __asm__("extbl %1,%2,%0" : "=r"(__t) : "r"(__xr), "r"(__a)); \
157 __a <<
[all...]
/haiku/src/tests/system/runtime_loader/test_suite/
H A Dload_resolve_weak225 int __a() { return 2; }
26 int a() __attribute__((weak, alias("__a")));

Completed in 96 milliseconds

12