Lines Matching refs:now
40 struct timeval now; in tvnow() local
44 now.tv_sec = (long)(count.QuadPart / tool_freq.QuadPart); in tvnow()
45 now.tv_usec = (long)((count.QuadPart % tool_freq.QuadPart) * 1000000 / in tvnow()
59 now.tv_sec = (long)(milliseconds / 1000); in tvnow()
60 now.tv_usec = (long)((milliseconds % 1000) * 1000); in tvnow()
62 return now; in tvnow()
76 struct timeval now; in tvnow() local
79 now.tv_sec = tsnow.tv_sec; in tvnow()
80 now.tv_usec = (int)(tsnow.tv_nsec / 1000); in tvnow()
89 (void)gettimeofday(&now, NULL); in tvnow()
92 now.tv_sec = time(NULL); in tvnow()
93 now.tv_usec = 0; in tvnow()
96 return now; in tvnow()
108 struct timeval now; in tvnow() local
109 (void)gettimeofday(&now, NULL); in tvnow()
110 return now; in tvnow()
120 struct timeval now; in tvnow() local
121 now.tv_sec = time(NULL); in tvnow()
122 now.tv_usec = 0; in tvnow()
123 return now; in tvnow()