Lines Matching refs:now
2636 FILETIME now; in app_tminterval() local
2653 GetProcessTimes(proc, &junk, &junk, &junk, &now); in app_tminterval()
2665 SystemTimeToFileTime(&systime, &now); in app_tminterval()
2669 tmstart.u.LowPart = now.dwLowDateTime; in app_tminterval()
2670 tmstart.u.HighPart = now.dwHighDateTime; in app_tminterval()
2674 tmstop.u.LowPart = now.dwLowDateTime; in app_tminterval()
2675 tmstop.u.HighPart = now.dwHighDateTime; in app_tminterval()
2690 struct timespec now; in app_tminterval() local
2693 unsigned long now; in app_tminterval() local
2703 clock_gettime(CLOCK_REALTIME, &now); in app_tminterval()
2705 tmstart = now; in app_tminterval()
2707 ret = ((now.tv_sec + now.tv_nsec * 1e-9) in app_tminterval()
2710 now = tickGet(); in app_tminterval()
2712 tmstart = now; in app_tminterval()
2714 ret = (now - tmstart) / (double)sysClkRateGet(); in app_tminterval()
2726 clock_t now = times(&rus); in app_tminterval() local
2730 now = rus.tms_utime; in app_tminterval()
2733 tmstart = now; in app_tminterval()
2736 ret = (now - tmstart) / (double)tck; in app_tminterval()
2750 struct timeval now; in app_tminterval() local
2754 getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime; in app_tminterval()
2756 gettimeofday(&now, NULL); in app_tminterval()
2759 tmstart = now; in app_tminterval()
2761 ret = ((now.tv_sec + now.tv_usec * 1e-6) in app_tminterval()