Searched defs:__a (Results 1 - 25 of 33) sorted by relevance

12

/external/clang/test/PCH/
H A Dcxx-variadic-templates.h8 allocate_shared(const _Alloc& __a, _Args&& ...__args);
14 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args) argument
/external/compiler-rt/lib/
H A Ddivdc3.c21 __divdc3(double __a, double __b, double __c, double __d) argument
33 __real__ z = crt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __imag__ z = crt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw);
37 if ((__denom == 0.0) && (!crt_isnan(__a) || !crt_isnan(__b)))
39 __real__ z = crt_copysign(CRT_INFINITY, __c) * __a;
42 else if ((crt_isinf(__a) || crt_isinf(__b)) &&
45 __a = crt_copysign(crt_isinf(__a) ? 1.0 : 0.0, __a);
47 __real__ z = CRT_INFINITY * (__a * __
[all...]
H A Ddivsc3.c21 __divsc3(float __a, float __b, float __c, float __d) argument
33 __real__ z = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __imag__ z = crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw);
37 if ((__denom == 0) && (!crt_isnan(__a) || !crt_isnan(__b)))
39 __real__ z = crt_copysignf(CRT_INFINITY, __c) * __a;
42 else if ((crt_isinf(__a) || crt_isinf(__b)) &&
45 __a = crt_copysignf(crt_isinf(__a) ? 1 : 0, __a);
47 __real__ z = CRT_INFINITY * (__a * __
[all...]
H A Ddivxc3.c22 __divxc3(long double __a, long double __b, long double __c, long double __d) argument
34 __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
35 __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
38 if ((__denom == 0) && (!crt_isnan(__a) || !crt_isnan(__b)))
40 __real__ z = crt_copysignl(CRT_INFINITY, __c) * __a;
43 else if ((crt_isinf(__a) || crt_isinf(__b)) &&
46 __a = crt_copysignl(crt_isinf(__a) ? 1 : 0, __a);
48 __real__ z = CRT_INFINITY * (__a * __
[all...]
H A Dmuldc3.c21 __muldc3(double __a, double __b, double __c, double __d) argument
23 double __ac = __a * __c;
25 double __ad = __a * __d;
33 if (crt_isinf(__a) || crt_isinf(__b))
35 __a = crt_copysign(crt_isinf(__a) ? 1 : 0, __a);
47 if (crt_isnan(__a))
48 __a = crt_copysign(0, __a);
[all...]
H A Dmulsc3.c21 __mulsc3(float __a, float __b, float __c, float __d) argument
23 float __ac = __a * __c;
25 float __ad = __a * __d;
33 if (crt_isinf(__a) || crt_isinf(__b))
35 __a = crt_copysignf(crt_isinf(__a) ? 1 : 0, __a);
47 if (crt_isnan(__a))
48 __a = crt_copysignf(0, __a);
[all...]
H A Dmulxc3.c23 __mulxc3(long double __a, long double __b, long double __c, long double __d) argument
25 long double __ac = __a * __c;
27 long double __ad = __a * __d;
35 if (crt_isinf(__a) || crt_isinf(__b))
37 __a = crt_copysignl(crt_isinf(__a) ? 1 : 0, __a);
49 if (crt_isnan(__a))
50 __a = crt_copysignl(0, __a);
[all...]
/external/clang/lib/include/
H A Dammintrin.h55 _mm_stream_sd(double *__p, __m128d __a) argument
57 __builtin_ia32_movntsd(__p, (__v2df)__a);
61 _mm_stream_ss(float *__p, __m128 __a) argument
63 __builtin_ia32_movntss(__p, (__v4sf)__a);
/external/clang/lib/Headers/
H A Dammintrin.h55 _mm_stream_sd(double *__p, __m128d __a) argument
57 __builtin_ia32_movntsd(__p, (__v2df)__a);
61 _mm_stream_ss(float *__p, __m128 __a) argument
63 __builtin_ia32_movntss(__p, (__v4sf)__a);
/external/speex/libspeex/
H A Dcb_search_sse.h40 float __a[4]; member in union:__anon12305
46 *__Z = __u.__a[0];
47 *__Y = __u.__a[1];
48 *__X = __u.__a[2];
49 *__W = __u.__a[3];
/external/stlport/stlport/stl/
H A D_iostream_string.h85 __stl_alloc_rebind(_STLP_PRIV __iostring_allocator<_Tp>& __a, const _Tp*) argument
86 { return __a; }
H A D_pair.h62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} argument
H A D_string_base.h110 _String_base(const allocator_type& __a) argument
112 : _M_finish(_M_buffers._M_static_buf), _M_start_of_storage(__a, _M_buffers._M_static_buf)
114 : _M_end_of_storage(0), _M_finish(0), _M_start_of_storage(__a, (_Tp*)0)
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_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
72 _Tp __tmp = __a;
73 __a = __b;
81 inline void swap(_Tp& __a, _Tp& __b) { argument
89 _STLP_PRIV __swap_aux(__a, __b, _Implemented());
91 _Tp __tmp = __a;
92 __a = __b;
139 inline const _Tp& (min)(const _Tp& __a, cons
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_hash_set.h91 const allocator_type& __a = allocator_type())
96 const allocator_type& __a)
98 : _M_ht(__n, __hf, __eql, __a) {}
122 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL)
123 : _M_ht(__n, __hf, __eql, __a)
145 const allocator_type& __a = allocator_type())
146 : _M_ht(__n, __hf, __eql, __a)
161 const allocator_type& __a = allocator_type())
162 : _M_ht(__n, __hf, __eql, __a)
278 const allocator_type& __a)
277 hash_multiset(size_type __n, const hasher& __hf, const key_equal& __eql, const allocator_type& __a) argument
[all...]
H A D_string.c640 const allocator_type& __a)
641 : _STLP_PRIV _String_base<_CharT,_Alloc>(__a) {
639 basic_string(const _CharT* __s, const allocator_type& __a) argument
H A D_alloc.h181 # define _STLP_CONVERT_ALLOCATOR(__a, _Tp) __stl_alloc_create(__a,(_Tp*)0)
183 # define _STLP_CONVERT_ALLOCATOR(__a, _Tp) __a
188 # define _STLP_CONVERT_ALLOCATOR(__a, _Tp) __stl_alloc_create(__a,(_Tp*)0)
202 static allocator_type create_allocator(const _Orig& __a) argument
203 { return allocator_type(_STLP_CONVERT_ALLOCATOR(__a, _Tp)); }
445 static allocator_type create_allocator(const allocator<_Tp1 >& __a) argument
446 { return allocator_type(_STLP_CONVERT_ALLOCATOR(__a, _T
453 __stl_alloc_create(const _Alloc& __a, const _Tp*) argument
462 __stl_alloc_rebind(allocator<_Tp1>& __a, const _Tp2*) argument
480 _STLP_alloc_proxy(const _MaybeReboundAlloc& __a, _Value __p) argument
[all...]
H A Dconcept_checks.h369 __assignment_operator_requirement_violation(_Type __a) { argument
370 __a = __a;
371 return __a;
375 __copy_constructor_requirement_violation(_Type __a) { argument
376 _Type __c(__a);
381 __const_parameter_required_for_copy_constructor(_Type /* __a */,
388 __const_parameter_required_for_assignment_operator(_Type __a, argument
390 __a = __b;
391 return __a;
395 __less_than_comparable_requirement_violation(_Type __a, _Type __b) argument
401 __equality_comparable_requirement_violation(_Type __a, _Type __b) argument
529 _Assignable_requirement_violation(_Type __a) argument
542 _DefaultConstructible_requirement_violation(_Type __a) argument
551 _EqualityComparable_requirement_violation(_Type __a) argument
559 _LessThanComparable_requirement_violation(_Type __a) argument
784 _Allocator_requirement_violation(_Alloc __a) argument
[all...]
H A D_bvector.h278 _Bvector_base(const allocator_type& __a) argument
279 : _M_start(), _M_finish(), _M_end_of_storage(_STLP_CONVERT_ALLOCATOR(__a, __chunk_type),
507 explicit __BVECTOR(const allocator_type& __a = allocator_type())
508 : _STLP_PRIV _Bvector_base<_Alloc >(__a) {}
511 const allocator_type& __a = allocator_type())
512 : _STLP_PRIV _Bvector_base<_Alloc >(__a) {
552 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL)
553 : _STLP_PRIV _Bvector_base<_Alloc >(__a) {
559 const allocator_type& __a = allocator_type())
560 : _STLP_PRIV _Bvector_base<_Alloc >(__a) {
[all...]
H A D_deque.h356 _Deque_base(const allocator_type& __a, size_t __num_elements) argument
357 : _M_start(), _M_finish(), _M_map(_STLP_CONVERT_ALLOCATOR(__a, _Tp*), 0),
358 _M_map_size(__a, (size_t)0)
361 _Deque_base(const allocator_type& __a) argument
362 : _M_start(), _M_finish(), _M_map(_STLP_CONVERT_ALLOCATOR(__a, _Tp*), 0),
363 _M_map_size(__a, (size_t)0) {}
478 explicit deque(const allocator_type& __a = allocator_type())
482 deque(const allocator_type& __a)
484 : _STLP_PRIV _Deque_base<_Tp, _Alloc>(__a, 0) {}
500 deque(size_type __n, const value_type& __val, const allocator_type& __a
[all...]
/external/stlport/stlport/stl/config/
H A D_windows.h206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) { argument
217 return reinterpret_cast<void*>(InterlockedExchange(reinterpret_cast<long*>(const_cast<void**>(__a)),
220 return (void*)InterlockedExchange((long*)__a, (long)__b);
/external/stlport/stlport/stl/debug/
H A D_tree.h125 _Rb_tree(const _Compare& __comp, const allocator_type& __a) argument
126 : _M_non_dbg_impl(__comp, __a), _M_iter_list(&_M_non_dbg_impl) {}
/external/stlport/test/eh/
H A DPrefix.h168 __stl_alloc_rebind(EH_allocator<_Tp1>& __a, const _Tp2*) { return (EH_allocator<_Tp2>&)(__a); } argument
/external/stlport/test/unit/
H A Dstack_allocator.h177 __stl_alloc_rebind(StackAllocator<_Tp1>& __a, const _Tp2*) { return (StackAllocator<_Tp2>&)(__a); } argument
180 __stl_alloc_create(const StackAllocator<_Tp1>& __a, const _Tp2*) { return StackAllocator<_Tp2>(__a.getState()); } argument
185 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
195 swap(StackAllocator<pair<const int, int> >& __a, StackAllocator<pair<const int, int> >& __b) argument
[all...]
/external/stlport/src/
H A Dallocators.cpp842 static void * allocate(size_t& __n, __state_type* __a);
845 static void deallocate(void *__p, size_t __n, __state_type* __a);
935 char *_Pthread_alloc_impl::_S_chunk_alloc(size_t __p_size, size_t &__nobjs, _Pthread_alloc_per_thread_state *__a) { argument
960 __obj * volatile * __my_free_list = __a->__free_list + _S_freelist_index(__bytes_left);
985 return _S_chunk_alloc(__p_size, __nobjs, __a);
994 __state_type* __a; local
1001 __a = _S_get_per_thread_state();
1003 __my_free_list = __a->__free_list + _S_freelist_index(__n);
1006 void *__r = __a->_M_refill(__n);
1018 __state_type* __a; local
1034 allocate(size_t& __n, __state_type* __a) argument
1059 deallocate(void *__p, size_t __n, __state_type* __a) argument
1106 allocate(size_t& __n, __state_type* __a) argument
1108 deallocate(void *__p, size_t __n, __state_type* __a) argument
[all...]

Completed in 1599 milliseconds

12