/external/swiftshader/third_party/subzero/src/ |
D | IceTLS.h | 78 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/ |
D | thread_win32.cpp | 254 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_support | 200 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);
|
D | utility | 963 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/ |
D | functional | 163 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/ |
D | aes-586.pl | 217 $__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/ |
D | ipc_defs.h | 37 # define __key key macro
|
D | ipc_shmctl.c | 78 tprintf(", key=%u", (unsigned) shmid_ds.shm_perm.__key); in print_shmid_ds()
|
D | ipc_msgctl.c | 78 tprintf(", key=%u", (unsigned) msqid_ds.msg_perm.__key); in print_msqid_ds()
|
/external/fio/os/ |
D | os-android.h | 98 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/ |
D | ipcs.c | 236 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/ |
D | ipc_msg.c | 113 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key, in main()
|
D | ipc_shm.c | 147 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key, in main()
|
/external/strace/tests/ |
D | ipc_msg.c | 113 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key, in main()
|
D | ipc_shm.c | 147 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key, in main()
|
/external/strace/tests-m32/ |
D | ipc_msg.c | 113 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key, in main()
|
D | ipc_shm.c | 147 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key, in main()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_platform_limits_posix.h | 187 int __key; member
|
D | sanitizer_platform_limits_posix.cc | 1135 CHECK_SIZE_AND_OFFSET(ipc_perm, __key);
|
/external/valgrind/perf/ |
D | test_input_for_tinycc.c | 802 extern void *bsearch (__const void *__key, __const void *__base,
|