Lines Matching defs:t2
234 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2) {
235 REQUIRE(t1 != NULL && t2 != NULL);
236 INSIST(t1->nanoseconds < NS_PER_S && t2->nanoseconds < NS_PER_S);
238 if (t1->seconds < t2->seconds)
240 if (t1->seconds > t2->seconds)
242 if (t1->nanoseconds < t2->nanoseconds)
244 if (t1->nanoseconds > t2->nanoseconds)
300 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2) {
303 REQUIRE(t1 != NULL && t2 != NULL);
304 INSIST(t1->nanoseconds < NS_PER_S && t2->nanoseconds < NS_PER_S);
307 i2 = (isc_uint64_t)t2->seconds * NS_PER_S + t2->nanoseconds;