Lines Matching refs:tm_p
3940 struct _umtx_time timeout, *tm_p; in __umtx_op_wait() local
3944 tm_p = NULL; in __umtx_op_wait()
3950 tm_p = &timeout; in __umtx_op_wait()
3952 return (do_wait(td, uap->obj, uap->val, tm_p, ops->compat32, 0)); in __umtx_op_wait()
3959 struct _umtx_time timeout, *tm_p; in __umtx_op_wait_uint() local
3963 tm_p = NULL; in __umtx_op_wait_uint()
3969 tm_p = &timeout; in __umtx_op_wait_uint()
3971 return (do_wait(td, uap->obj, uap->val, tm_p, 1, 0)); in __umtx_op_wait_uint()
3978 struct _umtx_time *tm_p, timeout; in __umtx_op_wait_uint_private() local
3982 tm_p = NULL; in __umtx_op_wait_uint_private()
3988 tm_p = &timeout; in __umtx_op_wait_uint_private()
3990 return (do_wait(td, uap->obj, uap->val, tm_p, 1, 1)); in __umtx_op_wait_uint_private()
4069 struct _umtx_time *tm_p, timeout; in __umtx_op_lock_umutex() local
4074 tm_p = NULL; in __umtx_op_lock_umutex()
4080 tm_p = &timeout; in __umtx_op_lock_umutex()
4082 return (do_lock_umutex(td, uap->obj, tm_p, 0)); in __umtx_op_lock_umutex()
4097 struct _umtx_time *tm_p, timeout; in __umtx_op_wait_umutex() local
4102 tm_p = NULL; in __umtx_op_wait_umutex()
4108 tm_p = &timeout; in __umtx_op_wait_umutex()
4110 return (do_lock_umutex(td, uap->obj, tm_p, _UMUTEX_WAIT)); in __umtx_op_wait_umutex()
4226 struct _umtx_time *tm_p, timeout; in __umtx_op_sem_wait() local
4231 tm_p = NULL; in __umtx_op_sem_wait()
4237 tm_p = &timeout; in __umtx_op_sem_wait()
4239 return (do_sem_wait(td, uap->obj, tm_p)); in __umtx_op_sem_wait()
4263 struct _umtx_time *tm_p, timeout; in __umtx_op_sem2_wait() local
4270 tm_p = NULL; in __umtx_op_sem2_wait()
4276 tm_p = &timeout; in __umtx_op_sem2_wait()
4278 error = do_sem2_wait(td, uap->obj, tm_p); in __umtx_op_sem2_wait()