Home
last modified time | relevance | path

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

1234

/ndk/tests/build/b9193874-neon/jni/
Db9193874-neon.c24 vaddq_u16 (uint16x8_t __a, uint16x8_t __b) in vaddq_u16() argument
26 return (uint16x8_t)__builtin_neon_vaddv8hi ((int16x8_t) __a, (int16x8_t) __b, 0); in vaddq_u16()
29 vaddl_s16 (int16x4_t __a, int16x4_t __b) in vaddl_s16() argument
31 return (int32x4_t)__builtin_neon_vaddlv4hi (__a, __b, 1); in vaddl_s16()
34 vaddl_u8 (uint8x8_t __a, uint8x8_t __b) in vaddl_u8() argument
36 return (uint16x8_t)__builtin_neon_vaddlv8qi ((int8x8_t) __a, (int8x8_t) __b, 0); in vaddl_u8()
39 vaddw_u8 (uint16x8_t __a, uint8x8_t __b) in vaddw_u8() argument
41 return (uint16x8_t)__builtin_neon_vaddwv8qi ((int16x8_t) __a, (int8x8_t) __b, 0); in vaddw_u8()
44 vrhadd_u8 (uint8x8_t __a, uint8x8_t __b) in vrhadd_u8() argument
46 return (uint8x8_t)__builtin_neon_vhaddv8qi ((int8x8_t) __a, (int8x8_t) __b, 4); in vrhadd_u8()
[all …]
/ndk/tests/device/test-stlport/unit/
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()
/ndk/tests/device/test-gnustl-full/unit/
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()
/ndk/sources/cxx-stl/stlport/stlport/stl/
Dconcept_checks.h369 __assignment_operator_requirement_violation(_Type __a) {
370 __a = __a;
371 return __a;
375 __copy_constructor_requirement_violation(_Type __a) {
376 _Type __c(__a);
388 __const_parameter_required_for_assignment_operator(_Type __a,
390 __a = __b;
391 return __a;
395 __less_than_comparable_requirement_violation(_Type __a, _Type __b) {
396 if (__a < __b || __a > __b || __a <= __b || __a >= __b) return __a;
[all …]
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
72 _Tp __tmp = __a; in __swap_aux()
73 __a = __b; in __swap_aux()
81 inline void swap(_Tp& __a, _Tp& __b) { in swap() argument
89 _STLP_PRIV __swap_aux(__a, __b, _Implemented()); in swap()
91 _Tp __tmp = __a; in swap()
92 __a = __b; in swap()
139 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b) { return __b < __a ? __b : __a; }
[all …]
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()
445 static allocator_type create_allocator(const allocator<_Tp1 >& __a)
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); }
[all …]
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()
123 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); } in _STLP_CREATE_ITERATOR_TRAITS()
130 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
131 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); } in _STLP_CREATE_ITERATOR_TRAITS()
259 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
[all …]
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) :
381 _M_tag(__t), _M_is_balanced(__b), _M_depth(__d), _M_c_string(0), _M_size(__a, _p_size) {
412 allocator_type __a) {
416__a.deallocate(__s, _S_rounded_up_size(__len)); //*ty 03/24/2001 - restored not to use __stl_al…
418 __stl_alloc_rebind (__a, (_CharT*)0).deallocate(__s, _S_rounded_up_size(__len));
470 _Rope_RopeLeaf( _CharT* __d, size_t _p_size, allocator_type __a)
471 : _Rope_RopeRep<_CharT,_Alloc>(_RopeRep::_S_leaf, 0, true, _p_size, __a),
503 _Rope_RopeConcatenation(_RopeRep* __l, _RopeRep* __r, allocator_type __a)
[all …]
D_map.h102 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
106 explicit map(const _Compare& __comp, const allocator_type& __a) 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()
143 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); } in _STLP_CREATE_ITERATOR_TRAITS()
294 const allocator_type& __a = allocator_type()) in _STLP_CREATE_ITERATOR_TRAITS()
[all …]
D_unordered_set.h79 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
80 : _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()
229 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
230 : _M_ht(__n, __hf, __eql, __a) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
D_unordered_map.h85 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
86 : _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()
253 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
254 : _M_ht(__n, __hf, __eql, __a) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
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) {
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()
122 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
123 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
145 const allocator_type& __a = allocator_type()) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
146 : _M_ht(__n, __hf, __eql, __a) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
161 const allocator_type& __a = allocator_type()) 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()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dforward_list414 __forward_list_base(const allocator_type& __a)
415 : __before_begin_(__begin_node(), __node_allocator(__a)) {}
421 __forward_list_base(__forward_list_base&& __x, const allocator_type& __a);
505 const allocator_type& __a)
506 : __before_begin_(__begin_node(), __node_allocator(__a))
539 __node_allocator& __a = __alloc();
543 __node_traits::destroy(__a, _VSTD::addressof(__p->__value_));
544 __node_traits::deallocate(__a, __p, 1);
578 explicit forward_list(const allocator_type& __a);
581 explicit forward_list(size_type __n, const allocator_type& __a);
[all …]
Ddeque956 explicit __deque_base(const allocator_type& __a);
964 __deque_base(__deque_base&& __c, const allocator_type& __a);
1098 __deque_base<_Tp, _Allocator>::__deque_base(const allocator_type& __a)
1099 : __map_(__pointer_allocator(__a)), __start_(0), __size_(0, __a) {}
1125 __deque_base<_Tp, _Allocator>::__deque_base(__deque_base&& __c, const allocator_type& __a)
1126 : __map_(_VSTD::move(__c.__map_), __pointer_allocator(__a)),
1128 __size_(_VSTD::move(__c.size()), __a)
1130 if (__a == __c.__alloc())
1161 allocator_type& __a = __alloc();
1163 __alloc_traits::destroy(__a, _VSTD::addressof(*__i));
[all …]
Dunordered_set378 unordered_set(size_type __n, const allocator_type& __a)
379 : unordered_set(__n, hasher(), key_equal(), __a) {}
381 unordered_set(size_type __n, const hasher& __hf, const allocator_type& __a)
382 : unordered_set(__n, __hf, key_equal(), __a) {}
385 const allocator_type& __a);
395 const allocator_type& __a);
400 size_type __n, const allocator_type& __a)
401 : unordered_set(__first, __last, __n, hasher(), key_equal(), __a) {}
404 size_type __n, const hasher& __hf, const allocator_type& __a)
405 : unordered_set(__first, __last, __n, __hf, key_equal(), __a) {}
[all …]
Dqueue239 explicit queue(const _Alloc& __a,
242 : c(__a) {}
245 queue(const queue& __q, const _Alloc& __a,
248 : c(__q.c, __a) {}
251 queue(const container_type& __c, const _Alloc& __a,
254 : c(__c, __a) {}
258 queue(container_type&& __c, const _Alloc& __a,
261 : c(_VSTD::move(__c), __a) {}
264 queue(queue&& __q, const _Alloc& __a,
267 : c(_VSTD::move(__q.c), __a) {}
[all …]
D__sso_allocator70 bool operator==(__sso_allocator& __a) const {return &buf_ == &__a.buf_;}
72 bool operator!=(__sso_allocator& __a) const {return &buf_ != &__a.buf_;}
D__functional_03320 explicit __func(_Fp __f, _Alloc __a) : __f_(_VSTD::move(__f), _VSTD::move(__a)) {}
337 _Ap __a(__f_.second());
339 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
340 ::new (__hold.get()) __func(__f_.first(), _Alloc(__a));
363 _Ap __a(__f_.second());
365 __a.deallocate(this, 1);
402 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a)
403 : __f_(_VSTD::move(__f), _VSTD::move(__a)) {}
420 _Ap __a(__f_.second());
422 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
[all …]
D__split_buffer61 explicit __split_buffer(__alloc_rr& __a);
62 explicit __split_buffer(const __alloc_rr& __a);
63 __split_buffer(size_type __cap, size_type __start, __alloc_rr& __a);
69 __split_buffer(__split_buffer&& __c, const __alloc_rr& __a);
214 __alloc_rr& __a = this->__alloc();
217 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_));
233 __alloc_rr& __a = this->__alloc();
236 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_), __x);
252 __alloc_rr& __a = this->__alloc();
259 __split_buffer __buf(__new_cap, 0, __a);
[all …]
/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0012-Relax-some-__always_inline__-for-GCC-4.9.patch81 - _LIBCPP_INLINE_VISIBILITY explicit basic_string(const allocator_type& __a);
82 + _LIBCPP_INLINE_VISIBILITY_EXCEPT_GCC49 explicit basic_string(const allocator_type& __a);
84 basic_string(const basic_string& __str, const allocator_type& __a);
91 basic_string(basic_string&& __str, const allocator_type& __a);
96 basic_string(const value_type* __s, const allocator_type& __a);
100 basic_string(const value_type* __s, size_type __n, const allocator_type& __a);
105 basic_string(size_type __n, value_type __c, const allocator_type& __a);
121 basic_string<_CharT, _Traits, _Allocator>::basic_string(const allocator_type& __a)
122 : __r_(__a)
/ndk/sources/cxx-stl/stlport/src/
Dallocators.cpp842 static void * allocate(size_t& __n, __state_type* __a);
845 static void deallocate(void *__p, size_t __n, __state_type* __a);
935 …lloc_impl::_S_chunk_alloc(size_t __p_size, size_t &__nobjs, _Pthread_alloc_per_thread_state *__a) { in _S_chunk_alloc() argument
960 __obj * volatile * __my_free_list = __a->__free_list + _S_freelist_index(__bytes_left); in _S_chunk_alloc()
985 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()
1003 __my_free_list = __a->__free_list + _S_freelist_index(__n); in allocate()
1006 void *__r = __a->_M_refill(__n); in allocate()
1018 __state_type* __a; in deallocate() local
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
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
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 …]
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
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()

1234