Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/src/support/win32/
H A Dthread_win32.cpp252 int __libcpp_tls_create(__libcpp_tls_key* __key, in __libcpp_tls_create() argument
258 *__key = index; in __libcpp_tls_create()
262 void *__libcpp_tls_get(__libcpp_tls_key __key) in __libcpp_tls_get() argument
264 return FlsGetValue(__key); in __libcpp_tls_get()
267 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p) in __libcpp_tls_set() argument
269 if (!FlsSetValue(__key, __p)) in __libcpp_tls_set()
/llvm-project-15.0.7/libcxx/include/
H A D__threading_support242 int __libcpp_tls_create(__libcpp_tls_key* __key,
246 void *__libcpp_tls_get(__libcpp_tls_key __key);
249 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p);
418 return pthread_key_create(__key, __at_exit);
421 void *__libcpp_tls_get(__libcpp_tls_key __key)
423 return pthread_getspecific(__key);
426 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p)
428 return pthread_setspecific(__key, __p);
578 void *__libcpp_tls_get(__libcpp_tls_key __key)
580 return tss_get(__key);
[all …]
H A Dset786 node_type extract(key_type const& __key)
788 return __tree_.template __node_handle_extract<node_type>(__key);
1317 node_type extract(key_type const& __key)
1319 return __tree_.template __node_handle_extract<node_type>(__key);
H A Dunordered_set730 node_type extract(key_type const& __key)
732 return __table_.template __node_handle_extract<node_type>(__key);
1363 node_type extract(key_type const& __key)
1365 return __table_.template __node_handle_extract<node_type>(__key);
H A Dmap1402 node_type extract(key_type const& __key)
1404 return __tree_.template __node_handle_extract<node_type>(__key);
2070 node_type extract(key_type const& __key)
2072 return __tree_.template __node_handle_extract<node_type>(__key);
H A Dunordered_map1385 node_type extract(key_type const& __key)
1387 return __table_.template __node_handle_extract<node_type>(__key);
2168 node_type extract(key_type const& __key)
2170 return __table_.template __node_handle_extract<node_type>(__key);
H A D__hash_table1143 _NodeHandle __node_handle_extract(key_type const& __key);
2122 key_type const& __key)
2124 iterator __i = find(__key);
H A D__tree2311 __tree<_Tp, _Compare, _Allocator>::__node_handle_extract(key_type const& __key)
2313 iterator __it = find(__key);
/llvm-project-15.0.7/libcxx/include/__functional/
H A Dboyer_moore_searcher.h61 _LIBCPP_HIDE_FROM_ABI void insert(const key_type& __key, value_type __val) { in insert() argument
62 __table_[__key] = __val; in insert()
65 _LIBCPP_HIDE_FROM_ABI value_type operator[](const key_type& __key) const {
66 auto __it = __table_.find(__key);
90 _LIBCPP_HIDE_FROM_ABI void insert(key_type __key, value_type __val) { in insert() argument
91 __table_[static_cast<unsigned_key_type>(__key)] = __val; in insert()
94 _LIBCPP_HIDE_FROM_ABI value_type operator[](key_type __key) const {
95 return __table_[static_cast<unsigned_key_type>(__key)];
H A Dhash.h50 inline _Size operator()(const void* __key, _Size __len)
57 __murmur2_or_cityhash<_Size, 32>::operator()(const void* __key, _Size __len)
62 const unsigned char* __data = static_cast<const unsigned char*>(__key);
93 …inline _Size operator()(const void* __key, _Size __len) _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CH…
221 __murmur2_or_cityhash<_Size, 64>::operator()(const void* __key, _Size __len)
223 const char* __s = static_cast<const char*>(__key);
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_ptrauth.h15 inline unsigned long ptrauth_strip(void* __value, unsigned int __key) { in ptrauth_strip() argument
34 #define ptrauth_strip(__value, __key) __value argument
H A Dsanitizer_platform_limits_posix.h224 int __key; member
H A Dsanitizer_platform_limits_posix.cpp1185 CHECK_SIZE_AND_OFFSET(ipc_perm, __key);
/llvm-project-15.0.7/libcxx/include/experimental/
H A Dfunctional143 void insert(const key_type &__key, value_type __val)
145 __table [__key] = __val; // Would skip_.insert (val) be better here?
149 value_type operator [](const key_type & __key) const
151 auto __it = __table.find (__key);
176 void insert(key_type __key, value_type __val)
178 __table[static_cast<unsigned_key_type>(__key)] = __val;
182 value_type operator [](key_type __key) const
184 return __table[static_cast<unsigned_key_type>(__key)];
/llvm-project-15.0.7/clang/lib/Headers/
H A Dkeylockerintrin.h131 _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()