/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
D | mtx_init.c | 31 ret = mtx_init(&g_mtx, mtx_plain); in mtx_init_0100() 43 ret = mtx_init(&g_mtx, mtx_timed); in mtx_init_0200() 55 ret = mtx_init(&g_mtx, mtx_plain | mtx_recursive); in mtx_init_0300() 67 ret = mtx_init(&g_mtx, mtx_timed | mtx_recursive); in mtx_init_0400()
|
D | mtx_lock.c | 81 int result = mtx_init(&g_mtex, mtx_plain); in mtx_lock_0100() 106 int result = mtx_init(&g_mtex, mtx_timed); in mtx_lock_0200() 131 int result = mtx_init(&g_mtex, mtx_plain | mtx_recursive); in mtx_lock_0300() 156 int result= mtx_init(&g_mtex, mtx_timed | mtx_recursive); in mtx_lock_0400() 182 int result = mtx_init(&g_mtex, mtx_plain | mtx_recursive); in mtx_lock_0500()
|
D | mtx_timedlock.c | 37 ret = mtx_init(&mutex, mtx_timed); in mtx_timedlock_0100() 64 ret = mtx_init(&mutex, mtx_timed); in mtx_timedlock_0200() 96 ret = mtx_init(&mutex, mtx_timed); in mtx_timedlock_time64_0100()
|
D | mtx_trylock.c | 52 int result = mtx_init(&g_mtex, mtx_plain | mtx_recursive); in mtx_trylock_0100() 77 int result = mtx_init(&g_mtex, mtx_plain); in mtx_trylock_0200()
|
D | cnd_timedwait.c | 53 if (mtx_init(&mutex, mtx_plain) != thrd_success) { in cnd_timedwait_0100() 97 if (mtx_init(&mutex, mtx_plain) != thrd_success) { in cnd_timedwait_time64_0100()
|
D | mtx_unlock.c | 39 int result = mtx_init(&g_mtx, mtx_plain); in mtx_unlock_0100()
|
D | cnd_wait.c | 41 mtx_init(&mtx, 0); in cnd_wait_0100()
|
D | cnd_signal.c | 42 mtx_init(&mtx, 0); in cnd_signal_0100()
|
D | cnd_broadcast.c | 50 if (mtx_init(&mutex, mtx_plain) != thrd_success) { in cnd_broadcast_0100()
|
/third_party/musl/src/thread/ |
D | mtx_init.c | 4 int mtx_init(mtx_t *m, int type) in mtx_init() function
|
/third_party/FreeBSD/sys/dev/random/ |
D | yarrow.h | 33 #define RANDOM_RESEED_INIT_LOCK(x) mtx_init(&yarrow_state.ys_mtx, "reseed mutex", NULL, MTX_DEF)
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | nine_queue.c | 244 (void) mtx_init(&ctx->mutex_pop, mtx_plain); in nine_queue_create() 247 (void) mtx_init(&ctx->mutex_push, mtx_plain); in nine_queue_create()
|
/third_party/mesa3d/src/gallium/winsys/radeon/drm/ |
D | radeon_drm_winsys.c | 900 (void) mtx_init(&ws->hyperz_owner_mutex, mtx_plain); in radeon_drm_winsys_create() 901 (void) mtx_init(&ws->cmask_owner_mutex, mtx_plain); in radeon_drm_winsys_create() 906 (void) mtx_init(&ws->bo_handles_mutex, mtx_plain); in radeon_drm_winsys_create() 907 (void) mtx_init(&ws->vm32.mutex, mtx_plain); in radeon_drm_winsys_create() 908 (void) mtx_init(&ws->vm64.mutex, mtx_plain); in radeon_drm_winsys_create() 909 (void) mtx_init(&ws->bo_fence_lock, mtx_plain); in radeon_drm_winsys_create()
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_assembler.c | 38 mtx_init(&shader->variants_lock, mtx_plain); in ir3_parse_asm()
|
/third_party/musl/ndk_musl_include/ |
D | threads.h | 60 int mtx_init(mtx_t *, int);
|
/third_party/gettext/gettext-runtime/intl/ |
D | setlocale-lock.c | 120 if (mtx_init (&mutex, mtx_plain) != thrd_success) in atomic_init()
|
D | lock.c | 33 if (mtx_init (&lock->mutex, mtx_plain) != thrd_success) in glthread_lock_init() 73 if (mtx_init (&lock->lock, mtx_plain) != thrd_success in glthread_rwlock_init() 208 if (mtx_init (&lock->mutex, mtx_plain | mtx_recursive) != thrd_success) in glthread_recursive_lock_init()
|
/third_party/musl/include/ |
D | threads.h | 60 int mtx_init(mtx_t *, int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | threads.h | 60 int mtx_init(mtx_t *, int);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | threads.h | 60 int mtx_init(mtx_t *, int);
|
/third_party/FreeBSD/sys/sys/ |
D | mutex.h | 57 mtx_init(pthread_mutex_t *mtx, const char *name, const char *type, int opts) in mtx_init() function
|
/third_party/mesa3d/src/vulkan/util/ |
D | vk_instance.c | 131 if (mtx_init(&instance->debug_report.callbacks_mutex, mtx_plain) != 0) in vk_instance_init() 136 if (mtx_init(&instance->debug_utils.callbacks_mutex, mtx_plain) != 0) { in vk_instance_init()
|
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/ |
D | user_route.h | 98 #define RT_LOCK_INIT(_rt) mtx_init(&(_rt)->rt_mtx, "rtentry", NULL, MTX_DEF | MTX_DUPOK)
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_scene_queue.c | 79 (void) mtx_init(&queue->mutex, mtx_plain); in lp_scene_queue_create()
|
/third_party/mesa3d/src/drm-shim/ |
D | device.c | 85 mtx_init(&shim_device.mem_lock, mtx_plain); in drm_shim_device_init() 118 mtx_init(&shim_fd->handle_lock, mtx_plain); in drm_shim_file_create()
|