| /freebsd/contrib/llvm-project/clang/lib/Headers/ |
| H A D | ptrauth.h | 109 #define ptrauth_strip(__value, __key) __builtin_ptrauth_strip(__value, __key) argument 139 #define ptrauth_sign_constant(__value, __key, __data) \ argument 140 __builtin_ptrauth_sign_constant(__value, __key, __data) 154 #define ptrauth_sign_unauthenticated(__value, __key, __data) \ argument 155 __builtin_ptrauth_sign_unauthenticated(__value, __key, __data) 317 #define ptrauth_strip(__value, __key) \ argument 319 (void)__key; \ 330 #define ptrauth_sign_constant(__value, __key, __data) \ argument 332 (void)__key; \ 337 #define ptrauth_sign_unauthenticated(__value, __key, __data) \ argument [all …]
|
| H A D | keylockerintrin.h | 128 _mm_encodekey128_u32(unsigned int __htype, __m128i __key, void *__h) { in _mm_encodekey128_u32() argument 129 return __builtin_ia32_encodekey128_u32(__htype, (__v2di)__key, __h); in _mm_encodekey128_u32()
|
| /freebsd/contrib/llvm-project/libcxx/include/__flat_map/ |
| H A D | flat_map.h | 622 try_emplace(const key_type& __key, _Args&&... __args) { in try_emplace() argument 623 return __try_emplace(__key, std::forward<_Args>(__args)...); in try_emplace() 629 try_emplace(key_type&& __key, _Args&&... __args) { in try_emplace() argument 630 return __try_emplace(std::move(__key), std::forward<_Args>(__args)...); in try_emplace() 637 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 pair<iterator, bool> try_emplace(_Kp&& __key, … in try_emplace() argument 638 return __try_emplace(std::forward<_Kp>(__key), std::forward<_Args>(__args)...); in try_emplace() 644 try_emplace(const_iterator __hint, const key_type& __key, _Args&&... __args) { in try_emplace() argument 645 return __try_emplace_hint(__hint, __key, std::forward<_Args>(__args)...).first; in try_emplace() 651 try_emplace(const_iterator __hint, key_type&& __key, _Args&&... __args) { in try_emplace() argument 652 return __try_emplace_hint(__hint, std::move(__key), std::forward<_Args>(__args)...).first; in try_emplace() [all …]
|
| H A D | utils.h | 40 …_Map& __map, _IterK&& __it_key, _IterM&& __it_mapped, _KeyArg&& __key, _MArgs&&... __mapped_args) { in __emplace_exact_pos() 50 auto __key_it = __map.__containers_.keys.emplace(__it_key, std::forward<_KeyArg>(__key)); in __emplace_exact_pos()
|
| H A D | flat_multimap.h | 794 _LIBCPP_HIDE_FROM_ABI static auto __find_impl(_Self&& __self, const _Kp& __key) { in __find_impl() argument 795 auto __it = __self.lower_bound(__key); in __find_impl() 797 if (__it == __last || __self.__compare_(__key, __it->first)) { in __find_impl() 804 _LIBCPP_HIDE_FROM_ABI static auto __equal_range_impl(_Self&& __self, const _Kp& __key) { in __equal_range_impl() argument 806 …std::equal_range(__self.__containers_.keys.begin(), __self.__containers_.keys.end(), __key, __self… in __equal_range_impl()
|
| /freebsd/contrib/llvm-project/libcxx/include/__thread/support/ |
| H A D | c11.h | 179 inline _LIBCPP_HIDE_FROM_ABI int __libcpp_tls_create(__libcpp_tls_key* __key, void (*__at_exit)(voi… in __libcpp_tls_create() argument 180 return tss_create(__key, __at_exit) == thrd_success ? 0 : EINVAL; in __libcpp_tls_create() 183 inline _LIBCPP_HIDE_FROM_ABI void* __libcpp_tls_get(__libcpp_tls_key __key) { return tss_get(__key)… in __libcpp_tls_get() argument 185 inline _LIBCPP_HIDE_FROM_ABI int __libcpp_tls_set(__libcpp_tls_key __key, void* __p) { in __libcpp_tls_set() argument 186 return tss_set(__key, __p) == thrd_success ? 0 : EINVAL; in __libcpp_tls_set()
|
| H A D | pthread.h | 209 inline _LIBCPP_HIDE_FROM_ABI int __libcpp_tls_create(__libcpp_tls_key* __key, void (*__at_exit)(voi… in __libcpp_tls_create() argument 210 return pthread_key_create(__key, __at_exit); in __libcpp_tls_create() 213 …P_HIDE_FROM_ABI void* __libcpp_tls_get(__libcpp_tls_key __key) { return pthread_getspecific(__key)… in __libcpp_tls_get() argument 215 inline _LIBCPP_HIDE_FROM_ABI int __libcpp_tls_set(__libcpp_tls_key __key, void* __p) { in __libcpp_tls_set() argument 216 return pthread_setspecific(__key, __p); in __libcpp_tls_set()
|
| H A D | windows.h | 123 __libcpp_tls_create(__libcpp_tls_key* __key, void(_LIBCPP_TLS_DESTRUCTOR_CC* __at_exit)(void*)); 125 _LIBCPP_EXPORTED_FROM_ABI void* __libcpp_tls_get(__libcpp_tls_key __key); 127 _LIBCPP_EXPORTED_FROM_ABI int __libcpp_tls_set(__libcpp_tls_key __key, void* __p);
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__thread/support/ |
| H A D | c11.h | 179 inline _LIBCPP_HIDE_FROM_ABI int __libcpp_tls_create(__libcpp_tls_key* __key, void (*__at_exit)(voi… in __libcpp_tls_create() argument 180 return tss_create(__key, __at_exit) == thrd_success ? 0 : EINVAL; in __libcpp_tls_create() 183 inline _LIBCPP_HIDE_FROM_ABI void* __libcpp_tls_get(__libcpp_tls_key __key) { return tss_get(__key)… in __libcpp_tls_get() argument 185 inline _LIBCPP_HIDE_FROM_ABI int __libcpp_tls_set(__libcpp_tls_key __key, void* __p) { in __libcpp_tls_set() argument 186 return tss_set(__key, __p) == thrd_success ? 0 : EINVAL; in __libcpp_tls_set()
|
| H A D | pthread.h | 209 inline _LIBCPP_HIDE_FROM_ABI int __libcpp_tls_create(__libcpp_tls_key* __key, void (*__at_exit)(voi… in __libcpp_tls_create() argument 210 return pthread_key_create(__key, __at_exit); in __libcpp_tls_create() 213 …P_HIDE_FROM_ABI void* __libcpp_tls_get(__libcpp_tls_key __key) { return pthread_getspecific(__key)… in __libcpp_tls_get() argument 215 inline _LIBCPP_HIDE_FROM_ABI int __libcpp_tls_set(__libcpp_tls_key __key, void* __p) { in __libcpp_tls_set() argument 216 return pthread_setspecific(__key, __p); in __libcpp_tls_set()
|
| H A D | windows.h | 123 __libcpp_tls_create(__libcpp_tls_key* __key, void(_LIBCPP_TLS_DESTRUCTOR_CC* __at_exit)(void*)); 125 _LIBCPP_EXPORTED_FROM_ABI void* __libcpp_tls_get(__libcpp_tls_key __key); 127 _LIBCPP_EXPORTED_FROM_ABI int __libcpp_tls_set(__libcpp_tls_key __key, void* __p);
|
| /freebsd/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | boyer_moore_searcher.h | 53 …_LIBCPP_HIDE_FROM_ABI void insert(const key_type& __key, value_type __val) { __table_[__key] = __v… in insert() argument 55 _LIBCPP_HIDE_FROM_ABI value_type operator[](const key_type& __key) const { 56 auto __it = __table_.find(__key); 77 _LIBCPP_HIDE_FROM_ABI void insert(key_type __key, value_type __val) { in insert() argument 78 __table_[static_cast<unsigned_key_type>(__key)] = __val; in insert() 81 _LIBCPP_HIDE_FROM_ABI value_type operator[](key_type __key) const { 82 return __table_[static_cast<unsigned_key_type>(__key)];
|
| H A D | hash.h | 53 operator()(const void* __key, _Size __len) const { 58 const unsigned char* __data = static_cast<const unsigned char*>(__key); 89 operator()(const void* __key, _Size __len) const { 90 const char* __s = static_cast<const char*>(__key);
|
| /freebsd/contrib/llvm-project/libcxx/include/__flat_set/ |
| H A D | flat_set.h | 698 …_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 static auto __find_impl(_Self&& __self, const _Kp& __key) { in __find_impl() argument 699 auto __it = __self.lower_bound(__key); in __find_impl() 701 if (__it == __last || __self.__compare_(__key, *__it)) { in __find_impl() 708 …BI _LIBCPP_CONSTEXPR_SINCE_CXX26 static auto __equal_range_impl(_Self&& __self, const _Kp& __key) { in __equal_range_impl() argument 710 …auto __it = std::lower_bound(__self.__keys_.begin(), __self.__keys_.end(), __key, __self.__comp… in __equal_range_impl() 712 if (__it == __last || __self.__compare_(__key, *__it)) { in __equal_range_impl() 719 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 pair<iterator, bool> __emplace(_Kp&& __key) { in __emplace() argument 720 auto __it = lower_bound(__key); in __emplace() 721 if (__it == end() || __compare_(__key, *__it)) { in __emplace() 722 …terator, bool>(__flat_set_utils::__emplace_exact_pos(*this, __it, std::forward<_Kp>(__key)), true); in __emplace() [all …]
|
| H A D | flat_multiset.h | 614 _LIBCPP_HIDE_FROM_ABI iterator __emplace(_Kp&& __key) { in __emplace() argument 615 auto __it = upper_bound(__key); in __emplace() 616 return __flat_set_utils::__emplace_exact_pos(*this, __it, std::forward<_Kp>(__key)); in __emplace() 620 _LIBCPP_HIDE_FROM_ABI iterator __emplace_hint(const_iterator __hint, _Kp&& __key) { in __emplace_hint() argument 621 auto __prev_larger = __hint != cbegin() && __compare_(__key, *std::prev(__hint)); in __emplace_hint() 622 auto __next_smaller = __hint != cend() && __compare_(*__hint, __key); in __emplace_hint() 635 __hint = std::upper_bound(begin(), __hint, __key, __compare_); in __emplace_hint() 646 __hint = std::lower_bound(__hint, end(), __key, __compare_); in __emplace_hint() 648 return __flat_set_utils::__emplace_exact_pos(*this, __hint, std::forward<_Kp>(__key)); in __emplace_hint() 652 _LIBCPP_HIDE_FROM_ABI static auto __find_impl(_Self&& __self, const _Kp& __key) { in __find_impl() argument [all …]
|
| H A D | utils.h | 42 __emplace_exact_pos(_Set& __set, _Iter&& __iter, _KeyArg&& __key) { in __emplace_exact_pos() 49 auto __key_it = __set.__keys_.emplace(__iter.__base(), std::forward<_KeyArg>(__key)); in __emplace_exact_pos()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_ptrauth.h | 19 # define ptrauth_strip(__value, __key) \ argument 36 # define ptrauth_strip(__value, __key) __value argument
|
| H A D | sanitizer_platform_limits_posix.h | 220 int __key; member
|
| /freebsd/crypto/openssl/crypto/aes/asm/ |
| H A D | aes-586.pl | 222 $__key=&DWP(20,"esp"); # pointer to key schedule 305 &mov ($key,$__key); # reincarnate v1 as key 359 &mov ($key,$__key); # reincarnate v0 as key 449 if ($i==3) { &$Fn ($key,$__key); }##%edx 512 &mov ($__key,$key); # save key 545 &mov ($key,$__key); 554 &mov ($__key,$key); 622 &mov ($__key,$key); 698 &mov ($key,$__key); 786 if ($i==3) { &mov ($key,$__key); }##%edx [all …]
|
| /freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | mutex.h | 102 static struct lock_class_key __key; \ 105 __mutex_init(MUTEX(mp), (name) ? (#name) : (#mp), &__key); \
|
| H A D | rwlock.h | 186 static struct lock_class_key __key; \ 189 __init_rwsem(SEM(rwp), #rwp, &__key); \
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__functional/ |
| H A D | hash.h | 48 operator()(const void* __key, _Size __len) const { 53 const unsigned char* __data = static_cast<const unsigned char*>(__key); 84 operator()(const void* __key, _Size __len) const { 85 const char* __s = static_cast<const char*>(__key);
|
| /freebsd/contrib/openbsm/ |
| H A D | configure.ac | 57 AC_CHECK_MEMBER([struct ipc_perm.__key], 58 [AC_DEFINE(HAVE_IPC_PERM___KEY,, Define if ipc_perm.__key instead of key)],
|
| /freebsd/contrib/openbsm/config/ |
| H A D | config.h.in | 75 /* Define if ipc_perm.__key instead of key */
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | set | 788 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 789 return __tree_.template __node_handle_extract<node_type>(__key); 1251 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 1252 return __tree_.template __node_handle_extract<node_type>(__key);
|