Lines Matching refs:abstime

29                                 const struct __timespec64* abstime,  in __futex_abstimed_wait_common32()  argument
33 if (abstime != NULL) in __futex_abstimed_wait_common32()
35 ts32 = valid_timespec64_to_timespec (*abstime); in __futex_abstimed_wait_common32()
53 const struct __timespec64* abstime, in __futex_abstimed_wait_common64() argument
58 abstime, NULL /* Unused. */, in __futex_abstimed_wait_common64()
62 abstime, NULL /* Ununsed. */, in __futex_abstimed_wait_common64()
69 const struct __timespec64* abstime, in __futex_abstimed_wait_common() argument
77 if (__glibc_unlikely ((abstime != NULL) && (abstime->tv_sec < 0))) in __futex_abstimed_wait_common()
87 err = __futex_abstimed_wait_common64 (futex_word, expected, op, abstime, in __futex_abstimed_wait_common()
90 bool need_time64 = abstime != NULL && !in_time_t_range (abstime->tv_sec); in __futex_abstimed_wait_common()
93 err = __futex_abstimed_wait_common64 (futex_word, expected, op, abstime, in __futex_abstimed_wait_common()
99 err = __futex_abstimed_wait_common32 (futex_word, expected, op, abstime, in __futex_abstimed_wait_common()
126 const struct __timespec64* abstime, int private) in __futex_abstimed_wait64() argument
129 abstime, private, false); in __futex_abstimed_wait64()
136 const struct __timespec64* abstime, in libc_hidden_def()
140 abstime, private, true); in libc_hidden_def()
146 const struct __timespec64 *abstime, int private) in libc_hidden_def()
155 err = INTERNAL_SYSCALL_CALL (futex_time64, futex_word, op_pi2, 0, abstime); in libc_hidden_def()
160 int op_pi = abstime != NULL && clockid != CLOCK_REALTIME ? op_pi2 : op_pi1; in libc_hidden_def()
163 err = INTERNAL_SYSCALL_CALL (futex_time64, futex_word, op_pi, 0, abstime); in libc_hidden_def()
165 bool need_time64 = abstime != NULL && !in_time_t_range (abstime->tv_sec); in libc_hidden_def()
167 err = INTERNAL_SYSCALL_CALL (futex_time64, futex_word, op_pi, 0, abstime); in libc_hidden_def()
171 if (abstime != NULL) in libc_hidden_def()
173 ts32 = valid_timespec64_to_timespec (*abstime); in libc_hidden_def()