Lines Matching refs:now
37 proftime_T now; in profile_end() local
40 QueryPerformanceCounter(&now); in profile_end()
41 tm->QuadPart = now.QuadPart - tm->QuadPart; in profile_end()
43 gettimeofday(&now, NULL); in profile_end()
44 tm->tv_usec = now.tv_usec - tm->tv_usec; in profile_end()
45 tm->tv_sec = now.tv_sec - tm->tv_sec; in profile_end()
144 proftime_T now; in profile_passed_limit() local
149 QueryPerformanceCounter(&now); in profile_passed_limit()
150 return (now.QuadPart > tm->QuadPart); in profile_passed_limit()
154 gettimeofday(&now, NULL); in profile_passed_limit()
155 return (now.tv_sec > tm->tv_sec in profile_passed_limit()
156 || (now.tv_sec == tm->tv_sec && now.tv_usec > tm->tv_usec)); in profile_passed_limit()