Home
last modified time | relevance | path

Searched refs:tss_t (Results 1 – 14 of 14) sorted by relevance

/third_party/mesa3d/src/c11/
Dthreads.h106 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/
Dthreads.h16 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/
Dthreads.h16 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/
Dthreads.h16 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/
Dtinycthread.h394 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);
Dtinycthread.c521 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/
Dthreads_win32.c70 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()
Dthreads_posix.c330 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/
Dthread_tss_test.cpp31 tss_t tssKey;
47 tss_t tssKey;
/third_party/musl/src/thread/
Dtss_delete.c4 void tss_delete(tss_t key) in tss_delete()
Dtss_create.c4 int tss_create(tss_t *tss, tss_dtor_t dtor) in tss_create()
Dtss_set.c4 int tss_set(tss_t k, void *x) in tss_set()
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dtss_set.c20 static tss_t key;
/third_party/musl/Benchmark/musl/
Dlibc_pthread.cpp333 tss_t key; in Bm_function_tss_get()