/netbsd-src/external/apache2/llvm/dist/clang/lib/Headers/ |
H A D | keylockerintrin.h | 134 _mm_encodekey128_u32(unsigned int __htype, __m128i __key, void *__h) { in _mm_encodekey128_u32() argument 135 return __builtin_ia32_encodekey128_u32(__htype, (__v2di)__key, __h); in _mm_encodekey128_u32() 175 void *__h) { in _mm_encodekey256_u32() argument 177 (__v2di)__key_hi, __h); in _mm_encodekey256_u32() 213 _mm_aesenc128kl_u8(__m128i* __odata, __m128i __idata, const void *__h) { in _mm_aesenc128kl_u8() argument 214 return __builtin_ia32_aesenc128kl_u8((__v2di *)__odata, (__v2di)__idata, __h); in _mm_aesenc128kl_u8() 250 _mm_aesenc256kl_u8(__m128i* __odata, __m128i __idata, const void *__h) { in _mm_aesenc256kl_u8() argument 251 return __builtin_ia32_aesenc256kl_u8((__v2di *)__odata, (__v2di)__idata, __h); in _mm_aesenc256kl_u8() 287 _mm_aesdec128kl_u8(__m128i* __odata, __m128i __idata, const void *__h) { in _mm_aesdec128kl_u8() argument 288 return __builtin_ia32_aesdec128kl_u8((__v2di *)__odata, (__v2di)__idata, __h); in _mm_aesdec128kl_u8() [all …]
|
/netbsd-src/external/lgpl3/gmp/dist/ |
H A D | longlong.h | 613 struct {USItype __l, __h;} __i; \ 618 (w1) = __x.__i.__h; (w0) = __x.__i.__l;}) 621 struct {SItype __l, __h;} __i; \ 626 (w1) = __x.__i.__h; (w0) = __x.__i.__l;}) 639 struct {USItype __h, __l;} __i; \ 642 (ph) = __x.__i.__h; \ 648 struct {USItype __h, __l;} __i; \ 651 (ph) = __x.__i.__h; \ 693 struct {USItype __h, __l;} __i; \ 696 (wh) = __x.__i.__h; \ [all …]
|
/netbsd-src/external/lgpl3/mpfr/dist/src/ |
H A D | mpfr-longlong.h | 611 struct {USItype __l, __h;} __i; \ 616 (w1) = __x.__i.__h; (w0) = __x.__i.__l;}) 619 struct {SItype __l, __h;} __i; \ 624 (w1) = __x.__i.__h; (w0) = __x.__i.__l;}) 637 struct {USItype __h, __l;} __i; \ 640 (ph) = __x.__i.__h; \ 646 struct {USItype __h, __l;} __i; \ 649 (ph) = __x.__i.__h; \ 691 struct {USItype __h, __l;} __i; \ 694 (wh) = __x.__i.__h; \ [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | hashtable_policy.h | 157 _ReuseOrAllocNode(__node_type* __nodes, __hashtable_alloc& __h) in _GLIBCXX_VISIBILITY() 158 : _M_nodes(__nodes), _M_h(__h) { } in _GLIBCXX_VISIBILITY() 206 _AllocNode(__hashtable_alloc& __h) in _GLIBCXX_VISIBILITY() 207 : _M_h(__h) { } in _GLIBCXX_VISIBILITY() 776 __hashtable* __h = static_cast<__hashtable*>(this); in _GLIBCXX_VISIBILITY() 777 __hash_code __code = __h->_M_hash_code(__k); in _GLIBCXX_VISIBILITY() 778 std::size_t __bkt = __h->_M_bucket_index(__code); in _GLIBCXX_VISIBILITY() 779 if (auto __node = __h->_M_find_node(__bkt, __k, __code)) in _GLIBCXX_VISIBILITY() 783 __h, in _GLIBCXX_VISIBILITY() 789 = __h->_M_insert_unique_node(__bkt, __code, __node._M_node); in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
H A D | hashtable_policy.h | 113 _ReuseOrAllocNode(__node_type* __nodes, __hashtable_alloc& __h) in _GLIBCXX_VISIBILITY() 114 : _M_nodes(__nodes), _M_h(__h) { } in _GLIBCXX_VISIBILITY() 161 _AllocNode(__hashtable_alloc& __h) in _GLIBCXX_VISIBILITY() 162 : _M_h(__h) { } in _GLIBCXX_VISIBILITY() 706 __hashtable* __h = static_cast<__hashtable*>(this); in _GLIBCXX_VISIBILITY() 707 __hash_code __code = __h->_M_hash_code(__k); in _GLIBCXX_VISIBILITY() 708 std::size_t __bkt = __h->_M_bucket_index(__k, __code); in _GLIBCXX_VISIBILITY() 709 if (__node_type* __node = __h->_M_find_node(__bkt, __k, __code)) in _GLIBCXX_VISIBILITY() 713 __h, in _GLIBCXX_VISIBILITY() 719 = __h->_M_insert_unique_node(__k, __bkt, __code, __node._M_node); in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | any | 187 constexpr any() _NOEXCEPT : __h(nullptr) {} 190 any(any const & __other) : __h(nullptr) 192 if (__other.__h) __other.__call(_Action::_Copy, this); 196 any(any && __other) _NOEXCEPT : __h(nullptr) 198 if (__other.__h) __other.__call(_Action::_Move, this); 277 void reset() _NOEXCEPT { if (__h) this->__call(_Action::_Destroy); } 284 bool has_value() const _NOEXCEPT { return __h != nullptr; } 289 if (__h) { 313 return __h(__a, this, __other, __info, __fallback_info); 321 return __h(__a, this, __other, __info, __fallback_info); [all …]
|
H A D | forward_list | 902 unique_ptr<__node, _Dp> __h(nullptr, _Dp(__a, 1)); 906 __h.reset(__node_traits::allocate(__a, 1)); 907 __node_traits::construct(__a, _VSTD::addressof(__h->__value_)); 908 __h->__next_ = nullptr; 909 __p->__next_ = __h.release(); 924 unique_ptr<__node, _Dp> __h(nullptr, _Dp(__a, 1)); 928 __h.reset(__node_traits::allocate(__a, 1)); 929 __node_traits::construct(__a, _VSTD::addressof(__h->__value_)); 930 __h->__next_ = nullptr; 931 __p->__next_ = __h.release(); [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/benchmarks/ |
H A D | unordered_set_operations.bench.cpp | 85 uint32_t __h = 4; in operator ()() local 90 __h *= __m; in operator ()() 91 __h ^= __k; in operator ()() 92 __h ^= __h >> 13; in operator ()() 93 __h *= __m; in operator ()() 94 __h ^= __h >> 15; in operator ()() 95 return __h; in operator ()()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/backward/ |
H A D | hash_fun.h | 73 unsigned long __h = 0; in _GLIBCXX_VISIBILITY() local 75 __h = 5 * __h + *__s; in _GLIBCXX_VISIBILITY() 76 return size_t(__h); in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/backward/ |
H A D | hash_fun.h | 73 unsigned long __h = 0; in _GLIBCXX_VISIBILITY() local 75 __h = 5 * __h + *__s; in _GLIBCXX_VISIBILITY() 76 return size_t(__h); in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
H A D | modified_bessel_func.tcc | 121 _Tp __h = __nu * __xi; in __bessel_ik() local 122 if ( __h < __fp_min ) in __bessel_ik() 123 __h = __fp_min; in __bessel_ik() 126 _Tp __c = __h; in __bessel_ik() 134 __h *= __del; in __bessel_ik() 143 _Tp __Ipnul = __h * __Inul; in __bessel_ik() 202 _Tp __h = __delh; in __bessel_ik() local 221 __h += __delh; in __bessel_ik() 230 __h = __a1 * __h; in __bessel_ik() 233 __Knu1 = __Kmu * (__mu + __x + _Tp(0.5L) - __h) * __xi; in __bessel_ik()
|
H A D | hashtable_policy.h | 517 _Hashtable* __h = static_cast<_Hashtable*>(this); in _GLIBCXX_VISIBILITY() 518 typename _Hashtable::_Hash_code_type __code = __h->_M_hash_code(__k); in _GLIBCXX_VISIBILITY() 519 std::size_t __n = __h->_M_bucket_index(__k, __code, in _GLIBCXX_VISIBILITY() 520 __h->_M_bucket_count); in _GLIBCXX_VISIBILITY() 523 __h->_M_find_node(__h->_M_buckets[__n], __k, __code); in _GLIBCXX_VISIBILITY() 525 return __h->_M_insert_bucket(std::make_pair(__k, mapped_type()), in _GLIBCXX_VISIBILITY() 581 const _H1&, const _H2&, const _Hash& __h) in _GLIBCXX_VISIBILITY() 582 : _M_extract(__ex), _M_eq(__eq), _M_ranged_hash(__h) { } in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/ |
H A D | modified_bessel_func.tcc | 121 _Tp __h = __nu * __xi; in __bessel_ik() local 122 if ( __h < __fp_min ) in __bessel_ik() 123 __h = __fp_min; in __bessel_ik() 126 _Tp __c = __h; in __bessel_ik() 134 __h *= __del; in __bessel_ik() 143 _Tp __Ipnul = __h * __Inul; in __bessel_ik() 202 _Tp __h = __delh; in __bessel_ik() local 221 __h += __delh; in __bessel_ik() 230 __h = __a1 * __h; in __bessel_ik() 233 __Knu1 = __Kmu * (__mu + __x + _Tp(0.5L) - __h) * __xi; in __bessel_ik()
|
H A D | hashtable_policy.h | 517 _Hashtable* __h = static_cast<_Hashtable*>(this); in _GLIBCXX_VISIBILITY() 518 typename _Hashtable::_Hash_code_type __code = __h->_M_hash_code(__k); in _GLIBCXX_VISIBILITY() 519 std::size_t __n = __h->_M_bucket_index(__k, __code, in _GLIBCXX_VISIBILITY() 520 __h->_M_bucket_count); in _GLIBCXX_VISIBILITY() 523 __h->_M_find_node(__h->_M_buckets[__n], __k, __code); in _GLIBCXX_VISIBILITY() 525 return __h->_M_insert_bucket(std::make_pair(__k, mapped_type()), in _GLIBCXX_VISIBILITY() 581 const _H1&, const _H2&, const _Hash& __h) in _GLIBCXX_VISIBILITY() 582 : _M_extract(__ex), _M_eq(__eq), _M_ranged_hash(__h) { } in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/gpl3/gcc.old/dist/include/ |
H A D | obstack.h | 385 ({ struct obstack *__h = (OBSTACK); \ 386 obstack_blank (__h, (length)); \ 387 obstack_finish (__h); }) 391 ({ struct obstack *__h = (OBSTACK); \ 392 obstack_grow (__h, (where), (length)); \ 393 obstack_finish (__h); }) 397 ({ struct obstack *__h = (OBSTACK); \ 398 obstack_grow0 (__h, (where), (length)); \ 399 obstack_finish (__h); })
|
/netbsd-src/external/gpl3/binutils.old/dist/include/ |
H A D | obstack.h | 385 ({ struct obstack *__h = (OBSTACK); \ 386 obstack_blank (__h, (length)); \ 387 obstack_finish (__h); }) 391 ({ struct obstack *__h = (OBSTACK); \ 392 obstack_grow (__h, (where), (length)); \ 393 obstack_finish (__h); }) 397 ({ struct obstack *__h = (OBSTACK); \ 398 obstack_grow0 (__h, (where), (length)); \ 399 obstack_finish (__h); })
|
/netbsd-src/external/gpl3/binutils/dist/include/ |
H A D | obstack.h | 385 ({ struct obstack *__h = (OBSTACK); \ 386 obstack_blank (__h, (length)); \ 387 obstack_finish (__h); }) 391 ({ struct obstack *__h = (OBSTACK); \ 392 obstack_grow (__h, (where), (length)); \ 393 obstack_finish (__h); }) 397 ({ struct obstack *__h = (OBSTACK); \ 398 obstack_grow0 (__h, (where), (length)); \ 399 obstack_finish (__h); })
|
H A D | longlong.h | 413 struct {USItype __h, __l;} __i; \ 418 (xh) = __x.__i.__h; (xl) = __x.__i.__l; \ 423 struct {USItype __h, __l;} __i; \ 425 __x.__i.__h = n1; __x.__i.__l = n0; \ 429 (q) = __x.__i.__l; (r) = __x.__i.__h; \ 531 struct {USItype __l, __h;} __i; \ 537 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l;}) 794 struct {USItype __h, __l;} __i; \ 800 (wh) = __xx.__i.__h; \ 805 struct {USItype __h, __l;} __i; \ [all …]
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
H A D | obstack.h | 368 ({ struct obstack *__h = (OBSTACK); \ 369 obstack_blank (__h, (length)); \ 370 obstack_finish (__h); }) 374 ({ struct obstack *__h = (OBSTACK); \ 375 obstack_grow (__h, (where), (length)); \ 376 obstack_finish (__h); }) 380 ({ struct obstack *__h = (OBSTACK); \ 381 obstack_grow0 (__h, (where), (length)); \ 382 obstack_finish (__h); })
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
H A D | obstack.h | 368 ({ struct obstack *__h = (OBSTACK); \ 369 obstack_blank (__h, (length)); \ 370 obstack_finish (__h); }) 374 ({ struct obstack *__h = (OBSTACK); \ 375 obstack_grow (__h, (where), (length)); \ 376 obstack_finish (__h); }) 380 ({ struct obstack *__h = (OBSTACK); \ 381 obstack_grow0 (__h, (where), (length)); \ 382 obstack_finish (__h); })
|
/netbsd-src/external/gpl3/gcc/dist/include/ |
H A D | obstack.h | 385 ({ struct obstack *__h = (OBSTACK); \ 386 obstack_blank (__h, (length)); \ 387 obstack_finish (__h); }) 391 ({ struct obstack *__h = (OBSTACK); \ 392 obstack_grow (__h, (where), (length)); \ 393 obstack_finish (__h); }) 397 ({ struct obstack *__h = (OBSTACK); \ 398 obstack_grow0 (__h, (where), (length)); \ 399 obstack_finish (__h); })
|
H A D | longlong.h | 413 struct {USItype __h, __l;} __i; \ 418 (xh) = __x.__i.__h; (xl) = __x.__i.__l; \ 423 struct {USItype __h, __l;} __i; \ 425 __x.__i.__h = n1; __x.__i.__l = n0; \ 429 (q) = __x.__i.__l; (r) = __x.__i.__h; \ 531 struct {USItype __l, __h;} __i; \ 537 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l;}) 782 struct {USItype __h, __l;} __i; \ 788 (wh) = __xx.__i.__h; \ 793 struct {USItype __h, __l;} __i; \ [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/ |
H A D | socket | 973 [__h = std::move(__init.completion_handler), __ec] 975 { __h(__ec); }, __a); 982 [__h = std::move(__init.completion_handler), 993 __h(__ec); 1026 [__h = std::move(__init.completion_handler)] 1028 __h(__ec); 1193 [__h = std::move(__init.completion_handler), 1199 __h(__ec); 1212 __h(__ec, __result); 1214 __h(std::make_error_code(errc::operation_not_supported), 0); [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
H A D | socket | 1009 [__h = std::move(__init.completion_handler), __ec] 1011 { __h(__ec); }, __a); 1018 [__h = std::move(__init.completion_handler), 1029 __h(__ec); 1062 [__h = std::move(__init.completion_handler)] 1064 __h(__ec); 1229 [__h = std::move(__init.completion_handler), 1235 __h(__ec); 1248 __h(__ec, __result); 1250 __h(std::make_error_code(errc::operation_not_supported), 0); [all …]
|
/netbsd-src/external/gpl2/grep/dist/lib/ |
H A D | obstack.h | 447 ({ struct obstack *__h = (OBSTACK); \ 448 obstack_blank (__h, (length)); \ 449 obstack_finish (__h); }) 453 ({ struct obstack *__h = (OBSTACK); \ 454 obstack_grow (__h, (where), (length)); \ 455 obstack_finish (__h); }) 459 ({ struct obstack *__h = (OBSTACK); \ 460 obstack_grow0 (__h, (where), (length)); \ 461 obstack_finish (__h); })
|