Home
last modified time | relevance | path

Searched refs:__a (Results 1 – 25 of 44) sorted by relevance

12

/reactos/sdk/include/vcruntime/
H A Dxmmintrin.h347 __a = _mm_movehl_ps(__a, __a); in _mm_cvtps_pi16()
551 return __a; in _mm_add_ss()
562 return __a; in _mm_sub_ss()
573 return __a; in _mm_mul_ss()
584 return __a; in _mm_div_ss()
903 __a[0] = __b; in _mm_cvtsi32_ss()
904 return __a; in _mm_cvtsi32_ss()
910 __a[0] = __b; in _mm_cvtsi64_ss()
911 return __a; in _mm_cvtsi64_ss()
1072 __a = __builtin_shufflevector((__v4sf)__a, (__v4sf)__a, 0, 0, 0, 0); in _mm_store1_ps()
[all …]
/reactos/sdk/include/c++/stlport/stl/
H A Dconcept_checks.h370 __a = __a;
371 return __a;
376 _Type __c(__a);
390 __a = __b;
391 return __a;
396 if (__a < __b || __a > __b || __a <= __b || __a >= __b) return __a;
402 if (__a == __b || __a != __b) return __a;
532 _STL_ERROR::__const_parameter_required_for_copy_constructor(__a,__a);
533 _STL_ERROR::__const_parameter_required_for_assignment_operator(__a,__a);
552 _STL_ERROR::__equality_comparable_requirement_violation(__a, __a);
[all …]
H A D_algobase.h72 _Tp __tmp = __a; in __swap_aux()
73 __a = __b; in __swap_aux()
92 __a = __b; in swap()
139 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b) { return __b < __a ? __b : __a; }
141 inline const _Tp& (max)(const _Tp& __a, const _Tp& __b) { return __a < __b ? __b : __a; }
146 inline unsigned long (min) (unsigned long __a, unsigned long __b) { return __b < __a ? __b : __a; }
147 inline unsigned long (max) (unsigned long __a, unsigned long __b) { return __a < __b ? __b : __a;…
153 return __comp(__b, __a) ? __b : __a;
158 return __comp(__a, __b) ? __b : __a;
163 return __comp(__b, __a) ? __b : __a; in _Tp()
[all …]
H A D_alloc.h181 # define _STLP_CONVERT_ALLOCATOR(__a, _Tp) __stl_alloc_create(__a,(_Tp*)0) argument
183 # define _STLP_CONVERT_ALLOCATOR(__a, _Tp) __a argument
188 # define _STLP_CONVERT_ALLOCATOR(__a, _Tp) __stl_alloc_create(__a,(_Tp*)0) argument
202 static allocator_type create_allocator(const _Orig& __a) in create_allocator()
203 { return allocator_type(_STLP_CONVERT_ALLOCATOR(__a, _Tp)); } in create_allocator()
446 { return allocator_type(_STLP_CONVERT_ALLOCATOR(__a, _Tp)); }
453 __stl_alloc_create(const _Alloc& __a, const _Tp*) {
455 return _Rebound_type(__a);
462 __stl_alloc_rebind(allocator<_Tp1>& __a, const _Tp2*) { return (allocator<_Tp2>&)(__a); }
480 _STLP_alloc_proxy (const _MaybeReboundAlloc& __a, _Value __p) :
[all …]
H A D_rope.h81 # define _STLP_CREATE_ALLOCATOR(__atype,__a, _Tp) (_Alloc_traits<_Tp,__atype>::create_allocator(__… argument
83 # define _STLP_CREATE_ALLOCATOR(__atype,__a, _Tp) __stl_alloc_create(__a,(_Tp*)0) argument
379 allocator_type __a) :
686 _CharT __tmp = __a;
687 __a = __b;
700 _CharT __tmp = __a; \
701 __a = __b; \
1284 : _M_tree_ptr(__a, __t) { }
1364 : _M_tree_ptr(__a, _S_RopeLeaf_from_unowned_char_ptr(__s, _S_char_ptr_len(__s),__a))
1369 : _M_tree_ptr(__a, (_S_RopeLeaf_from_unowned_char_ptr(__s, __len, __a)))
[all …]
H A D_set.h90 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
96 set(const _Compare& __comp, const allocator_type& __a) in _STLP_CREATE_ITERATOR_TRAITS()
98 : _M_t(__comp, __a) {} in _STLP_CREATE_ITERATOR_TRAITS()
113 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL) in _STLP_CREATE_ITERATOR_TRAITS()
114 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); } in _STLP_CREATE_ITERATOR_TRAITS()
122 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
130 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
265 multiset(const _Compare& __comp, const allocator_type& __a) in _STLP_CREATE_ITERATOR_TRAITS()
267 : _M_t(__comp, __a) {} in _STLP_CREATE_ITERATOR_TRAITS()
293 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
[all …]
H A D_map.h102 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
108 : _M_t(__comp, __a) {} in _STLP_CREATE_ITERATOR_TRAITS()
118 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL) in _STLP_CREATE_ITERATOR_TRAITS()
119 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); } in _STLP_CREATE_ITERATOR_TRAITS()
134 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
135 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); } in _STLP_CREATE_ITERATOR_TRAITS()
142 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
295 : _M_t(__comp, __a) { } in _STLP_CREATE_ITERATOR_TRAITS()
311 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL) in _STLP_CREATE_ITERATOR_TRAITS()
319 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
[all …]
H A D_unordered_set.h80 : _M_ht(__n, __hf, __eql, __a) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
92 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
93 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
99 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
100 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
106 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
107 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
230 : _M_ht(__n, __hf, __eql, __a) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
243 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
250 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
H A D_unordered_map.h86 : _M_ht(__n, __hf, __eql, __a) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
98 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
99 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
105 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
106 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
112 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
113 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
254 : _M_ht(__n, __hf, __eql, __a) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
267 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
274 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
H A D_hash_set.h91 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
96 const allocator_type& __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
98 : _M_ht(__n, __hf, __eql, __a) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
123 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
146 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
162 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
278 const allocator_type& __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
279 : _M_ht(__n, __hf, __eql, __a) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
305 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
328 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
H A D_hash_map.h94 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
95 : _M_ht(__n, __hf, __eql, __a) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
128 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
144 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
145 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
160 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
161 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
286 : _M_ht(__n, __hf, __eql, __a) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
319 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
336 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
H A D_string_base.h110 _String_base(const allocator_type& __a) in _String_base() argument
112 : _M_finish(_M_buffers._M_static_buf), _M_start_of_storage(__a, _M_buffers._M_static_buf) in _String_base()
114 : _M_end_of_storage(0), _M_finish(0), _M_start_of_storage(__a, (_Tp*)0) in _String_base()
118 _String_base(const allocator_type& __a, size_t __n) argument
120 : _M_finish(_M_buffers._M_static_buf), _M_start_of_storage(__a, _M_buffers._M_static_buf) {
122 : _M_end_of_storage(0), _M_finish(0), _M_start_of_storage(__a, (_Tp*)0) {
H A D_string_workaround.h49 : _STLP_NO_MEM_T_STRING_BASE(__a) {} in _STLP_NO_MEM_T_STRING_BASE() argument
52 const allocator_type& __a = allocator_type())
53 : _STLP_NO_MEM_T_STRING_BASE(__r, __n, __a) {} in _STLP_NO_MEM_T_STRING_BASE() argument
59 const allocator_type& __a = allocator_type())
60 : _STLP_NO_MEM_T_STRING_BASE(__s, __pos, __n, __a) {} in _STLP_NO_MEM_T_STRING_BASE() argument
63 const allocator_type& __a = allocator_type())
64 : _STLP_NO_MEM_T_STRING_BASE(__s, __n, __a) {} in _STLP_NO_MEM_T_STRING_BASE() argument
67 const allocator_type& __a = allocator_type())
68 : _STLP_NO_MEM_T_STRING_BASE(__s, __a) {} in _STLP_NO_MEM_T_STRING_BASE() argument
71 const allocator_type& __a = allocator_type())
[all …]
H A D_list.h188 _List_base(const allocator_type& __a) : _M_node(_STLP_CONVERT_ALLOCATOR(__a, _Node), _Node_base())
307 const allocator_type& __a = allocator_type())
317 : _STLP_PRIV _List_base<_Tp, _Alloc>(__a)
325 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL)
326 : _STLP_PRIV _List_base<_Tp, _Alloc>(__a)
337 const allocator_type& __a = allocator_type())
338 : _STLP_PRIV _List_base<_Tp, _Alloc>(__a)
341 const allocator_type& __a = allocator_type())
342 : _STLP_PRIV _List_base<_Tp, _Alloc>(__a)
351 list(const allocator_type& __a)
[all …]
/reactos/sdk/lib/3rdparty/stlport/test/unit/
H A Dstack_allocator.h177 __stl_alloc_rebind(StackAllocator<_Tp1>& __a, const _Tp2*) { return (StackAllocator<_Tp2>&)(__a); } in __stl_alloc_rebind() argument
180 __stl_alloc_create(const StackAllocator<_Tp1>& __a, const _Tp2*) { return StackAllocator<_Tp2>(__a.… in __stl_alloc_create() argument
185 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()
195 inline void swap(StackAllocator<pair<const int, int> >& __a, in swap() argument
197 { __a.swap(__b); } in swap()
/reactos/sdk/lib/3rdparty/stlport/src/
H A Dallocators.cpp985 return _S_chunk_alloc(__p_size, __nobjs, __a); in _S_chunk_alloc()
994 __state_type* __a; in allocate() local
1001 __a = _S_get_per_thread_state(); in allocate()
1006 void *__r = __a->_M_refill(__n); in allocate()
1018 __state_type* __a; in deallocate() local
1025 __a = _S_get_per_thread_state(); in deallocate()
1046 _STLP_auto_lock __lock(__a->_M_lock); in allocate()
1051 void *__r = __a->_M_refill(__n); in allocate()
1071 _STLP_auto_lock __lock(__a->_M_lock); in deallocate()
1107 { return _Pthread_alloc_impl::allocate(__n, __a); } in allocate()
[all …]
/reactos/sdk/include/c++/stlport/stl/pointers/
H A D_vector.h106 explicit vector(const allocator_type& __a = allocator_type())
107 : _M_impl(_STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {} in _M_impl() argument
114 const allocator_type& __a = allocator_type())
116 _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {} in _M_impl() argument
134 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL ) in vector()
136 _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {} in vector()
146 const allocator_type& __a = allocator_type())
148 _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {} in _M_impl() argument
H A D_list.h92 explicit list(const allocator_type& __a = allocator_type())
93 : _M_impl(_STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {} in _M_impl() argument
100 const allocator_type& __a = allocator_type())
102 _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {} in _M_impl() argument
112 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL) in list()
114 : _M_impl(__first, __last, _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {} in list()
116 : _M_impl(_STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {
134 const allocator_type& __a = allocator_type())
137 _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {} in _M_impl() argument
139 const allocator_type& __a = allocator_type())
[all …]
H A D_set.h131 const allocator_type& __a = allocator_type())
132 : _M_t(__comp, _STLP_CONVERT_ALLOCATOR(__a, _KeyStorageType)) {}
160 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL)
161 : _M_t(__comp, _STLP_CONVERT_ALLOCATOR(__a, _KeyStorageType)) {
178 : _M_t(__comp, _STLP_CONVERT_ALLOCATOR(__a, _KeyStorageType)) {
189 : _M_t(__comp, _STLP_CONVERT_ALLOCATOR(__a, _KeyStorageType))
378 const allocator_type& __a = allocator_type())
409 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL)
428 const allocator_type& __a = allocator_type())
440 const allocator_type& __a = allocator_type())
[all …]
H A D_deque.h159 explicit deque(const allocator_type& __a = allocator_type())
160 : _M_impl(_STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {}
169 const allocator_type& __a = allocator_type())
170 …: _M_impl(__n, cast_traits::to_storage_type_cref(__val), _STLP_CONVERT_ALLOCATOR(__a, _StorageType…
179 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL)
182 _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {
184 : _M_impl(_STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {
203 const allocator_type& __a = allocator_type() )
206 _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {}
209 const allocator_type& __a = allocator_type() )
[all …]
H A D_slist.h87 explicit slist(const allocator_type& __a = allocator_type())
88 : _M_impl(_STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {} in _M_impl() argument
95 const allocator_type& __a = allocator_type())
96 …: _M_impl(__n, cast_traits::to_storage_type_cref(__x), _STLP_CONVERT_ALLOCATOR(__a, _StorageType))… in _M_impl() argument
107 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL) in slist()
109 : _M_impl(__first, __last, _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {} in slist()
111 : _M_impl(_STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {
127 const allocator_type& __a = allocator_type() )
129 _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {}
131 const allocator_type& __a = allocator_type())
[all …]
/reactos/sdk/include/c++/stlport/stl/debug/
H A D_deque.h129 explicit deque(const allocator_type& __a = allocator_type()) :
130 _M_non_dbg_impl(__a), _M_iter_list(&_M_non_dbg_impl) {} in _M_non_dbg_impl() argument
140 const allocator_type& __a = allocator_type()) :
141 _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {} in _M_non_dbg_impl() argument
162 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL) in deque()
164 _M_non_dbg_impl(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last), __a), in deque()
177 const allocator_type& __a = allocator_type())
179 _M_non_dbg_impl(__first, __last, __a), in _ConstructCheck()
184 const allocator_type& __a = allocator_type())
186 _M_non_dbg_impl(__first._M_iterator, __last._M_iterator, __a), in _ConstructCheck()
H A D_vector.h174 explicit vector(const allocator_type& __a = allocator_type())
175 : _M_non_dbg_impl(__a), _M_iter_list(&_M_non_dbg_impl) {}
182 const allocator_type& __a = allocator_type())
183 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
208 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL)
210 _M_non_dbg_impl(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last), __a),
222 const allocator_type& __a = allocator_type())
223 : _ConstructCheck(__first, __last), _M_non_dbg_impl(__first, __last, __a),
228 const allocator_type& __a = allocator_type())
230 _M_non_dbg_impl(__first._M_iterator, __last._M_iterator, __a),
H A D_string.h91 : _M_non_dbg_impl(__a), _M_iter_list(&_M_non_dbg_impl) {} in _M_non_dbg_impl() argument
94 const allocator_type& __a = allocator_type())
102 const allocator_type& __a = allocator_type())
103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a),
107 const allocator_type& __a = allocator_type())
108 : _ConstructCheck(__s), _M_non_dbg_impl(__s, __n, __a), in _ConstructCheck()
112 const allocator_type& __a = allocator_type())
114 _M_non_dbg_impl(__s, __a), _M_iter_list(&_M_non_dbg_impl) {} in _ConstructCheck()
117 const allocator_type& __a = allocator_type())
134 const allocator_type& __a = allocator_type())
[all …]
H A D_list.h91 explicit list(const allocator_type& __a = allocator_type()) :
92 _M_non_dbg_impl(__a), _M_iter_list(&_M_non_dbg_impl) {} in _M_non_dbg_impl() argument
99 const allocator_type& __a = allocator_type())
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {} in _M_non_dbg_impl() argument
122 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL) in list()
124 _M_non_dbg_impl(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last), __a), in list()
136 const allocator_type& __a = allocator_type())
138 _M_non_dbg_impl(__first, __last, __a), in _ConstructCheck()
141 const allocator_type& __a = allocator_type())
143 _M_non_dbg_impl(__first._M_iterator, __last._M_iterator, __a), in _ConstructCheck()

12