| /src/external/gpl3/gdb/dist/gnulib/import/ |
| stdalign.in.h | 67 template <class __t> struct __alignof_helper { char __a; __t __b; }; member in struct:__alignof_helper 71 # define _Alignof(type) offsetof (struct { char __a; type __b; }, __b)
|
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| stdalign.in.h | 67 template <class __t> struct __alignof_helper { char __a; __t __b; }; member in struct:__alignof_helper 71 # define _Alignof(type) offsetof (struct { char __a; type __b; }, __b)
|
| /src/external/gpl3/gcc.old/dist/gcc/config/i386/ |
| avx512bf16intrin.h | 47 _mm_cvtsbh_ss (__bfloat16 __A) 49 union{ float __a; unsigned int __b;} __tmp; member in union:__anon15758 50 __tmp.__b = ((unsigned int)(__A)) << 16; 51 return __tmp.__a; 58 _mm512_cvtne2ps_pbh (__m512 __A, __m512 __B) 60 return (__m512bh)__builtin_ia32_cvtne2ps2bf16_v32hi(__A, __B); 65 _mm512_mask_cvtne2ps_pbh (__m512bh __A, __mmask32 __B, __m512 __C, __m512 __D) 67 return (__m512bh)__builtin_ia32_cvtne2ps2bf16_v32hi_mask(__C, __D, __A, __B); 72 _mm512_maskz_cvtne2ps_pbh (__mmask32 __A, __m512 __B, __m512 __C) 74 return (__m512bh)__builtin_ia32_cvtne2ps2bf16_v32hi_maskz(__B, __C, __A); [all...] |
| avx512fp16intrin.h | 157 _mm_set1_ph (_Float16 __A) 159 return _mm_set_ph (__A, __A, __A, __A, __A, __A, __A, __A); 164 _mm256_set1_ph (_Float16 __A) 284 __m128h __a[4]; member in union:__anon15763 296 __m256h __a[2]; member in union:__anon15764 308 __m128h __a[4]; member in union:__anon15765 321 __m256h __a[2]; member in union:__anon15766 [all...] |
| /src/external/apache2/llvm/dist/libcxx/benchmarks/ |
| unordered_set_operations.bench.cpp | 34 std::size_t __a = (__u ^ __v) * __mul; local 35 __a ^= (__a >> 47); 36 std::size_t __b = (__v ^ __a) * __mul; 47 const uint64_t __a = loadword<uint32_t>(__s); local 49 return hash_len_16(_Len + (__a << 3), __b); 73 const std::size_t __a = (std::size_t)(data & __mask); local 75 return hash_len_16(__a, rotate_by_at_least_1(__b + 16, 16)) ^ __b;
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| boost_concept_check.h | 185 _Tp __a _IsUnused; // require default constructor 193 __a = __a; // require assignment operator 194 __const_constraints(__a); 197 __a = __b; // const required for argument to assignment 199 _Tp __a; member in struct:_AssignableConcept 208 _Tp __a(__b); // require copy constructor 209 _Tp* __ptr _IsUnused = &__a; // require address of operator 210 __const_constraints(__a); 212 void __const_constraints(const _Tp& __a) { 232 _Tp __a; member in struct:_SGIAssignableConcept 265 _Tp __a, __b; member in struct:_EqualityComparableConcept [all...] |
| shared_ptr_base.h | 502 _Impl(_Ptr __p, _Deleter __d, const _Alloc& __a) noexcept 503 : _Del_base(std::move(__d)), _Alloc_base(__a), _M_ptr(__p) 520 _Sp_counted_deleter(_Ptr __p, _Deleter __d, const _Alloc& __a) noexcept 521 : _M_impl(__p, std::move(__d), __a) { } 532 __allocator_type __a(_M_impl._M_alloc()); 533 __allocated_ptr<__allocator_type> __guard_ptr{ __a, this }; 590 explicit _Impl(_Alloc __a) noexcept : _A_base(__a) { } 602 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args) 603 : _M_impl(__a) 853 _Sp_counted_array_base<_Alloc> __a = *this; local [all...] |
| stl_deque.h | 466 _Deque_base(const allocator_type& __a, size_t __num_elements) 467 : _M_impl(__a) 470 _Deque_base(const allocator_type& __a) 471 : _M_impl(__a) 483 _Deque_base(_Deque_base&& __x, const allocator_type& __a) 484 : _M_impl(std::move(__x._M_impl), _Tp_alloc_type(__a)) 487 _Deque_base(_Deque_base&& __x, const allocator_type& __a, size_t __n) 488 : _M_impl(__a) 490 if (__x.get_allocator() == __a) 550 _Deque_impl(const _Tp_alloc_type& __a) _GLIBCXX_NOEXCEP 561 _Deque_impl(_Deque_impl&& __d, _Tp_alloc_type&& __a) member in struct:_Deque_impl [all...] |
| cow_string.h | 266 _M_dispose(const _Alloc& __a) _GLIBCXX_NOEXCEPT 286 _M_destroy(__a); 311 _Alloc_hider(_CharT* __dat, const _Alloc& __a) _GLIBCXX_NOEXCEPT 312 : _Alloc(__a), _M_p(__dat) { } 500 * @param __a Allocator to use. 503 basic_string(__sv_wrapper __svw, const _Alloc& __a) 504 : basic_string(__svw._M_sv.data(), __svw._M_sv.size(), __a) { } 528 basic_string(const _Alloc& __a) 529 : _M_dataplus(_S_construct(size_type(), _CharT(), __a), __a) 3264 const allocator_type __a = this->get_allocator(); local 3497 const allocator_type __a = get_allocator(); local 3538 const allocator_type __a = get_allocator(); local 3728 const allocator_type __a = get_allocator(); local [all...] |
| hashtable_policy.h | 189 auto& __a = _M_h._M_node_allocator(); local 190 __node_alloc_traits::destroy(__a, __node->_M_valptr()); 192 __node_alloc_traits::construct(__a, __node->_M_valptr(), 2021 _Hashtable_alloc(_Alloc&& __a) 2022 : __ebo_node_alloc(std::forward<_Alloc>(__a))
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| boost_concept_check.h | 185 _Tp __a _IsUnused; // require default constructor 193 __a = __a; // require assignment operator 194 __const_constraints(__a); 197 __a = __b; // const required for argument to assignment 199 _Tp __a; member in struct:_AssignableConcept 208 _Tp __a(__b); // require copy constructor 209 _Tp* __ptr _IsUnused = &__a; // require address of operator 210 __const_constraints(__a); 212 void __const_constraints(const _Tp& __a) { 232 _Tp __a; member in struct:_SGIAssignableConcept 265 _Tp __a, __b; member in struct:_EqualityComparableConcept [all...] |
| shared_ptr_base.h | 502 _Impl(_Ptr __p, _Deleter __d, const _Alloc& __a) noexcept 503 : _Del_base(std::move(__d)), _Alloc_base(__a), _M_ptr(__p) 520 _Sp_counted_deleter(_Ptr __p, _Deleter __d, const _Alloc& __a) noexcept 521 : _M_impl(__p, std::move(__d), __a) { } 532 __allocator_type __a(_M_impl._M_alloc()); 533 __allocated_ptr<__allocator_type> __guard_ptr{ __a, this }; 587 explicit _Impl(_Alloc __a) noexcept : _A_base(__a) { } 599 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args) 600 : _M_impl(__a) 855 _Sp_counted_array_base<_Alloc> __a = *this; local [all...] |
| stl_deque.h | 466 _Deque_base(const allocator_type& __a, size_t __num_elements) 467 : _M_impl(__a) 470 _Deque_base(const allocator_type& __a) 471 : _M_impl(__a) 483 _Deque_base(_Deque_base&& __x, const allocator_type& __a) 484 : _M_impl(std::move(__x._M_impl), _Tp_alloc_type(__a)) 487 _Deque_base(_Deque_base&& __x, const allocator_type& __a, size_t __n) 488 : _M_impl(__a) 490 if (__x.get_allocator() == __a) 550 _Deque_impl(const _Tp_alloc_type& __a) _GLIBCXX_NOEXCEP 561 _Deque_impl(_Deque_impl&& __d, _Tp_alloc_type&& __a) member in struct:_Deque_impl [all...] |
| cow_string.h | 274 _M_dispose(const _Alloc& __a) _GLIBCXX_NOEXCEPT 294 _M_destroy(__a); 319 _Alloc_hider(_CharT* __dat, const _Alloc& __a) _GLIBCXX_NOEXCEPT 320 : _Alloc(__a), _M_p(__dat) { } 508 * @param __a Allocator to use. 511 basic_string(__sv_wrapper __svw, const _Alloc& __a) 512 : basic_string(__svw._M_sv.data(), __svw._M_sv.size(), __a) { } 536 basic_string(const _Alloc& __a) 537 : _M_dataplus(_S_construct(size_type(), _CharT(), __a), __a) 3174 const allocator_type __a = this->get_allocator(); local 3407 const allocator_type __a = get_allocator(); local 3448 const allocator_type __a = get_allocator(); local 3638 const allocator_type __a = get_allocator(); local [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/backward/ |
| hashtable.h | 334 const allocator_type& __a = allocator_type()) 335 : _M_node_allocator(__a), _M_hash(__hf), _M_equals(__eql), 336 _M_get_key(__ext), _M_buckets(__a), _M_num_elements(0) 341 const allocator_type& __a = allocator_type()) 342 : _M_node_allocator(__a), _M_hash(__hf), _M_equals(__eql), 343 _M_get_key(_ExtractKey()), _M_buckets(__a), _M_num_elements(0) 617 allocator_type __a = this->get_allocator(); local 618 _Alloc_traits::construct(__a, &__n->_M_val, __obj); 631 allocator_type __a = this->get_allocator(); local 632 _Alloc_traits::destroy(__a, &__n->_M_val) [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/ |
| simd_x86_conversions.h | 248 const auto __a = _mm256_shuffle_epi8( local 255 return __intrin_bitcast<_To>(__lo128(__a) | __hi128(__a)); 310 auto __a = _mm_unpacklo_epi16(__intrin, __m128i()); // 0o.o 1o.o local 312 auto __c = _mm_unpacklo_epi16(__a, __b); // 02oo ..oo 313 auto __d = _mm_unpackhi_epi16(__a, __b); // 13oo ..oo 324 auto __a = _mm256_shuffle_epi8( local 331 _mm256_permute4x64_epi64(__a, 332 0xf8))); // __a[0] __a[2] | __a[3] __a[3 354 const auto __a local 430 auto __a local 447 auto __a = _mm256_shuffle_epi8( local 728 __m128i __a, __b; local 1099 auto __a local 1142 const auto __a = _mm256_shuffle_epi8( local 1179 auto __a = _mm_unpacklo_epi16(__i0, __i1); \/\/ 04.. 15.. local 1194 auto __a = _mm256_shuffle_epi8(__i0, __shuf); local 1214 auto __a = _mm_unpacklo_epi8(__i0, __i1); \/\/ 04.. .... 15.. .... local 1223 const auto __a = _mm256_shuffle_epi8( local 1246 auto __a = _mm_unpacklo_epi8(__i0, __i1); \/\/ 08.. 19.. 2A.. 3B.. local 1271 const auto __a = _mm256_unpacklo_epi32(__i0, __i1); \/\/ aeAE cgCG local 1656 auto __a local 1695 auto __a local 1719 const auto __a = _mm256_shuffle_epi8( local 1743 const auto __a = _mm_unpacklo_epi32(__i0, __i1); \/\/ acAC local 1917 const auto __a = _mm_unpacklo_epi8(__i0, __i1); \/\/ ac local 1934 auto __a = \/\/ 048C GKOS 159D HLPT 26AE IMQU 37BF JNRV local [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
| mt_allocator.h | 485 const static size_t __a = (__alignof__(_Tp) >= sizeof(_Block_record) local 489 static _Tune _S_tune(__a, sizeof(_Tp) * 64, 490 sizeof(_Tp) * 2 >= __a ? sizeof(_Tp) * 2 : __a,
|
| ropeimpl.h | 350 _S_free_string(_CharT* __s, std::size_t __n, allocator_type& __a) 353 std::_Destroy(__s, __s + __n, __a); 356 __a.deallocate(__s, 528 allocator_type& __a) 538 return __STL_ROPE_FROM_UNOWNED_CHAR_PTR(__s, __slen, __a); 567 _RopeRep* __nright = __STL_ROPE_FROM_UNOWNED_CHAR_PTR(__s, __slen, __a); 587 std::size_t __slen, allocator_type& __a) 592 return __STL_ROPE_FROM_UNOWNED_CHAR_PTR(__s, __slen, __a); 596 return _S_concat_char_iter(__r, __s, __slen, __a); 633 _RopeRep* __right = __STL_ROPE_FROM_UNOWNED_CHAR_PTR(__s, __slen, __a); 1502 typename _RopeRep::allocator_type __a = _M_root->_M_get_allocator(); local [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
| hashtable.h | 438 _Value_allocator_type __a = _M_get_Value_allocator(); local 440 _Traits::construct(__a, &__n->_M_v, __v); 460 _Value_allocator_type __a = _M_get_Value_allocator(); local 462 _Traits::destroy(__a, &__n->_M_v); 531 const allocator_type& __a) 537 _M_node_allocator(__a), 557 const allocator_type& __a) 563 _M_node_allocator(__a),
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/backward/ |
| hashtable.h | 334 const allocator_type& __a = allocator_type()) 335 : _M_node_allocator(__a), _M_hash(__hf), _M_equals(__eql), 336 _M_get_key(__ext), _M_buckets(__a), _M_num_elements(0) 341 const allocator_type& __a = allocator_type()) 342 : _M_node_allocator(__a), _M_hash(__hf), _M_equals(__eql), 343 _M_get_key(_ExtractKey()), _M_buckets(__a), _M_num_elements(0) 617 allocator_type __a = this->get_allocator(); local 618 _Alloc_traits::construct(__a, &__n->_M_val, __obj); 631 allocator_type __a = this->get_allocator(); local 632 _Alloc_traits::destroy(__a, &__n->_M_val) [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/ |
| simd_x86_conversions.h | 248 const auto __a = _mm256_shuffle_epi8( local 255 return __intrin_bitcast<_To>(__lo128(__a) | __hi128(__a)); 310 auto __a = _mm_unpacklo_epi16(__intrin, __m128i()); // 0o.o 1o.o local 312 auto __c = _mm_unpacklo_epi16(__a, __b); // 02oo ..oo 313 auto __d = _mm_unpackhi_epi16(__a, __b); // 13oo ..oo 324 auto __a = _mm256_shuffle_epi8( local 331 _mm256_permute4x64_epi64(__a, 332 0xf8))); // __a[0] __a[2] | __a[3] __a[3 354 const auto __a local 430 auto __a local 447 auto __a = _mm256_shuffle_epi8( local 728 __m128i __a, __b; local 1099 auto __a local 1142 const auto __a = _mm256_shuffle_epi8( local 1179 auto __a = _mm_unpacklo_epi16(__i0, __i1); \/\/ 04.. 15.. local 1194 auto __a = _mm256_shuffle_epi8(__i0, __shuf); local 1214 auto __a = _mm_unpacklo_epi8(__i0, __i1); \/\/ 04.. .... 15.. .... local 1223 const auto __a = _mm256_shuffle_epi8( local 1246 auto __a = _mm_unpacklo_epi8(__i0, __i1); \/\/ 08.. 19.. 2A.. 3B.. local 1271 const auto __a = _mm256_unpacklo_epi32(__i0, __i1); \/\/ aeAE cgCG local 1656 auto __a local 1695 auto __a local 1719 const auto __a = _mm256_shuffle_epi8( local 1743 const auto __a = _mm_unpacklo_epi32(__i0, __i1); \/\/ acAC local 1917 const auto __a = _mm_unpacklo_epi8(__i0, __i1); \/\/ ac local 1934 auto __a = \/\/ 048C GKOS 159D HLPT 26AE IMQU 37BF JNRV local [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
| mt_allocator.h | 483 const static size_t __a = (__alignof__(_Tp) >= sizeof(_Block_record) local 487 static _Tune _S_tune(__a, sizeof(_Tp) * 64, 488 sizeof(_Tp) * 2 >= __a ? sizeof(_Tp) * 2 : __a,
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/ |
| hashtable.h | 438 _Value_allocator_type __a = _M_get_Value_allocator(); local 440 _Traits::construct(__a, &__n->_M_v, __v); 460 _Value_allocator_type __a = _M_get_Value_allocator(); local 462 _Traits::destroy(__a, &__n->_M_v); 531 const allocator_type& __a) 537 _M_node_allocator(__a), 557 const allocator_type& __a) 563 _M_node_allocator(__a),
|
| /src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| mmintrin.h | 251 __vector unsigned char __a, __b, __c; local 253 __a = (__vector unsigned char)vec_splats (__m1); 255 __c = vec_mergel (__a, __b); 332 __vector unsigned char __a, __b, __c; local 334 __a = (__vector unsigned char)vec_splats (__m1); 336 __c = vec_mergel (__a, __b); 413 __vector signed char __a, __b, __c; local 415 __a = (__vector signed char)vec_splats (__m1); 417 __c = vec_add (__a, __b); 449 __vector signed short __a, __b, __c local 481 __vector signed int __a, __b, __c; local 511 __vector signed char __a, __b, __c; local 547 __vector signed short __a, __b, __c; local 579 __vector signed int __a, __b, __c; local 769 __vector signed char __a, __b, __c; local 806 __vector signed short __a, __b, __c; local 837 __vector signed short __a, __b, __c; local 870 __vector signed int __a, __b, __c; local 899 __vector signed int __a, __b, __c; local 930 __vector signed char __a, __b, __c; local 948 __vector signed short __a, __b, __c; local 966 __vector unsigned char __a, __b, __c; local 985 __vector unsigned short __a, __b, __c; local 1004 __vector signed char __a, __b, __c; local 1023 __vector signed short __a, __b, __c; local 1042 __vector unsigned char __a, __b, __c; local 1061 __vector unsigned short __a, __b, __c; local 1081 __vector signed short __a, __b; local 1101 __vector signed short __a, __b; local 1135 __vector signed short __a, __b, __c; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/ |
| mmintrin.h | 251 __vector unsigned char __a, __b, __c; local 253 __a = (__vector unsigned char)vec_splats (__m1); 255 __c = vec_mergel (__a, __b); 332 __vector unsigned char __a, __b, __c; local 334 __a = (__vector unsigned char)vec_splats (__m1); 336 __c = vec_mergel (__a, __b); 413 __vector signed char __a, __b, __c; local 415 __a = (__vector signed char)vec_splats (__m1); 417 __c = vec_add (__a, __b); 449 __vector signed short __a, __b, __c local 481 __vector signed int __a, __b, __c; local 511 __vector signed char __a, __b, __c; local 547 __vector signed short __a, __b, __c; local 579 __vector signed int __a, __b, __c; local 769 __vector signed char __a, __b, __c; local 806 __vector signed short __a, __b, __c; local 837 __vector signed short __a, __b, __c; local 870 __vector signed int __a, __b, __c; local 899 __vector signed int __a, __b, __c; local 930 __vector signed char __a, __b, __c; local 948 __vector signed short __a, __b, __c; local 966 __vector unsigned char __a, __b, __c; local 985 __vector unsigned short __a, __b, __c; local 1004 __vector signed char __a, __b, __c; local 1023 __vector signed short __a, __b, __c; local 1042 __vector unsigned char __a, __b, __c; local 1061 __vector unsigned short __a, __b, __c; local 1081 __vector signed short __a, __b; local 1101 __vector signed short __a, __b; local 1135 __vector signed short __a, __b, __c; local [all...] |