Searched refs:now (Results 1 – 18 of 18) sorted by relevance
/sysdeps/mach/htl/ |
A D | pt-timedblock.c | 41 struct timespec now; in __pthread_timedblock() local 46 err = __clock_gettime (clock_id, &now); in __pthread_timedblock() 49 if (now.tv_sec > abstime->tv_sec in __pthread_timedblock() 50 || (now.tv_sec == abstime->tv_sec && now.tv_nsec > abstime->tv_nsec)) in __pthread_timedblock() 53 timeout = (abstime->tv_sec - now.tv_sec) * 1000; in __pthread_timedblock() 55 if (abstime->tv_nsec >= now.tv_nsec) in __pthread_timedblock() 56 timeout += (abstime->tv_nsec - now.tv_nsec + 999999) / 1000000; in __pthread_timedblock() 59 timeout -= (now.tv_nsec - abstime->tv_nsec + 999999) / 1000000; in __pthread_timedblock()
|
/sysdeps/mach/ |
A D | clock_nanosleep.c | 75 struct timespec now; in __clock_nanosleep() local 84 assert (sizeof (sec) >= sizeof (now.tv_sec)); in __clock_nanosleep() 87 if (__clock_gettime (clock_id, &now) != 0) in __clock_nanosleep() 91 nsec = req->tv_nsec - now.tv_nsec; in __clock_nanosleep() 92 sec = req->tv_sec - now.tv_sec - (nsec < 0); in __clock_nanosleep() 97 now.tv_sec = sec; in __clock_nanosleep() 98 now.tv_nsec = nsec + (nsec < 0 ? 1000000000 : 0); in __clock_nanosleep() 101 req = &now; in __clock_nanosleep()
|
/sysdeps/mach/hurd/ |
A D | times.c | 45 time_value_t now; in __times() local 68 __host_get_time (__mach_host_self (), &now); in __times() 70 return (clock_from_time_value (&now) in __times()
|
A D | setitimer.c | 163 struct timeval now, remaining, elapsed; in setitimer_locked() local 251 now.tv_sec = tv.seconds; in setitimer_locked() 252 now.tv_usec = tv.microseconds; in setitimer_locked() 254 elapsed = now; in setitimer_locked() 272 _hurd_itimer_started = now; in setitimer_locked()
|
/sysdeps/htl/ |
A D | timer_routines.c | 372 struct timespec now; in thread_func() local 378 __clock_gettime (timer->clock, &now); in thread_func() 385 if (timespec_compare (&now, &timer->expirytime) < 0) in thread_func() 396 while (timespec_compare (&timer->expirytime, &now) < 0) in thread_func()
|
/sysdeps/arm/ |
A D | dl-trampoline.S | 95 @ For now, we only save the general purpose registers. 135 @ The address to call is now in r0.
|
A D | Makefile | 25 LDFLAGS-tst-armtlsdescextnowmod.so += -Wl,-z,now
|
A D | configure.ac | 42 @ And now a case with a local symbol.
|
A D | configure | 196 @ And now a case with a local symbol.
|
/sysdeps/alpha/ |
A D | strncpy.S | 37 mov a0, v0 # set return value now
|
A D | strcmp.S | 114 or t1, t4, t1 # e0 : s2 word now complete
|
A D | strncmp.S | 166 or t1, t4, t1 # s2 word now complete
|
A D | stxcpy.S | 186 or t0, t1, t1 # e0 : current dst word now complete
|
A D | stxncpy.S | 214 or t0, t1, t0 # e0 : current dst word now complete
|
/sysdeps/arm/armv6t2/ |
A D | memchr.S | 127 60: @ We're here because the fast path found a hit - now we have to track down exactly which word …
|
/sysdeps/powerpc/powerpc64/le/ |
A D | configure | 165 # Found it, now check the version.
|
/sysdeps/alpha/alphaev6/ |
A D | stxcpy.S | 200 or t0, t1, t1 # E : current dst word now complete
|
A D | stxncpy.S | 245 or t0, t1, t0 # E : current dst word now complete
|
Completed in 14 milliseconds