Lines Matching refs:now
2788 FILETIME now; in app_tminterval() local
2807 GetProcessTimes(proc, &junk, &junk, &junk, &now); in app_tminterval()
2820 SystemTimeToFileTime(&systime, &now); in app_tminterval()
2824 tmstart.u.LowPart = now.dwLowDateTime; in app_tminterval()
2825 tmstart.u.HighPart = now.dwHighDateTime; in app_tminterval()
2829 tmstop.u.LowPart = now.dwLowDateTime; in app_tminterval()
2830 tmstop.u.HighPart = now.dwHighDateTime; in app_tminterval()
2845 struct timespec now; in app_tminterval() local
2848 unsigned long now; in app_tminterval() local
2858 clock_gettime(CLOCK_REALTIME, &now); in app_tminterval()
2860 tmstart = now; in app_tminterval()
2862 ret = ((now.tv_sec + now.tv_nsec * 1e-9) in app_tminterval()
2865 now = tickGet(); in app_tminterval()
2867 tmstart = now; in app_tminterval()
2869 ret = (now - tmstart) / (double)sysClkRateGet(); in app_tminterval()
2881 clock_t now = times(&rus); in app_tminterval() local
2885 now = rus.tms_utime; in app_tminterval()
2888 tmstart = now; in app_tminterval()
2892 ret = (now - tmstart) / (double)tck; in app_tminterval()
2906 struct timeval now; in app_tminterval() local
2910 getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime; in app_tminterval()
2912 gettimeofday(&now, NULL); in app_tminterval()
2915 tmstart = now; in app_tminterval()
2917 ret = ((now.tv_sec + now.tv_usec * 1e-6) in app_tminterval()