Home
last modified time | relevance | path

Searched defs:mtx (Results 1 – 25 of 117) sorted by relevance

12345

/third_party/musl/libc-test/src/functionalext/thread/
Dpthread_mutex_ext.c23 pthread_mutex_t *mtx = (pthread_mutex_t*)arg; in PthreadClocklockOutRealTime() local
44 pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; in pthread_mutex_clocklock_0010() local
60 pthread_mutex_t *mtx = (pthread_mutex_t*)arg; in PthreadClocklockNoOutRealTime() local
76 pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; in pthread_mutex_clocklock_0020() local
91 pthread_mutex_t *mtx = (pthread_mutex_t*)arg; in PthreadClocklockOutMonoTime() local
112 pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; in pthread_mutex_clocklock_0030() local
128 pthread_mutex_t *mtx = (pthread_mutex_t*)arg; in PthreadClocklockNoOutMonoTime() local
144 pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; in pthread_mutex_clocklock_0040() local
159 pthread_mutex_t *mtx = (pthread_mutex_t*)arg; in PthreadClocklockOutRealTime2() local
184 pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; in pthread_mutex_clocklock_0050() local
[all …]
/third_party/mesa3d/src/util/
Dsimple_mtx.h76 simple_mtx_init(simple_mtx_t *mtx, ASSERTED int type) in simple_mtx_init()
86 simple_mtx_destroy(ASSERTED simple_mtx_t *mtx) in simple_mtx_destroy()
95 simple_mtx_lock(simple_mtx_t *mtx) in simple_mtx_lock()
116 simple_mtx_unlock(simple_mtx_t *mtx) in simple_mtx_unlock()
133 simple_mtx_assert_locked(simple_mtx_t *mtx) in simple_mtx_assert_locked()
145 simple_mtx_init(simple_mtx_t *mtx, int type) in simple_mtx_init()
151 simple_mtx_destroy(simple_mtx_t *mtx) in simple_mtx_destroy()
157 simple_mtx_lock(simple_mtx_t *mtx) in simple_mtx_lock()
163 simple_mtx_unlock(simple_mtx_t *mtx) in simple_mtx_unlock()
169 simple_mtx_assert_locked(simple_mtx_t *mtx) in simple_mtx_assert_locked()
Dcnd_monotonic.h110 u_cnd_monotonic_timedwait(struct u_cnd_monotonic *cond, mtx_t *mtx, const struct timespec *abs_time) in u_cnd_monotonic_timedwait()
132 u_cnd_monotonic_wait(struct u_cnd_monotonic *cond, mtx_t *mtx) in u_cnd_monotonic_wait()
/third_party/FreeBSD/sys/dev/usb/
Dusb_request.c373 usbd_do_request_flags(struct usb_device *udev, struct mtx *mtx, in usbd_do_request_flags()
752 usbd_req_reset_port(struct usb_device *udev, struct mtx *mtx, uint8_t port) in usbd_req_reset_port()
855 usbd_req_warm_reset_port(struct usb_device *udev, struct mtx *mtx, in usbd_req_warm_reset_port()
966 struct mtx *mtx, uint16_t *actlen, void *desc, in usbd_req_get_desc()
1054 usbd_req_get_string_any(struct usb_device *udev, struct mtx *mtx, char *buf, in usbd_req_get_string_any()
1156 usbd_req_get_string_desc(struct usb_device *udev, struct mtx *mtx, void *sdesc, in usbd_req_get_string_desc()
1222 usbd_req_get_config_desc(struct usb_device *udev, struct mtx *mtx, in usbd_req_get_config_desc()
1292 usbd_req_get_config_desc_full(struct usb_device *udev, struct mtx *mtx, in usbd_req_get_config_desc_full()
1342 usbd_req_get_device_desc(struct usb_device *udev, struct mtx *mtx, in usbd_req_get_device_desc()
1358 usbd_req_get_alt_interface_no(struct usb_device *udev, struct mtx *mtx, in usbd_req_get_alt_interface_no()
[all …]
/third_party/mesa3d/src/c11/impl/
Dthreads_posix.c115 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()
142 mtx_destroy(mtx_t *mtx) in mtx_destroy()
176 mtx_init(mtx_t *mtx, int type) in mtx_init()
200 mtx_lock(mtx_t *mtx) in mtx_lock()
208 mtx_timedlock(mtx_t *mtx, const struct timespec *ts) in mtx_timedlock()
237 mtx_trylock(mtx_t *mtx) in mtx_trylock()
245 mtx_unlock(mtx_t *mtx) in mtx_unlock()
Dthreads_win32.c221 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()
246 mtx_destroy(mtx_t *mtx) in mtx_destroy()
254 mtx_init(mtx_t *mtx, int type) in mtx_init()
268 mtx_lock(mtx_t *mtx) in mtx_lock()
277 mtx_timedlock(mtx_t *mtx, const struct timespec *ts) in mtx_timedlock()
292 mtx_trylock(mtx_t *mtx) in mtx_trylock()
300 mtx_unlock(mtx_t *mtx) in mtx_unlock()
/third_party/flutter/glfw/deps/
Dtinycthread.c56 int mtx_init(mtx_t *mtx, int type) in mtx_init()
77 void mtx_destroy(mtx_t *mtx) in mtx_destroy()
86 int mtx_lock(mtx_t *mtx) in mtx_lock()
101 int mtx_timedlock(mtx_t *mtx, const struct timespec *ts) in mtx_timedlock()
109 int mtx_trylock(mtx_t *mtx) in mtx_trylock()
124 int mtx_unlock(mtx_t *mtx) in mtx_unlock()
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/src/thread/
Dmtx_destroy.c3 void mtx_destroy(mtx_t *mtx) in mtx_destroy()
Dmtx_unlock.c4 int mtx_unlock(mtx_t *mtx) in mtx_unlock()
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_trylock/
Dstress.c124 pthread_mutex_t *mtx; member
217 pthread_mutex_t mtx[NSCENAR + 2]; in main() local
/third_party/FreeBSD/sys/sys/
Dmutex.h53 #define mtx pthread_mutex macro
57 mtx_init(pthread_mutex_t *mtx, const char *name, const char *type, int opts) in mtx_init()
/third_party/skia/third_party/externals/libwebp/src/dsp/
Denc_sse41.c202 const VP8Matrix* const mtx) { in DoQuantizeBlock_SSE41()
304 const VP8Matrix* const mtx) { in QuantizeBlock_SSE41()
309 const VP8Matrix* const mtx) { in QuantizeBlockWHT_SSE41()
314 const VP8Matrix* const mtx) { in Quantize2Blocks_SSE41()
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/
Denc_sse41.c202 const VP8Matrix* const mtx) { in DoQuantizeBlock_SSE41()
304 const VP8Matrix* const mtx) { in QuantizeBlock_SSE41()
309 const VP8Matrix* const mtx) { in QuantizeBlockWHT_SSE41()
314 const VP8Matrix* const mtx) { in Quantize2Blocks_SSE41()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_lock/
D4-1.c89 static pthread_mutex_t mtx; variable
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dcnd_wait.c20 mtx_t mtx; variable
Dcnd_signal.c19 mtx_t mtx; variable
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/
D4-1.c48 static pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; variable
/third_party/FreeBSD/sys/kern/
Dkern_condvar.c40 cv_timedwait(struct cv *cv, struct mtx *mtx, int tw_ms) in cv_timedwait()
Dkern_timeout.c53 callout_init_mtx(struct callout *c, struct pthread_mutex *mtx, int flag) in callout_init_mtx()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_once/
D1-3.c79 static pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; variable
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_init/
D5-1.c82 pthread_mutex_t mtx; in main() local
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMutex.h142 SmartMutex<mt_only>& mtx; variable
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
Ds-c.c102 pthread_mutex_t *mtx; member
185 static void do_measure(pthread_mutex_t * mtx, pthread_cond_t * cnd, clockid_t cid, in do_measure()
303 pthread_mutex_t mtx; in do_threads_test() local
/third_party/musl/libc-test/src/regression/
Dpthread-robust-detach.c28 pthread_mutex_t mtx; in f() local
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/
D1-2.c90 static pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; variable

12345