Searched refs:__h (Results 1 - 25 of 35) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/clang/lib/Headers/
H A Dkeylockerintrin.h102 /// ((__m128i*)__h) to ((__m128i*)__h) + 5 and a 32-bit value as return.
120 /// MEM[__h+127:__h] := Handle[127:0] // AAD
121 /// MEM[__h+255:__h+128] := Handle[255:128] // Integrity Tag
122 /// MEM[__h+383:__h+256] := Handle[383:256] // CipherText
123 /// MEM[__h+511:__h
134 _mm_encodekey128_u32(unsigned int __htype, __m128i __key, void *__h) argument
174 _mm_encodekey256_u32(unsigned int __htype, __m128i __key_lo, __m128i __key_hi, void *__h) argument
213 _mm_aesenc128kl_u8(__m128i* __odata, __m128i __idata, const void *__h) argument
250 _mm_aesenc256kl_u8(__m128i* __odata, __m128i __idata, const void *__h) argument
287 _mm_aesdec128kl_u8(__m128i* __odata, __m128i __idata, const void *__h) argument
324 _mm_aesdec256kl_u8(__m128i* __odata, __m128i __idata, const void *__h) argument
376 _mm_aesencwide128kl_u8(__m128i __odata[8], const __m128i __idata[8], const void* __h) argument
416 _mm_aesencwide256kl_u8(__m128i __odata[8], const __m128i __idata[8], const void* __h) argument
456 _mm_aesdecwide128kl_u8(__m128i __odata[8], const __m128i __idata[8], const void* __h) argument
496 _mm_aesdecwide256kl_u8(__m128i __odata[8], const __m128i __idata[8], const void* __h) argument
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/backward/
H A Dhash_fun.h73 unsigned long __h = 0; local
75 __h = 5 * __h + *__s;
76 return size_t(__h);
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/backward/
H A Dhash_fun.h73 unsigned long __h = 0; local
75 __h = 5 * __h + *__s;
76 return size_t(__h);
/netbsd-current/external/apache2/llvm/dist/libcxx/benchmarks/
H A Dunordered_set_operations.bench.cpp85 uint32_t __h = 4; local
90 __h *= __m;
91 __h ^= __k;
92 __h ^= __h >> 13;
93 __h *= __m;
94 __h ^= __h >> 15;
95 return __h;
/netbsd-current/external/lgpl3/gmp/dist/
H A Dlonglong.h613 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-current/external/lgpl3/mpfr/dist/src/
H A Dmpfr-longlong.h611 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-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dhashtable_policy.h113 _ReuseOrAllocNode(__node_type* __nodes, __hashtable_alloc& __h) argument
114 : _M_nodes(__nodes), _M_h(__h) { }
161 _AllocNode(__hashtable_alloc& __h) argument
162 : _M_h(__h) { }
706 __hashtable* __h = static_cast<__hashtable*>(this); variable
707 __hash_code __code = __h->_M_hash_code(__k);
708 std::size_t __bkt = __h->_M_bucket_index(__k, __code);
709 if (__node_type* __node = __h->_M_find_node(__bkt, __k, __code))
713 __h,
719 = __h
733 __hashtable* __h = static_cast<__hashtable*>(this); variable
760 __hashtable* __h = static_cast<__hashtable*>(this); variable
779 const __hashtable* __h = static_cast<const __hashtable*>(this); variable
838 __hashtable& __h = _M_conjure_hashtable(); local
846 __hashtable& __h = _M_conjure_hashtable(); local
859 __hashtable& __h = _M_conjure_hashtable(); local
969 __hashtable& __h = this->_M_conjure_hashtable(); local
977 __hashtable& __h = this->_M_conjure_hashtable(); local
1020 __hashtable& __h = this->_M_conjure_hashtable(); local
1028 __hashtable& __h = this->_M_conjure_hashtable(); local
1197 _Hash_code_base(const _ExtractKey& __ex, const _H1&, const _H2&, const _Hash& __h) argument
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dobstack.h372 ({ struct obstack *__h = (OBSTACK); \
373 obstack_blank (__h, (length)); \
374 obstack_finish (__h); })
378 ({ struct obstack *__h = (OBSTACK); \
379 obstack_grow (__h, (where), (length)); \
380 obstack_finish (__h); })
384 ({ struct obstack *__h = (OBSTACK); \
385 obstack_grow0 (__h, (where), (length)); \
386 obstack_finish (__h); })
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
H A Dobstack.h372 ({ struct obstack *__h = (OBSTACK); \
373 obstack_blank (__h, (length)); \
374 obstack_finish (__h); })
378 ({ struct obstack *__h = (OBSTACK); \
379 obstack_grow (__h, (where), (length)); \
380 obstack_finish (__h); })
384 ({ struct obstack *__h = (OBSTACK); \
385 obstack_grow0 (__h, (where), (length)); \
386 obstack_finish (__h); })
/netbsd-current/external/gpl3/gcc.old/dist/include/
H A Dobstack.h385 ({ 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 Dlonglong.h413 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, __
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/include/
H A Dobstack.h385 ({ 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 Dlonglong.h413 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, __
[all...]
/netbsd-current/external/gpl3/gcc/dist/include/
H A Dobstack.h385 ({ 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 Dlonglong.h413 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, __
[all...]
/netbsd-current/external/gpl3/gdb/dist/include/
H A Dobstack.h385 ({ 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 Dlonglong.h413 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, __
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/include/
H A Dobstack.h385 ({ 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 Dlonglong.h413 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, __
[all...]
/netbsd-current/external/gpl3/binutils/dist/include/
H A Dobstack.h385 ({ 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 Dlonglong.h413 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, __
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dhashtable_policy.h157 _ReuseOrAllocNode(__node_type* __nodes, __hashtable_alloc& __h) argument
158 : _M_nodes(__nodes), _M_h(__h) { }
206 _AllocNode(__hashtable_alloc& __h) argument
207 : _M_h(__h) { }
776 __hashtable* __h = static_cast<__hashtable*>(this); variable
777 __hash_code __code = __h->_M_hash_code(__k);
778 std::size_t __bkt = __h->_M_bucket_index(__code);
779 if (auto __node = __h->_M_find_node(__bkt, __k, __code))
783 __h,
789 = __h
803 __hashtable* __h = static_cast<__hashtable*>(this); variable
895 __hashtable& __h = _M_conjure_hashtable(); local
903 __hashtable& __h = _M_conjure_hashtable(); local
912 __hashtable& __h = _M_conjure_hashtable(); local
938 __hashtable& __h = _M_conjure_hashtable(); local
956 __hashtable& __h = _M_conjure_hashtable(); local
1037 __hashtable& __h = this->_M_conjure_hashtable(); local
1045 __hashtable& __h = this->_M_conjure_hashtable(); local
1088 __hashtable& __h = this->_M_conjure_hashtable(); local
1096 __hashtable& __h = this->_M_conjure_hashtable(); local
[all...]
/netbsd-current/external/gpl2/grep/dist/lib/
H A Dobstack.h451 ({ struct obstack *__h = (OBSTACK); \
452 obstack_blank (__h, (length)); \
453 obstack_finish (__h); })
457 ({ struct obstack *__h = (OBSTACK); \
458 obstack_grow (__h, (where), (length)); \
459 obstack_finish (__h); })
463 ({ struct obstack *__h = (OBSTACK); \
464 obstack_grow0 (__h, (where), (length)); \
465 obstack_finish (__h); })
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
H A Dhashtable_policy.h517 _Hashtable* __h = static_cast<_Hashtable*>(this); local
518 typename _Hashtable::_Hash_code_type __code = __h->_M_hash_code(__k);
519 std::size_t __n = __h->_M_bucket_index(__k, __code,
520 __h->_M_bucket_count);
523 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
525 return __h->_M_insert_bucket(std::make_pair(__k, mapped_type()),
581 const _H1&, const _H2&, const _Hash& __h)
582 : _M_extract(__ex), _M_eq(__eq), _M_ranged_hash(__h) { }
580 _Hash_code_base(const _ExtractKey& __ex, const _Equal& __eq, const _H1&, const _H2&, const _Hash& __h) argument
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
H A Dhashtable_policy.h517 _Hashtable* __h = static_cast<_Hashtable*>(this); local
518 typename _Hashtable::_Hash_code_type __code = __h->_M_hash_code(__k);
519 std::size_t __n = __h->_M_bucket_index(__k, __code,
520 __h->_M_bucket_count);
523 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
525 return __h->_M_insert_bucket(std::make_pair(__k, mapped_type()),
581 const _H1&, const _H2&, const _Hash& __h)
582 : _M_extract(__ex), _M_eq(__eq), _M_ranged_hash(__h) { }
580 _Hash_code_base(const _ExtractKey& __ex, const _Equal& __eq, const _H1&, const _H2&, const _Hash& __h) argument

Completed in 329 milliseconds

12