Home
last modified time | relevance | path

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

123

/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/llvm-project/libcxx/src/support/win32/
Dthread_win32.cpp253 int __libcpp_tls_create(__libcpp_tls_key* __key, in __libcpp_tls_create() argument
259 *__key = index; 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/src/support/win32/
Dthread_win32.cpp254 int __libcpp_tls_create(__libcpp_tls_key* __key, in __libcpp_tls_create() argument
260 *__key = index; in __libcpp_tls_create()
264 void *__libcpp_tls_get(__libcpp_tls_key __key) in __libcpp_tls_get() argument
266 return FlsGetValue(__key); in __libcpp_tls_get()
269 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p) in __libcpp_tls_set() argument
271 if (!FlsSetValue(__key, __p)) in __libcpp_tls_set()
/external/python/apitools/apitools/base/py/testing/
Dmock.py131 self.__key = key
149 return self.__key
173 if key != self.__key or not (self.__request == request or
176 (self.__key, self.__request))
191 self.__key = key
225 mode, self.__key, real_type, type(msg)))
256 _ExpectedRequestResponse(self.__key,
274 (self.__key, request), (None, None))
277 response = request_response.ValidateAndRespond(self.__key, request)
/external/libcxx/include/
D__threading_support197 int __libcpp_tls_create(__libcpp_tls_key* __key,
201 void *__libcpp_tls_get(__libcpp_tls_key __key);
204 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p);
379 int __libcpp_tls_create(__libcpp_tls_key *__key, void (*__at_exit)(void *))
381 return pthread_key_create(__key, __at_exit);
384 void *__libcpp_tls_get(__libcpp_tls_key __key)
386 return pthread_getspecific(__key);
389 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p)
391 return pthread_setspecific(__key, __p);
/external/fonttools/Lib/fontTools/misc/
DdictTools.py29 def __key(self): member in hashdict
34 str(i[0]),repr(i[1])) for i in self.__key()))
37 return hash(self.__key())
/external/llvm-project/libcxx/include/
D__threading_support277 int __libcpp_tls_create(__libcpp_tls_key* __key,
281 void *__libcpp_tls_get(__libcpp_tls_key __key);
284 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p);
549 int __libcpp_tls_create(__libcpp_tls_key *__key, void (*__at_exit)(void *))
551 return pthread_key_create(__key, __at_exit);
554 void *__libcpp_tls_get(__libcpp_tls_key __key)
556 return pthread_getspecific(__key);
559 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p)
561 return pthread_setspecific(__key, __p);
706 int __libcpp_tls_create(__libcpp_tls_key *__key, void (*__at_exit)(void *))
[all …]
/external/llvm-project/clang/lib/Headers/
Dkeylockerintrin.h134 _mm_encodekey128_u32(unsigned int __htype, __m128i __key, void *__h) { in _mm_encodekey128_u32() argument
135 return __builtin_ia32_encodekey128_u32(__htype, (__v2di)__key, __h); in _mm_encodekey128_u32()
/external/llvm-project/libcxx/include/experimental/
Dfunctional161 void insert(const key_type &__key, value_type __val)
163 __table [__key] = __val; // Would skip_.insert (val) be better here?
167 value_type operator [](const key_type & __key) const
169 auto __it = __table.find (__key);
194 void insert(key_type __key, value_type __val)
196 __table[static_cast<unsigned_key_type>(__key)] = __val;
200 value_type operator [](key_type __key) const
202 return __table[static_cast<unsigned_key_type>(__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/ltp/testcases/kernel/syscalls/ipc/msgctl/
Dmsgctl01.c77 if (buf.msg_perm.__key == msgkey) { in verify_msgctl()
81 (unsigned)buf.msg_perm.__key, (unsigned)msgkey); in verify_msgctl()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_ptrauth.h16 #define ptrauth_strip(__value, __key) __value argument
/external/strace/
Dipc_defs.h37 # define __key key macro
Dipc_msgctl.c78 tprintf(", key=%u", (unsigned) msqid_ds.msg_perm.__key); in print_msqid_ds()
Dipc_shmctl.c78 tprintf(", key=%u", (unsigned) shmid_ds.shm_perm.__key); in print_shmid_ds()
/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/
Dipc_msg.c154 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key, in main()
Dipc_shm.c192 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key, in main()
/external/strace/tests-m32/
Dipc_msg.c154 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key, in main()
Dipc_shm.c192 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key, in main()
/external/strace/tests-mx32/
Dipc_msg.c154 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key, in main()
Dipc_shm.c192 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key, in main()
/external/rust/crates/libc/src/unix/linux_like/linux/uclibc/mips/mips64/
Dmod.rs94 pub __key: ::key_t,
/external/rust/crates/libc/src/unix/linux_like/linux/uclibc/x86_64/
Dmod.rs27 pub __key: ::key_t,
/external/rust/crates/serde_derive/src/
Dde.rs2532 …while let _serde::__private::Some(__key) = try!(_serde::de::MapAccess::next_key::<__Field>(&mut __… in deserialize_map()
2533 match __key { in deserialize_map()
2577 if let _serde::__private::Some(_serde::__private::Some((__key, _))) = in deserialize_map()
2580 if let _serde::__private::Some(__key) = __key.as_str() { in deserialize_map()
2582 _serde::de::Error::custom(format_args!("unknown field `{}`", &__key))); in deserialize_map()
2764 …while let _serde::__private::Some(__key) = try!(_serde::de::MapAccess::next_key::<__Field>(&mut __… in deserialize_map_in_place()
2765 match __key { in deserialize_map_in_place()

123