Searched defs:__a (Results 226 - 250 of 1107) sorted by relevance

1234567891011>>

/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/include/c++/4.8.3/backward/
H A Dauto_ptr.h107 * @param __a Another %auto_ptr of the same type.
109 * This object now @e owns the object previously owned by @a __a,
112 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { } argument
116 * @param __a Another %auto_ptr of a different but related type.
121 * This object now @e owns the object previously owned by @a __a,
125 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { } argument
129 * @param __a Another %auto_ptr of the same type.
131 * This object now @e owns the object previously owned by @a __a,
136 operator =(auto_ptr& __a) argument
154 operator =(auto_ptr<_Tp1>& __a) argument
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/include/c++/4.8.3/bits/
H A Dboost_concept_check.h166 _Tp __a _IsUnused; // require default constructor
174 __a = __a; // require assignment operator
175 __const_constraints(__a);
178 __a = __b; // const required for argument to assignment
180 _Tp __a; member in struct:_AssignableConcept
189 _Tp __a(__b); // require copy constructor
190 _Tp* __ptr _IsUnused = &__a; // require address of operator
191 __const_constraints(__a);
193 void __const_constraints(const _Tp& __a) { argument
213 _Tp __a; member in struct:_SGIAssignableConcept
246 _Tp __a, __b; member in struct:_EqualityComparableConcept
[all...]
H A Dchar_traits.h110 find(const char_type* __s, std::size_t __n, const char_type& __a);
119 assign(char_type* __s, std::size_t __n, char_type __a);
169 find(const char_type* __s, std::size_t __n, const char_type& __a) argument
172 if (eq(__s[__i], __a))
199 assign(char_type* __s, std::size_t __n, char_type __a) argument
202 std::fill_n(__s, __n, __a);
262 find(const char_type* __s, size_t __n, const char_type& __a) argument
263 { return static_cast<const char_type*>(__builtin_memchr(__s, __a, __n)); }
274 assign(char_type* __s, size_t __n, char_type __a) argument
275 { return static_cast<char_type*>(__builtin_memset(__s, __a, __
333 find(const char_type* __s, size_t __n, const char_type& __a) argument
345 assign(char_type* __s, size_t __n, char_type __a) argument
424 find(const char_type* __s, size_t __n, const char_type& __a) argument
447 assign(char_type* __s, size_t __n, char_type __a) argument
517 find(const char_type* __s, size_t __n, const char_type& __a) argument
540 assign(char_type* __s, size_t __n, char_type __a) argument
[all...]
H A Dshared_ptr.h154 * @param __a An allocator.
165 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a) argument
166 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
173 * @param __a An allocator.
184 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) argument
185 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
314 shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a, argument
316 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
321 allocate_shared(const _Alloc& __a, _Args&&... __args);
327 operator==(const shared_ptr<_Tp1>& __a,
595 allocate_shared(const _Alloc& __a, _Args&&... __args) argument
[all...]
H A Dvalarray_after.h72 _GBase (_Array<_Tp> __a, const valarray<size_t>& __i) argument
73 : _M_array (__a), _M_index(__i) {}
106 _GClos (_Array<_Tp> __a, const valarray<size_t>& __i) argument
107 : _Base (__a, __i) {}
153 _IClos (const valarray<_Tp>& __a, const valarray<size_t>& __i) argument
154 : _Base (__a, __i) {}
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/include/c++/4.8.3/ext/
H A Dalloc_traits.h154 construct(_Alloc& __a, _Ptr __p, _Args&&... __args) argument
156 _Base_type::construct(__a, std::addressof(*__p),
163 destroy(_Alloc& __a, _Ptr __p) argument
164 { _Base_type::destroy(__a, std::addressof(*__p)); }
166 static _Alloc _S_select_on_copy(const _Alloc& __a) argument
167 { return _Base_type::select_on_container_copy_construction(__a); }
169 static void _S_on_swap(_Alloc& __a, _Alloc& __b) argument
170 { std::__alloc_on_swap(__a, __b); }
208 allocate(_Alloc& __a, size_type __n) argument
209 { return __a
211 deallocate(_Alloc& __a, pointer __p, size_type __n) argument
215 construct(_Alloc& __a, pointer __p, const _Tp& __arg) argument
218 destroy(_Alloc& __a, pointer __p) argument
221 max_size(const _Alloc& __a) argument
224 _S_select_on_copy(const _Alloc& __a) argument
226 _S_on_swap(_Alloc& __a, _Alloc& __b) argument
[all...]
H A Dvstring_util.h95 _Alloc_hider(const _Alloc1& __a, _CharT* __ptr) argument
96 : _Alloc1(__a), _M_p(__ptr) { }
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/
H A Dauto_ptr.h107 * @param __a Another %auto_ptr of the same type.
109 * This object now @e owns the object previously owned by @a __a,
112 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { } argument
116 * @param __a Another %auto_ptr of a different but related type.
121 * This object now @e owns the object previously owned by @a __a,
125 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { } argument
129 * @param __a Another %auto_ptr of the same type.
131 * This object now @e owns the object previously owned by @a __a,
136 operator =(auto_ptr& __a) argument
154 operator =(auto_ptr<_Tp1>& __a) argument
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
H A Dboost_concept_check.h166 _Tp __a _IsUnused; // require default constructor
174 __a = __a; // require assignment operator
175 __const_constraints(__a);
178 __a = __b; // const required for argument to assignment
180 _Tp __a; member in struct:_AssignableConcept
189 _Tp __a(__b); // require copy constructor
190 _Tp* __ptr _IsUnused = &__a; // require address of operator
191 __const_constraints(__a);
193 void __const_constraints(const _Tp& __a) { argument
213 _Tp __a; member in struct:_SGIAssignableConcept
246 _Tp __a, __b; member in struct:_EqualityComparableConcept
[all...]
H A Dchar_traits.h110 find(const char_type* __s, std::size_t __n, const char_type& __a);
119 assign(char_type* __s, std::size_t __n, char_type __a);
169 find(const char_type* __s, std::size_t __n, const char_type& __a) argument
172 if (eq(__s[__i], __a))
199 assign(char_type* __s, std::size_t __n, char_type __a) argument
202 std::fill_n(__s, __n, __a);
262 find(const char_type* __s, size_t __n, const char_type& __a) argument
263 { return static_cast<const char_type*>(__builtin_memchr(__s, __a, __n)); }
274 assign(char_type* __s, size_t __n, char_type __a) argument
275 { return static_cast<char_type*>(__builtin_memset(__s, __a, __
333 find(const char_type* __s, size_t __n, const char_type& __a) argument
345 assign(char_type* __s, size_t __n, char_type __a) argument
424 find(const char_type* __s, size_t __n, const char_type& __a) argument
447 assign(char_type* __s, size_t __n, char_type __a) argument
517 find(const char_type* __s, size_t __n, const char_type& __a) argument
540 assign(char_type* __s, size_t __n, char_type __a) argument
[all...]
H A Dshared_ptr.h154 * @param __a An allocator.
165 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a) argument
166 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
173 * @param __a An allocator.
184 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) argument
185 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
314 shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a, argument
316 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
321 allocate_shared(const _Alloc& __a, _Args&&... __args);
327 operator==(const shared_ptr<_Tp1>& __a,
595 allocate_shared(const _Alloc& __a, _Args&&... __args) argument
[all...]
H A Dvalarray_after.h72 _GBase (_Array<_Tp> __a, const valarray<size_t>& __i) argument
73 : _M_array (__a), _M_index(__i) {}
106 _GClos (_Array<_Tp> __a, const valarray<size_t>& __i) argument
107 : _Base (__a, __i) {}
153 _IClos (const valarray<_Tp>& __a, const valarray<size_t>& __i) argument
154 : _Base (__a, __i) {}
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
H A Dalloc_traits.h154 construct(_Alloc& __a, _Ptr __p, _Args&&... __args) argument
156 _Base_type::construct(__a, std::addressof(*__p),
163 destroy(_Alloc& __a, _Ptr __p) argument
164 { _Base_type::destroy(__a, std::addressof(*__p)); }
166 static _Alloc _S_select_on_copy(const _Alloc& __a) argument
167 { return _Base_type::select_on_container_copy_construction(__a); }
169 static void _S_on_swap(_Alloc& __a, _Alloc& __b) argument
170 { std::__alloc_on_swap(__a, __b); }
208 allocate(_Alloc& __a, size_type __n) argument
209 { return __a
211 deallocate(_Alloc& __a, pointer __p, size_type __n) argument
215 construct(_Alloc& __a, pointer __p, const _Tp& __arg) argument
218 destroy(_Alloc& __a, pointer __p) argument
221 max_size(const _Alloc& __a) argument
224 _S_select_on_copy(const _Alloc& __a) argument
226 _S_on_swap(_Alloc& __a, _Alloc& __b) argument
[all...]
H A Dvstring_util.h95 _Alloc_hider(const _Alloc1& __a, _CharT* __ptr) argument
96 : _Alloc1(__a), _M_p(__ptr) { }
/prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/
H A Dtmmintrin.h34 _mm_abs_pi8(__m64 __a) argument
36 return (__m64)__builtin_ia32_pabsb((__v8qi)__a);
40 _mm_abs_epi8(__m128i __a) argument
42 return (__m128i)__builtin_ia32_pabsb128((__v16qi)__a);
46 _mm_abs_pi16(__m64 __a) argument
48 return (__m64)__builtin_ia32_pabsw((__v4hi)__a);
52 _mm_abs_epi16(__m128i __a) argument
54 return (__m128i)__builtin_ia32_pabsw128((__v8hi)__a);
58 _mm_abs_pi32(__m64 __a) argument
60 return (__m64)__builtin_ia32_pabsd((__v2si)__a);
64 _mm_abs_epi32(__m128i __a) argument
80 _mm_hadd_epi16(__m128i __a, __m128i __b) argument
86 _mm_hadd_epi32(__m128i __a, __m128i __b) argument
92 _mm_hadd_pi16(__m64 __a, __m64 __b) argument
98 _mm_hadd_pi32(__m64 __a, __m64 __b) argument
104 _mm_hadds_epi16(__m128i __a, __m128i __b) argument
110 _mm_hadds_pi16(__m64 __a, __m64 __b) argument
116 _mm_hsub_epi16(__m128i __a, __m128i __b) argument
122 _mm_hsub_epi32(__m128i __a, __m128i __b) argument
128 _mm_hsub_pi16(__m64 __a, __m64 __b) argument
134 _mm_hsub_pi32(__m64 __a, __m64 __b) argument
140 _mm_hsubs_epi16(__m128i __a, __m128i __b) argument
146 _mm_hsubs_pi16(__m64 __a, __m64 __b) argument
152 _mm_maddubs_epi16(__m128i __a, __m128i __b) argument
158 _mm_maddubs_pi16(__m64 __a, __m64 __b) argument
164 _mm_mulhrs_epi16(__m128i __a, __m128i __b) argument
170 _mm_mulhrs_pi16(__m64 __a, __m64 __b) argument
176 _mm_shuffle_epi8(__m128i __a, __m128i __b) argument
182 _mm_shuffle_pi8(__m64 __a, __m64 __b) argument
188 _mm_sign_epi8(__m128i __a, __m128i __b) argument
194 _mm_sign_epi16(__m128i __a, __m128i __b) argument
200 _mm_sign_epi32(__m128i __a, __m128i __b) argument
206 _mm_sign_pi8(__m64 __a, __m64 __b) argument
212 _mm_sign_pi16(__m64 __a, __m64 __b) argument
218 _mm_sign_pi32(__m64 __a, __m64 __b) argument
[all...]
/prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/
H A Dtmmintrin.h34 _mm_abs_pi8(__m64 __a) argument
36 return (__m64)__builtin_ia32_pabsb((__v8qi)__a);
40 _mm_abs_epi8(__m128i __a) argument
42 return (__m128i)__builtin_ia32_pabsb128((__v16qi)__a);
46 _mm_abs_pi16(__m64 __a) argument
48 return (__m64)__builtin_ia32_pabsw((__v4hi)__a);
52 _mm_abs_epi16(__m128i __a) argument
54 return (__m128i)__builtin_ia32_pabsw128((__v8hi)__a);
58 _mm_abs_pi32(__m64 __a) argument
60 return (__m64)__builtin_ia32_pabsd((__v2si)__a);
64 _mm_abs_epi32(__m128i __a) argument
80 _mm_hadd_epi16(__m128i __a, __m128i __b) argument
86 _mm_hadd_epi32(__m128i __a, __m128i __b) argument
92 _mm_hadd_pi16(__m64 __a, __m64 __b) argument
98 _mm_hadd_pi32(__m64 __a, __m64 __b) argument
104 _mm_hadds_epi16(__m128i __a, __m128i __b) argument
110 _mm_hadds_pi16(__m64 __a, __m64 __b) argument
116 _mm_hsub_epi16(__m128i __a, __m128i __b) argument
122 _mm_hsub_epi32(__m128i __a, __m128i __b) argument
128 _mm_hsub_pi16(__m64 __a, __m64 __b) argument
134 _mm_hsub_pi32(__m64 __a, __m64 __b) argument
140 _mm_hsubs_epi16(__m128i __a, __m128i __b) argument
146 _mm_hsubs_pi16(__m64 __a, __m64 __b) argument
152 _mm_maddubs_epi16(__m128i __a, __m128i __b) argument
158 _mm_maddubs_pi16(__m64 __a, __m64 __b) argument
164 _mm_mulhrs_epi16(__m128i __a, __m128i __b) argument
170 _mm_mulhrs_pi16(__m64 __a, __m64 __b) argument
176 _mm_shuffle_epi8(__m128i __a, __m128i __b) argument
182 _mm_shuffle_pi8(__m64 __a, __m64 __b) argument
188 _mm_sign_epi8(__m128i __a, __m128i __b) argument
194 _mm_sign_epi16(__m128i __a, __m128i __b) argument
200 _mm_sign_epi32(__m128i __a, __m128i __b) argument
206 _mm_sign_pi8(__m64 __a, __m64 __b) argument
212 _mm_sign_pi16(__m64 __a, __m64 __b) argument
218 _mm_sign_pi32(__m64 __a, __m64 __b) argument
[all...]
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
H A Dboost_concept_check.h164 _Tp __a _IsUnused; // require default constructor
172 __a = __a; // require assignment operator
173 __const_constraints(__a);
176 __a = __b; // const required for argument to assignment
178 _Tp __a; member in struct:_AssignableConcept
187 _Tp __a(__b); // require copy constructor
188 _Tp* __ptr _IsUnused = &__a; // require address of operator
189 __const_constraints(__a);
191 void __const_constraints(const _Tp& __a) { argument
211 _Tp __a; member in struct:_SGIAssignableConcept
244 _Tp __a, __b; member in struct:_EqualityComparableConcept
[all...]
H A Dchar_traits.h117 find(const char_type* __s, std::size_t __n, const char_type& __a);
126 assign(char_type* __s, std::size_t __n, char_type __a);
176 find(const char_type* __s, std::size_t __n, const char_type& __a) argument
179 if (eq(__s[__i], __a))
206 assign(char_type* __s, std::size_t __n, char_type __a) argument
209 std::fill_n(__s, __n, __a);
266 find(const char_type* __s, size_t __n, const char_type& __a) argument
267 { return static_cast<const char_type*>(__builtin_memchr(__s, __a, __n)); }
278 assign(char_type* __s, size_t __n, char_type __a) argument
279 { return static_cast<char_type*>(__builtin_memset(__s, __a, __
337 find(const char_type* __s, size_t __n, const char_type& __a) argument
349 assign(char_type* __s, size_t __n, char_type __a) argument
425 find(const char_type* __s, size_t __n, const char_type& __a) argument
448 assign(char_type* __s, size_t __n, char_type __a) argument
518 find(const char_type* __s, size_t __n, const char_type& __a) argument
541 assign(char_type* __s, size_t __n, char_type __a) argument
[all...]
H A Dvalarray_after.h71 _GBase (_Array<_Tp> __a, const valarray<size_t>& __i) argument
72 : _M_array (__a), _M_index(__i) {}
105 _GClos (_Array<_Tp> __a, const valarray<size_t>& __i) argument
106 : _Base (__a, __i) {}
152 _IClos (const valarray<_Tp>& __a, const valarray<size_t>& __i) argument
153 : _Base (__a, __i) {}
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
H A Dvstring_util.h93 _Alloc_hider(const _Alloc1& __a, _CharT* __ptr) argument
94 : _Alloc1(__a), _M_p(__ptr) { }
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
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) {
/prebuilts/ndk/5/sources/cxx-stl/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);
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
H A Dboost_concept_check.h164 _Tp __a _IsUnused; // require default constructor
172 __a = __a; // require assignment operator
173 __const_constraints(__a);
176 __a = __b; // const required for argument to assignment
178 _Tp __a; member in struct:_AssignableConcept
187 _Tp __a(__b); // require copy constructor
188 _Tp* __ptr _IsUnused = &__a; // require address of operator
189 __const_constraints(__a);
191 void __const_constraints(const _Tp& __a) { argument
211 _Tp __a; member in struct:_SGIAssignableConcept
244 _Tp __a, __b; member in struct:_EqualityComparableConcept
[all...]
H A Dchar_traits.h117 find(const char_type* __s, std::size_t __n, const char_type& __a);
126 assign(char_type* __s, std::size_t __n, char_type __a);
176 find(const char_type* __s, std::size_t __n, const char_type& __a) argument
179 if (eq(__s[__i], __a))
206 assign(char_type* __s, std::size_t __n, char_type __a) argument
209 std::fill_n(__s, __n, __a);
266 find(const char_type* __s, size_t __n, const char_type& __a) argument
267 { return static_cast<const char_type*>(__builtin_memchr(__s, __a, __n)); }
278 assign(char_type* __s, size_t __n, char_type __a) argument
279 { return static_cast<char_type*>(__builtin_memset(__s, __a, __
337 find(const char_type* __s, size_t __n, const char_type& __a) argument
349 assign(char_type* __s, size_t __n, char_type __a) argument
425 find(const char_type* __s, size_t __n, const char_type& __a) argument
448 assign(char_type* __s, size_t __n, char_type __a) argument
518 find(const char_type* __s, size_t __n, const char_type& __a) argument
541 assign(char_type* __s, size_t __n, char_type __a) argument
[all...]

Completed in 461 milliseconds

1234567891011>>