Lines Matching defs:t0
23 void pdeltat(struct timeval *t1, struct timeval *t0);
24 void tvadd(struct timeval *tsum, struct timeval *t0);
25 void tvsub(struct timeval *tdiff, struct timeval *t1, struct timeval *t0);
222 pdeltat(struct timeval *t1, struct timeval *t0)
229 tvsub(&td, t1, t0);
235 tvadd(struct timeval *tsum, struct timeval *t0)
241 tsum->tv_sec += t0->tv_sec;
242 tsum->tv_usec += t0->tv_usec;
250 tvsub(struct timeval *tdiff, struct timeval *t1, struct timeval *t0)
256 tdiff->tv_sec = t1->tv_sec - t0->tv_sec;
257 tdiff->tv_usec = t1->tv_usec - t0->tv_usec;