Lines Matching defs:now
125 struct timeval now, tv;
127 (void) gettimeofday(&now, NULL);
129 absolute_deflate(&now, &tv);
140 rt->tv_sec -= now.tv_sec;
141 rt->tv_usec -= now.tv_usec;
151 struct timeval now, tv;
159 (void) gettimeofday(&now, NULL);
161 tv.tv_sec = now.tv_sec + rt->tv_sec;
162 tv.tv_usec = now.tv_usec + rt->tv_usec;
168 absolute_deflate(&now, &now);
171 vt->tv_sec -= now.tv_sec;
172 vt->tv_usec -= now.tv_usec;
187 struct timeval now;
195 ret = syscall(SYS_gettimeofday, &now, tz);
197 absolute_inflate(&now, tv);