| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | __threading_support | 237 int __libcpp_tls_create(__libcpp_tls_key* __key, void(_LIBCPP_TLS_DESTRUCTOR_CC* __at_exit)(void*)); 240 void* __libcpp_tls_get(__libcpp_tls_key __key); 243 int __libcpp_tls_set(__libcpp_tls_key __key, void* __p); 346 int __libcpp_tls_create(__libcpp_tls_key* __key, void (*__at_exit)(void*)) { 347 return pthread_key_create(__key, __at_exit); 350 void* __libcpp_tls_get(__libcpp_tls_key __key) { return pthread_getspecific(__key); } 352 int __libcpp_tls_set(__libcpp_tls_key __key, void* __p) { return pthread_setspecific(__key, __p); } 442 int __libcpp_tls_create(__libcpp_tls_key* __key, void (*__at_exit)(void*)) { 443 return tss_create(__key, __at_exit) == thrd_success ? 0 : EINVAL; 446 void* __libcpp_tls_get(__libcpp_tls_key __key) { return tss_get(__key); } [all …]
|
| H A D | set | 784 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 785 return __tree_.template __node_handle_extract<node_type>(__key); 1242 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 1243 return __tree_.template __node_handle_extract<node_type>(__key);
|
| H A D | unordered_set | 799 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 800 return __table_.template __node_handle_extract<node_type>(__key); 1398 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 1399 return __table_.template __node_handle_extract<node_type>(__key);
|
| H A D | map | 1331 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 1332 return __tree_.template __node_handle_extract<node_type>(__key); 1921 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 1922 return __tree_.template __node_handle_extract<node_type>(__key);
|
| H A D | unordered_map | 1344 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 1345 return __table_.template __node_handle_extract<node_type>(__key); 2095 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 2096 return __table_.template __node_handle_extract<node_type>(__key);
|
| H A D | __hash_table | 840 _LIBCPP_HIDE_FROM_ABI _NodeHandle __node_handle_extract(key_type const& __key); 1584 __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_handle_extract(key_type const& __key) { 1585 iterator __i = find(__key);
|
| H A D | __tree | 1967 …M_ABI _NodeHandle __tree<_Tp, _Compare, _Allocator>::__node_handle_extract(key_type const& __key) { 1968 iterator __it = find(__key);
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | boyer_moore_searcher.h | 54 …_LIBCPP_HIDE_FROM_ABI void insert(const key_type& __key, value_type __val) { __table_[__key] = __v… in insert() argument 56 _LIBCPP_HIDE_FROM_ABI value_type operator[](const key_type& __key) const { 57 auto __it = __table_.find(__key); 78 _LIBCPP_HIDE_FROM_ABI void insert(key_type __key, value_type __val) { in insert() argument 79 __table_[static_cast<unsigned_key_type>(__key)] = __val; in insert() 82 _LIBCPP_HIDE_FROM_ABI value_type operator[](key_type __key) const { 83 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-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_ptrauth.h | 15 inline unsigned long ptrauth_strip(void* __value, unsigned int __key) { in ptrauth_strip() argument 34 #define ptrauth_strip(__value, __key) __value argument
|
| H A D | sanitizer_platform_limits_posix.h | 215 int __key; member
|
| H A D | sanitizer_platform_limits_posix.cpp | 1206 CHECK_SIZE_AND_OFFSET(ipc_perm, __key);
|
| /freebsd-14.2/sys/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | mutex.h | 101 static struct lock_class_key __key; \ 104 __mutex_init(MUTEX(mp), (name) ? (#name) : (#mp), &__key); \
|
| H A D | rwlock.h | 121 static struct lock_class_key __key; \ 124 __init_rwsem(SEM(rwp), #rwp, &__key); \
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Headers/ |
| H A D | keylockerintrin.h | 131 _mm_encodekey128_u32(unsigned int __htype, __m128i __key, void *__h) { in _mm_encodekey128_u32() argument 132 return __builtin_ia32_encodekey128_u32(__htype, (__v2di)__key, __h); in _mm_encodekey128_u32()
|
| /freebsd-14.2/crypto/openssl/crypto/aes/asm/ |
| H A D | aes-586.pl | 512 &mov ($__key,$key); # save key 545 &mov ($key,$__key); 554 &mov ($__key,$key); 622 &mov ($__key,$key); 698 &mov ($key,$__key); 890 &mov ($__key,$key); 1374 &mov ($key,$__key); 1383 &mov ($__key,$key); 1409 &mov ($__key,$key); 1485 &mov ($key,$__key); [all …]
|
| /freebsd-14.2/sys/contrib/dev/iwlwifi/ |
| H A D | iwl-trans.c | 25 static struct lock_class_key __key; in iwl_trans_alloc() local 36 &__key, 0); in iwl_trans_alloc()
|
| /freebsd-14.2/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-14.2/contrib/openbsm/config/ |
| H A D | config.h.in | 75 /* Define if ipc_perm.__key instead of key */
|
| /freebsd-14.2/contrib/openbsm/libbsm/ |
| H A D | bsm_token.c | 592 ADD_U_INT32(dptr, perm->__key); in au_to_ipc_perm()
|