HomeSort by relevance Sort by last modified time
    Searched refs:__a (Results 251 - 275 of 1286) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr1/
unordered_set.h 69 const allocator_type& __a = allocator_type())
72 std::_Identity<_Value>(), __a)
80 const allocator_type& __a = allocator_type())
83 std::_Identity<_Value>(), __a)
118 const allocator_type& __a = allocator_type())
121 std::_Identity<_Value>(), __a)
130 const allocator_type& __a = allocator_type())
133 std::_Identity<_Value>(), __a)
189 const allocator_type& __a = allocator_type())
190 : _Base(__n, __hf, __eql, __a)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
unordered_set.h 69 const allocator_type& __a = allocator_type())
72 std::_Identity<_Value>(), __a)
80 const allocator_type& __a = allocator_type())
83 std::_Identity<_Value>(), __a)
118 const allocator_type& __a = allocator_type())
121 std::_Identity<_Value>(), __a)
130 const allocator_type& __a = allocator_type())
133 std::_Identity<_Value>(), __a)
189 const allocator_type& __a = allocator_type())
190 : _Base(__n, __hf, __eql, __a)
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
ammintrin.h 55 _mm_stream_sd(double *__p, __m128d __a)
57 __builtin_ia32_movntsd(__p, (__v2df)__a);
61 _mm_stream_ss(float *__p, __m128 __a)
63 __builtin_ia32_movntss(__p, (__v4sf)__a);
  /prebuilts/sdk/tools/darwin/renderscript/clang-include/
ammintrin.h 55 _mm_stream_sd(double *__p, __m128d __a)
57 __builtin_ia32_movntsd(__p, (__v2df)__a);
61 _mm_stream_ss(float *__p, __m128 __a)
63 __builtin_ia32_movntss(__p, (__v4sf)__a);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
alloc_traits.h 225 _S_allocate(_Alloc2& __a, size_type __n, const_void_pointer __hint)
226 { return __a.allocate(__n, __hint); }
231 _S_allocate(_Alloc2& __a, size_type __n, ...)
232 { return __a.allocate(__n); }
252 _S_construct(_Alloc& __a, _Tp* __p, _Args&&... __args)
253 { __a.construct(__p, std::forward<_Args>(__args)...); }
278 _S_destroy(_Alloc& __a, _Tp* __p)
279 { __a.destroy(__p); }
303 _S_max_size(_Alloc2& __a)
304 { return __a.max_size();
    [all...]
shared_ptr_base.h 333 _My_Deleter(_Deleter __d, const _Alloc& __a)
334 : _Alloc(__a), _M_del(__d) { }
343 _Sp_counted_deleter(_Ptr __p, _Deleter __d, const _Alloc& __a)
344 : _M_ptr(__p), _M_del(__d, __a) { }
357 typename _Alloc_traits::allocator_type __a(_M_del);
358 _Alloc_traits::destroy(__a, this);
359 _Alloc_traits::deallocate(__a, this, 1);
390 _Impl(_Alloc __a) : _Alloc(__a), _M_ptr() { }
396 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args
472 typename _Alloc_traits::allocator_type __a; local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
alloc_traits.h 225 _S_allocate(_Alloc2& __a, size_type __n, const_void_pointer __hint)
226 { return __a.allocate(__n, __hint); }
231 _S_allocate(_Alloc2& __a, size_type __n, ...)
232 { return __a.allocate(__n); }
252 _S_construct(_Alloc& __a, _Tp* __p, _Args&&... __args)
253 { __a.construct(__p, std::forward<_Args>(__args)...); }
278 _S_destroy(_Alloc& __a, _Tp* __p)
279 { __a.destroy(__p); }
303 _S_max_size(_Alloc2& __a)
304 { return __a.max_size();
    [all...]
shared_ptr_base.h 333 _My_Deleter(_Deleter __d, const _Alloc& __a)
334 : _Alloc(__a), _M_del(__d) { }
343 _Sp_counted_deleter(_Ptr __p, _Deleter __d, const _Alloc& __a)
344 : _M_ptr(__p), _M_del(__d, __a) { }
357 typename _Alloc_traits::allocator_type __a(_M_del);
358 _Alloc_traits::destroy(__a, this);
359 _Alloc_traits::deallocate(__a, this, 1);
390 _Impl(_Alloc __a) : _Alloc(__a), _M_ptr() { }
396 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args
472 typename _Alloc_traits::allocator_type __a; local
    [all...]
  /external/clang/test/CodeGen/
sse-builtins.c 210 void test_extract_epi16(__m128i __a) {
214 _mm_extract_epi16(__a, 8);
217 int test_extract_ps(__m128i __a) {
220 return _mm_extract_ps(__a, 4);
223 int test_extract_epi8(__m128i __a) {
226 return _mm_extract_epi8(__a, 16);
229 int test_extract_epi32(__m128i __a) {
232 return _mm_extract_epi32(__a, 4);
235 void test_insert_epi32(__m128i __a, int b) {
238 _mm_insert_epi32(__a, b, 4)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
shared_ptr_base.h 330 _My_Deleter(_Deleter __d, const _Alloc& __a)
331 : _Alloc(__a), _M_del(__d) { }
340 _Sp_counted_deleter(_Ptr __p, _Deleter __d, const _Alloc& __a)
341 : _M_ptr(__p), _M_del(__d, __a) { }
354 typename _Alloc_traits::allocator_type __a(_M_del);
355 _Alloc_traits::destroy(__a, this);
356 _Alloc_traits::deallocate(__a, this, 1);
387 _Impl(_Alloc __a) : _Alloc(__a), _M_ptr() { }
393 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
shared_ptr_base.h 330 _My_Deleter(_Deleter __d, const _Alloc& __a)
331 : _Alloc(__a), _M_del(__d) { }
340 _Sp_counted_deleter(_Ptr __p, _Deleter __d, const _Alloc& __a)
341 : _M_ptr(__p), _M_del(__d, __a) { }
354 typename _Alloc_traits::allocator_type __a(_M_del);
355 _Alloc_traits::destroy(__a, this);
356 _Alloc_traits::deallocate(__a, this, 1);
387 _Impl(_Alloc __a) : _Alloc(__a), _M_ptr() { }
393 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
shared_ptr_base.h 330 _My_Deleter(_Deleter __d, const _Alloc& __a)
331 : _Alloc(__a), _M_del(__d) { }
340 _Sp_counted_deleter(_Ptr __p, _Deleter __d, const _Alloc& __a)
341 : _M_ptr(__p), _M_del(__d, __a) { }
354 typename _Alloc_traits::allocator_type __a(_M_del);
355 _Alloc_traits::destroy(__a, this);
356 _Alloc_traits::deallocate(__a, this, 1);
387 _Impl(_Alloc __a) : _Alloc(__a), _M_ptr() { }
393 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
shared_ptr_base.h 440 _Impl(_Ptr __p, _Deleter __d, const _Alloc& __a) noexcept
441 : _M_ptr(__p), _Del_base(__d), _Alloc_base(__a)
456 _Sp_counted_deleter(_Ptr __p, _Deleter __d, const _Alloc& __a) noexcept
457 : _M_impl(__p, __d, __a) { }
470 typename _Alloc_traits::allocator_type __a(_M_impl._M_alloc());
471 _Alloc_traits::destroy(__a, this);
472 _Alloc_traits::deallocate(__a, this, 1);
501 explicit _Impl(_Alloc __a) noexcept : _A_base(__a) { }
510 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args
    [all...]
  /external/speex/libspeex/
cb_search_sse.h 40 float __a[4]; member in union:__anon34704
46 *__Z = __u.__a[0];
47 *__Y = __u.__a[1];
48 *__X = __u.__a[2];
49 *__W = __u.__a[3];
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
move.h 116 * @param __a A thing of arbitrary type.
122 swap(_Tp& __a, _Tp& __b)
127 _Tp __tmp = _GLIBCXX_MOVE(__a);
128 __a = _GLIBCXX_MOVE(__b);
136 swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm])
139 swap(__a[__n], __b[__n]);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
move.h 116 * @param __a A thing of arbitrary type.
122 swap(_Tp& __a, _Tp& __b)
127 _Tp __tmp = _GLIBCXX_MOVE(__a);
128 __a = _GLIBCXX_MOVE(__b);
136 swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm])
139 swap(__a[__n], __b[__n]);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
move.h 116 * @param __a A thing of arbitrary type.
122 swap(_Tp& __a, _Tp& __b)
127 _Tp __tmp = _GLIBCXX_MOVE(__a);
128 __a = _GLIBCXX_MOVE(__b);
136 swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm])
139 swap(__a[__n], __b[__n]);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/
rc_string_base.h 231 const _Alloc& __a, std::__false_type)
234 return _S_construct(__beg, __end, __a, _Tag());
242 const _Alloc& __a, std::__true_type)
244 __end, __a); }
247 _S_construct_aux_2(size_type __req, _CharT __c, const _Alloc& __a)
248 { return _S_construct(__req, __c, __a); }
252 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)
255 return _S_construct_aux(__beg, __end, __a, _Integral());
261 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
268 _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
rc_string_base.h 230 const _Alloc& __a, std::__false_type)
233 return _S_construct(__beg, __end, __a, _Tag());
241 const _Alloc& __a, std::__true_type)
243 __end, __a); }
246 _S_construct_aux_2(size_type __req, _CharT __c, const _Alloc& __a)
247 { return _S_construct(__req, __c, __a); }
251 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)
254 return _S_construct_aux(__beg, __end, __a, _Integral());
260 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
267 _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
rc_string_base.h 230 const _Alloc& __a, std::__false_type)
233 return _S_construct(__beg, __end, __a, _Tag());
241 const _Alloc& __a, std::__true_type)
243 __end, __a); }
246 _S_construct_aux_2(size_type __req, _CharT __c, const _Alloc& __a)
247 { return _S_construct(__req, __c, __a); }
251 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)
254 return _S_construct_aux(__beg, __end, __a, _Integral());
260 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
267 _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
rc_string_base.h 231 const _Alloc& __a, std::__false_type)
234 return _S_construct(__beg, __end, __a, _Tag());
242 const _Alloc& __a, std::__true_type)
244 __end, __a); }
247 _S_construct_aux_2(size_type __req, _CharT __c, const _Alloc& __a)
248 { return _S_construct(__req, __c, __a); }
252 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)
255 return _S_construct_aux(__beg, __end, __a, _Integral());
261 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
268 _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
rc_string_base.h 231 const _Alloc& __a, std::__false_type)
234 return _S_construct(__beg, __end, __a, _Tag());
242 const _Alloc& __a, std::__true_type)
244 __end, __a); }
247 _S_construct_aux_2(size_type __req, _CharT __c, const _Alloc& __a)
248 { return _S_construct(__req, __c, __a); }
252 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)
255 return _S_construct_aux(__beg, __end, __a, _Integral());
261 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
268 _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
rc_string_base.h 231 const _Alloc& __a, std::__false_type)
234 return _S_construct(__beg, __end, __a, _Tag());
242 const _Alloc& __a, std::__true_type)
244 __end, __a); }
247 _S_construct_aux_2(size_type __req, _CharT __c, const _Alloc& __a)
248 { return _S_construct(__req, __c, __a); }
252 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)
255 return _S_construct_aux(__beg, __end, __a, _Integral());
261 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
268 _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
rc_string_base.h 231 const _Alloc& __a, std::__false_type)
234 return _S_construct(__beg, __end, __a, _Tag());
242 const _Alloc& __a, std::__true_type)
244 __end, __a); }
247 _S_construct_aux_2(size_type __req, _CharT __c, const _Alloc& __a)
248 { return _S_construct(__req, __c, __a); }
252 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)
255 return _S_construct_aux(__beg, __end, __a, _Integral());
261 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
268 _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
rc_string_base.h 230 const _Alloc& __a, std::__false_type)
233 return _S_construct(__beg, __end, __a, _Tag());
241 const _Alloc& __a, std::__true_type)
243 __end, __a); }
246 _S_construct_aux_2(size_type __req, _CharT __c, const _Alloc& __a)
247 { return _S_construct(__req, __c, __a); }
251 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)
254 return _S_construct_aux(__beg, __end, __a, _Integral());
260 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
267 _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,
    [all...]

Completed in 816 milliseconds

<<11121314151617181920>>