Searched refs:tss_t (Results 1 – 14 of 14) sorted by relevance
/third_party/mesa3d/src/c11/ |
D | threads.h | 106 typedef unsigned long tss_t; typedef 127 typedef pthread_key_t tss_t; typedef 190 int tss_create(tss_t *, tss_dtor_t); 191 void tss_delete(tss_t); 192 void *tss_get(tss_t); 193 int tss_set(tss_t, void *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | threads.h | 16 typedef unsigned tss_t; typedef 77 int tss_create(tss_t *, tss_dtor_t); 78 void tss_delete(tss_t); 80 int tss_set(tss_t, void *); 81 void *tss_get(tss_t);
|
/third_party/musl/include/ |
D | threads.h | 16 typedef unsigned tss_t; typedef 77 int tss_create(tss_t *, tss_dtor_t); 78 void tss_delete(tss_t); 80 int tss_set(tss_t, void *); 81 void *tss_get(tss_t);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | threads.h | 16 typedef unsigned tss_t; typedef 77 int tss_create(tss_t *, tss_dtor_t); 78 void tss_delete(tss_t); 80 int tss_set(tss_t, void *); 81 void *tss_get(tss_t);
|
/third_party/glfw/deps/ |
D | tinycthread.h | 394 typedef DWORD tss_t; typedef 396 typedef pthread_key_t tss_t; typedef 414 int tss_create(tss_t *key, tss_dtor_t dtor); 421 void tss_delete(tss_t key); 428 void *tss_get(tss_t key); 437 int tss_set(tss_t key, void *val);
|
D | tinycthread.c | 521 int tss_create(tss_t *key, tss_dtor_t dtor) in tss_create() 543 void tss_delete(tss_t key) in tss_delete() 552 void *tss_get(tss_t key) in tss_get() 561 int tss_set(tss_t key, void *val) in tss_set()
|
/third_party/mesa3d/src/c11/impl/ |
D | threads_win32.c | 70 static_assert(sizeof(tss_t) == sizeof(DWORD), "The size of tss_t must equal to DWORD"); 125 tss_t key; 129 static int impl_tss_dtor_register(tss_t key, tss_dtor_t dtor) in impl_tss_dtor_register() 437 tss_create(tss_t *key, tss_dtor_t dtor) in tss_create() 452 tss_delete(tss_t key) in tss_delete() 459 tss_get(tss_t key) in tss_get() 466 tss_set(tss_t key, void *val) in tss_set()
|
D | threads_posix.c | 330 tss_create(tss_t *key, tss_dtor_t dtor) in tss_create() 338 tss_delete(tss_t key) in tss_delete() 345 tss_get(tss_t key) in tss_get() 352 tss_set(tss_t key, void *val) in tss_set()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/ |
D | thread_tss_test.cpp | 31 tss_t tssKey; 47 tss_t tssKey;
|
/third_party/musl/src/thread/ |
D | tss_delete.c | 4 void tss_delete(tss_t key) in tss_delete()
|
D | tss_create.c | 4 int tss_create(tss_t *tss, tss_dtor_t dtor) in tss_create()
|
D | tss_set.c | 4 int tss_set(tss_t k, void *x) in tss_set()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
D | tss_set.c | 20 static tss_t key;
|
/third_party/musl/Benchmark/musl/ |
D | libc_pthread.cpp | 333 tss_t key; in Bm_function_tss_get()
|