Searched refs:t2 (Results 1 – 1 of 1) sorted by relevance
176 TimeDiffUs(struct timeval *t2, struct timeval *t1) in TimeDiffUs() argument178 return (t2->tv_sec - t1->tv_sec) * 1000000 + in TimeDiffUs()179 (int64_t)(t2->tv_usec - t1->tv_usec); in TimeDiffUs()