Home
last modified time | relevance | path

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

/external/swiftshader/third_party/subzero/src/
DIceTLS.h78 static pthread_key_t FieldName##__key; \
81 pthread_key_t ClassName::FieldName##__key; \
85 FieldName##__initStatus = pthread_key_create(&FieldName##__key, nullptr); \
91 static_cast<FieldName##__type>(pthread_getspecific(FieldName##__key)))
94 pthread_setspecific(FieldName##__key, (Value)))
/external/libcxx/src/support/win32/
Dthread_win32.cpp254 int __libcpp_tls_create(__libcpp_tls_key* __key, in __libcpp_tls_create() argument
257 *__key = FlsAlloc(__at_exit); in __libcpp_tls_create()
258 if (*__key == FLS_OUT_OF_INDEXES) in __libcpp_tls_create()
263 void *__libcpp_tls_get(__libcpp_tls_key __key) in __libcpp_tls_get() argument
265 return FlsGetValue(__key); in __libcpp_tls_get()
268 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p) in __libcpp_tls_set() argument
270 if (!FlsSetValue(__key, __p)) in __libcpp_tls_set()
/external/libcxx/include/
D__threading_support200 int __libcpp_tls_create(__libcpp_tls_key* __key,
204 void *__libcpp_tls_get(__libcpp_tls_key __key);
207 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p);
382 int __libcpp_tls_create(__libcpp_tls_key *__key, void (*__at_exit)(void *))
384 return pthread_key_create(__key, __at_exit);
387 void *__libcpp_tls_get(__libcpp_tls_key __key)
389 return pthread_getspecific(__key);
392 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p)
394 return pthread_setspecific(__key, __p);
Dutility963 inline _Size operator()(const void* __key, _Size __len)
970 __murmur2_or_cityhash<_Size, 32>::operator()(const void* __key, _Size __len)
975 const unsigned char* __data = static_cast<const unsigned char*>(__key);
1004 …inline _Size operator()(const void* __key, _Size __len) _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CH…
1132 __murmur2_or_cityhash<_Size, 64>::operator()(const void* __key, _Size __len)
1134 const char* __s = static_cast<const char*>(__key);
/external/libcxx/include/experimental/
Dfunctional163 void insert(const key_type &__key, value_type __val)
165 __table [__key] = __val; // Would skip_.insert (val) be better here?
169 value_type operator [](const key_type & __key) const
171 auto __it = __table.find (__key);
196 void insert(key_type __key, value_type __val)
198 __table[static_cast<unsigned_key_type>(__key)] = __val;
202 value_type operator [](key_type __key) const
204 return __table[static_cast<unsigned_key_type>(__key)];
/external/boringssl/src/crypto/fipsmodule/aes/asm/
Daes-586.pl217 $__key=&DWP(20,"esp"); # pointer to key schedule
300 &mov ($key,$__key); # reincarnate v1 as key
354 &mov ($key,$__key); # reincarnate v0 as key
444 if ($i==3) { &$Fn ($key,$__key); }##%edx
507 &mov ($__key,$key); # save key
540 &mov ($key,$__key);
549 &mov ($__key,$key);
617 &mov ($__key,$key);
693 &mov ($key,$__key);
781 if ($i==3) { &mov ($key,$__key); }##%edx
[all …]
/external/strace/
Dipc_defs.h37 # define __key key macro
Dipc_shmctl.c78 tprintf(", key=%u", (unsigned) shmid_ds.shm_perm.__key); in print_shmid_ds()
Dipc_msgctl.c78 tprintf(", key=%u", (unsigned) msqid_ds.msg_perm.__key); in print_msqid_ds()
/external/fio/os/
Dos-android.h98 static inline int shmget (key_t __key, size_t __size, int __shmflg) in shmget() argument
107 sprintf(keybuf,"%d",__key); in shmget()
/external/toybox/toys/pending/
Dipcs.c236 printf("0x%08x ", buf.shm_perm.__key); in shm_array()
328 printf("0x%08x ", buf.sem_perm.__key); in sem_array()
413 printf("0x%08x ", buf.msg_perm.__key); in msg_array()
/external/strace/tests-mx32/
Dipc_msg.c113 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key, in main()
Dipc_shm.c147 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key, in main()
/external/strace/tests/
Dipc_msg.c113 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key, in main()
Dipc_shm.c147 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key, in main()
/external/strace/tests-m32/
Dipc_msg.c113 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key, in main()
Dipc_shm.c147 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key, in main()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_platform_limits_posix.h187 int __key; member
Dsanitizer_platform_limits_posix.cc1135 CHECK_SIZE_AND_OFFSET(ipc_perm, __key);
/external/valgrind/perf/
Dtest_input_for_tinycc.c802 extern void *bsearch (__const void *__key, __const void *__base,