Lines Matching defs:t1
239 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2) {
240 REQUIRE(t1 != NULL && t2 != NULL);
241 INSIST(t1->nanoseconds < NS_PER_S && t2->nanoseconds < NS_PER_S);
243 if (t1->seconds < t2->seconds)
245 if (t1->seconds > t2->seconds)
247 if (t1->nanoseconds < t2->nanoseconds)
249 if (t1->nanoseconds > t2->nanoseconds)
305 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2) {
308 REQUIRE(t1 != NULL && t2 != NULL);
309 INSIST(t1->nanoseconds < NS_PER_S && t2->nanoseconds < NS_PER_S);
311 i1 = (isc_uint64_t)t1->seconds * NS_PER_S + t1->nanoseconds;