Home
last modified time | relevance | path

Searched refs:__key (Results 1 – 23 of 23) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dptrauth.h93 #define ptrauth_strip(__value, __key) __builtin_ptrauth_strip(__value, __key) argument
123 #define ptrauth_sign_constant(__value, __key, __data) \ argument
124 __builtin_ptrauth_sign_constant(__value, __key, __data)
138 #define ptrauth_sign_unauthenticated(__value, __key, __data) \ argument
139 __builtin_ptrauth_sign_unauthenticated(__value, __key, __data)
258 #define ptrauth_strip(__value, __key) \ argument
260 (void)__key; \
271 #define ptrauth_sign_constant(__value, __key, __data) \ argument
273 (void)__key; \
278 #define ptrauth_sign_unauthenticated(__value, __key, __data) \ argument
[all …]
H A Dkeylockerintrin.h130 _mm_encodekey128_u32(unsigned int __htype, __m128i __key, void *__h) { in _mm_encodekey128_u32() argument
131 return __builtin_ia32_encodekey128_u32(__htype, (__v2di)__key, __h); in _mm_encodekey128_u32()
/freebsd/contrib/llvm-project/libcxx/include/__thread/support/
H A Dpthread.h209 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 Dc11.h179 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 Dwindows.h125 __libcpp_tls_create(__libcpp_tls_key* __key, void(_LIBCPP_TLS_DESTRUCTOR_CC* __at_exit)(void*));
127 _LIBCPP_EXPORTED_FROM_ABI void* __libcpp_tls_get(__libcpp_tls_key __key);
129 _LIBCPP_EXPORTED_FROM_ABI int __libcpp_tls_set(__libcpp_tls_key __key, void* __p);
/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Dboyer_moore_searcher.h54 _LIBCPP_HIDE_FROM_ABI void insert(const key_type& __key, value_type __val) { __table_[__key] = __val; }
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) {
79 __table_[static_cast<unsigned_key_type>(__key)] = __val;
82 _LIBCPP_HIDE_FROM_ABI value_type operator[](key_type __key) const {
83 return __table_[static_cast<unsigned_key_type>(__key)];
62 insert(const key_type & __key,value_type __val) insert() argument
91 insert(key_type __key,value_type __val) insert() argument
H A Dhash.h48 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/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_ptrauth.h19 # define ptrauth_strip(__value, __key) \ argument
36 # define ptrauth_strip(__value, __key) __value argument
H A Dsanitizer_platform_limits_posix.h215 int __key; member
H A Dsanitizer_platform_limits_posix.cpp1206 CHECK_SIZE_AND_OFFSET(ipc_perm, __key);
/freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dmutex.h101 static struct lock_class_key __key; \
104 __mutex_init(MUTEX(mp), (name) ? (#name) : (#mp), &__key); \
H A Drwlock.h121 static struct lock_class_key __key; \
124 __init_rwsem(SEM(rwp), #rwp, &__key); \
/freebsd/crypto/openssl/crypto/aes/asm/
H A Daes-586.pl222 $__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/dev/iwlwifi/
H A Diwl-trans.c25 static struct lock_class_key __key; in iwl_trans_alloc() local
36 &__key, 0); in iwl_trans_alloc()
/freebsd/contrib/openbsm/
H A Dconfigure.ac57 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 Dconfig.h.in75 /* Define if ipc_perm.__key instead of key */
/freebsd/contrib/llvm-project/libcxx/include/
H A Dset781 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) {
782 return __tree_.template __node_handle_extract<node_type>(__key);
1236 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) {
1237 return __tree_.template __node_handle_extract<node_type>(__key);
H A Dunordered_set795 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) {
796 return __table_.template __node_handle_extract<node_type>(__key);
1388 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) {
1389 return __table_.template __node_handle_extract<node_type>(__key);
H A Dmap1326 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) {
1327 return __tree_.template __node_handle_extract<node_type>(__key);
1907 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) {
1908 return __tree_.template __node_handle_extract<node_type>(__key);
H A Dunordered_map1339 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) {
1340 return __table_.template __node_handle_extract<node_type>(__key);
2081 _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) {
2082 return __table_.template __node_handle_extract<node_type>(__key);
H A D__hash_table869 _LIBCPP_HIDE_FROM_ABI _NodeHandle __node_handle_extract(key_type const& __key);
1612 __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_handle_extract(key_type const& __key) {
1613 iterator __i = find(__key);
H A D__tree1960 …M_ABI _NodeHandle __tree<_Tp, _Compare, _Allocator>::__node_handle_extract(key_type const& __key) {
1961 iterator __it = find(__key);
/freebsd/contrib/openbsm/libbsm/
H A Dbsm_token.c592 ADD_U_INT32(dptr, perm->__key); in au_to_ipc_perm()