Lines Matching refs:r
31 int r; in __clock_gettime64() local
42 r = INTERNAL_VSYSCALL_CALL (vdso_time64, 2, clock_id, tp); in __clock_gettime64()
43 if (r == 0) in __clock_gettime64()
45 return INLINE_SYSCALL_ERROR_RETURN_VALUE (-r); in __clock_gettime64()
55 r = INTERNAL_VSYSCALL_CALL (vdso_time, 2, clock_id, &tp32); in __clock_gettime64()
56 if (r == 0 && tp32.tv_sec >= 0) in __clock_gettime64()
61 else if (r != 0) in __clock_gettime64()
62 return INLINE_SYSCALL_ERROR_RETURN_VALUE (-r); in __clock_gettime64()
68 r = INTERNAL_SYSCALL_CALL (clock_gettime64, clock_id, tp); in __clock_gettime64()
69 if (r == 0) in __clock_gettime64()
71 if (r != -ENOSYS) in __clock_gettime64()
72 return INLINE_SYSCALL_ERROR_RETURN_VALUE (-r); in __clock_gettime64()
77 r = INTERNAL_SYSCALL_CALL (clock_gettime, clock_id, &tp32); in __clock_gettime64()
78 if (r == 0) in __clock_gettime64()
85 return INLINE_SYSCALL_ERROR_RETURN_VALUE (-r); in __clock_gettime64()