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

/freebsd-12-stable/usr.sbin/rtadvd/
H A Dtimer.c58 static struct timespec tm_max; variable in typeref:struct:timespec
64 tm_limit.tv_sec = (-1) & ~((time_t)1 << ((sizeof(tm_max.tv_sec) * 8) - 1));
65 tm_limit.tv_nsec = (-1) & ~((long)1 << ((sizeof(tm_max.tv_nsec) * 8) - 1));
66 tm_max = tm_limit;
132 rat->rat_tm = tm_max;
164 tm_max = tm_limit;
173 if (TS_CMP(&rat->rat_tm, &tm_max, <))
174 tm_max = rat->rat_tm;
176 if (TS_CMP(&tm_max, &tm_limit, ==)) {
179 } else if (TS_CMP(&tm_max,
[all...]
/freebsd-12-stable/usr.sbin/rtsold/
H A Drtsold.c74 struct timespec tm_max; variable in typeref:struct:timespec
186 tm_max.tv_sec = (-1) & ~((time_t)1 << ((sizeof(tm_max.tv_sec) * 8) - 1));
187 tm_max.tv_nsec = (-1) & ~((long)1 << ((sizeof(tm_max.tv_nsec) * 8) - 1));
554 rtsol_timer = tm_max;
679 if (TS_CMP(&rtsol_timer, &tm_max, ==)) {
720 ifi->timer = tm_max; /* stop timer(valid?) */
748 if (TS_CMP(&ifi->timer, &tm_max, ==)) {
749 ifi->expire = tm_max;
[all...]
H A Ddump.c96 if (ifi->timer.tv_sec == tm_max.tv_sec &&
97 ifi->timer.tv_nsec == tm_max.tv_nsec)
H A Drtsold.h156 extern struct timespec tm_max;

Completed in 185 milliseconds