Searched refs:tm_max (Results 1 - 4 of 4) sorted by relevance

/freebsd-current/usr.sbin/rtadvd/
H A Dtimer.c57 static struct timespec tm_max; variable in typeref:struct:timespec
63 tm_limit.tv_sec = (-1) & ~((time_t)1 << ((sizeof(tm_max.tv_sec) * 8) - 1));
64 tm_limit.tv_nsec = (-1) & ~((long)1 << ((sizeof(tm_max.tv_nsec) * 8) - 1));
65 tm_max = tm_limit;
129 rat->rat_tm = tm_max;
161 tm_max = tm_limit;
170 if (TS_CMP(&rat->rat_tm, &tm_max, <))
171 tm_max = rat->rat_tm;
173 if (TS_CMP(&tm_max, &tm_limit, ==)) {
176 } else if (TS_CMP(&tm_max,
[all...]
/freebsd-current/usr.sbin/rtsold/
H A Drtsold.c72 struct timespec tm_max; variable in typeref:struct:timespec
192 tm_max.tv_sec = (-1) & ~((time_t)1 << ((sizeof(tm_max.tv_sec) * 8) - 1));
193 tm_max.tv_nsec = (-1) & ~((long)1 << ((sizeof(tm_max.tv_nsec) * 8) - 1));
561 rtsol_timer = tm_max;
687 if (TS_CMP(&rtsol_timer, &tm_max, ==)) {
728 ifi->timer = tm_max; /* stop timer(valid?) */
759 if (TS_CMP(&ifi->timer, &tm_max, ==)) {
760 ifi->expire = tm_max;
[all...]
H A Ddump.c94 if (ifi->timer.tv_sec == tm_max.tv_sec &&
95 ifi->timer.tv_nsec == tm_max.tv_nsec)
H A Drtsold.h155 extern struct timespec tm_max;

Completed in 112 milliseconds