Home
last modified time | relevance | path

Searched refs:cnd_t (Results 1 – 25 of 45) sorted by relevance

12

/third_party/mesa3d/src/c11/
Dthreads.h104 } cnd_t; typedef
125 typedef pthread_cond_t cnd_t; typedef
163 int cnd_broadcast(cnd_t *);
164 void cnd_destroy(cnd_t *);
165 int cnd_init(cnd_t *);
166 int cnd_signal(cnd_t *);
167 int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict __mtx,
169 int cnd_wait(cnd_t *, mtx_t *__mtx);
/third_party/flutter/glfw/deps/
Dtinycthread.h248 } cnd_t; typedef
250 typedef pthread_cond_t cnd_t; typedef
258 int cnd_init(cnd_t *cond);
263 void cnd_destroy(cnd_t *cond);
273 int cnd_signal(cnd_t *cond);
283 int cnd_broadcast(cnd_t *cond);
295 int cnd_wait(cnd_t *cond, mtx_t *mtx);
309 int cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *ts);
Dtinycthread.c140 int cnd_init(cnd_t *cond) in cnd_init()
169 void cnd_destroy(cnd_t *cond) in cnd_destroy()
186 int cnd_signal(cnd_t *cond) in cnd_signal()
211 int cnd_broadcast(cnd_t *cond) in cnd_broadcast()
237 static int _cnd_timedwait_win32(cnd_t *cond, mtx_t *mtx, DWORD timeout) in _cnd_timedwait_win32()
285 int cnd_wait(cnd_t *cond, mtx_t *mtx) in cnd_wait()
294 int cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *ts) in cnd_timedwait()
/third_party/musl/include/
Dthreads.h68 int cnd_init(cnd_t *);
69 void cnd_destroy(cnd_t *);
71 int cnd_broadcast(cnd_t *);
72 int cnd_signal(cnd_t *);
74 int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict, const struct timespec *__restrict);
75 int cnd_wait(cnd_t *, mtx_t *);
/third_party/musl/ndk_musl_include/
Dthreads.h68 int cnd_init(cnd_t *);
69 void cnd_destroy(cnd_t *);
71 int cnd_broadcast(cnd_t *);
72 int cnd_signal(cnd_t *);
74 int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict, const struct timespec *__restrict);
75 int cnd_wait(cnd_t *, mtx_t *);
/third_party/musl/porting/uniproton/kernel/include/
Dthreads.h68 int cnd_init(cnd_t *);
69 void cnd_destroy(cnd_t *);
71 int cnd_broadcast(cnd_t *);
72 int cnd_signal(cnd_t *);
74 int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict, const struct timespec *__restrict);
75 int cnd_wait(cnd_t *, mtx_t *);
/third_party/musl/porting/liteos_m/kernel/include/
Dthreads.h68 int cnd_init(cnd_t *);
69 void cnd_destroy(cnd_t *);
71 int cnd_broadcast(cnd_t *);
72 int cnd_signal(cnd_t *);
74 int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict, const struct timespec *__restrict);
75 int cnd_wait(cnd_t *, mtx_t *);
/third_party/mesa3d/src/c11/impl/
Dthreads_posix.c83 cnd_broadcast(cnd_t *cond) in cnd_broadcast()
91 cnd_destroy(cnd_t *cond) in cnd_destroy()
99 cnd_init(cnd_t *cond) in cnd_init()
107 cnd_signal(cnd_t *cond) in cnd_signal()
115 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *abs_time) in cnd_timedwait()
131 cnd_wait(cnd_t *cond, mtx_t *mtx) in cnd_wait()
Dthreads_win32.c68 static_assert(sizeof(cnd_t) == sizeof(CONDITION_VARIABLE), "The size of cnd_t must equal to CONDITI…
185 cnd_broadcast(cnd_t *cond) in cnd_broadcast()
194 cnd_destroy(cnd_t *cond) in cnd_destroy()
203 cnd_init(cnd_t *cond) in cnd_init()
212 cnd_signal(cnd_t *cond) in cnd_signal()
221 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *abs_time) in cnd_timedwait()
234 cnd_wait(cnd_t *cond, mtx_t *mtx) in cnd_wait()
/third_party/musl/src/thread/
Dcnd_init.c3 int cnd_init(cnd_t *c) in cnd_init()
5 *c = (cnd_t){ 0 }; in cnd_init()
Dcnd_destroy.c3 void cnd_destroy(cnd_t *c) in cnd_destroy()
Dcnd_broadcast.c4 int cnd_broadcast(cnd_t *c) in cnd_broadcast()
Dcnd_signal.c4 int cnd_signal(cnd_t *c) in cnd_signal()
Dcnd_wait.c3 int cnd_wait(cnd_t *c, mtx_t *m) in cnd_wait()
Dcnd_timedwait.c5 int cnd_timedwait(cnd_t *restrict c, mtx_t *restrict m, const struct timespec *restrict ts) in cnd_timedwait()
/third_party/mesa3d/src/util/
Du_queue.h128 cnd_t cond;
210 cnd_t has_queued_cond;
211 cnd_t has_space_cond;
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_cs_tpool.h46 cnd_t new_work;
65 cnd_t finish;
Dlp_fence.h47 cnd_t signalled;
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dcnd_timedwait.c20 static cnd_t cond;
23 extern int __cnd_timedwait_time64(cnd_t *__restrict, mtx_t *__restrict, const struct timespec *__re…
Dcnd_init.c26 cnd_t buf; in cnd_init_0100()
Dcnd_wait.c21 cnd_t cnd;
Dcnd_signal.c20 cnd_t cndPut;
/third_party/mesa3d/src/vulkan/runtime/
Dvk_queue.h92 cnd_t push;
93 cnd_t pop;
/third_party/mesa3d/src/gallium/frontends/nine/
Dnine_queue.c75 cnd_t event_pop;
76 cnd_t event_push;
/third_party/musl/compat/time32/
Dcnd_timedwait_time32.c5 int __cnd_timedwait_time32(cnd_t *restrict c, mtx_t *restrict m, const struct timespec32 *restrict … in __cnd_timedwait_time32()

12