Lines Matching defs:t1
285 add_to_timeval(struct timeval *t1, int t2)
289 oldval.tv_sec = t1->tv_sec;
292 t1->tv_sec += t2;
295 if (!(t1->tv_sec >= oldval.tv_sec)) {
315 * OUTPUTS: TRUE t1 > t2
316 * FALSE t1 <= t2
320 is_greater_timeval(struct timeval *t1, struct timeval *t2)
322 if (t1->tv_sec > t2->tv_sec)
325 if (t1->tv_sec == t2->tv_sec) {
326 if (t1->tv_usec > t2->tv_usec)