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

/freebsd-10.0-release/usr.sbin/rtadvd/
H A Dtimer.c56 static struct timespec tm_max; variable in typeref:struct:timespec
62 tm_limit.tv_sec = (-1) & ~((time_t)1 << ((sizeof(tm_max.tv_sec) * 8) - 1));
63 tm_limit.tv_nsec = (-1) & ~((long)1 << ((sizeof(tm_max.tv_nsec) * 8) - 1));
64 tm_max = tm_limit;
130 rat->rat_tm = tm_max;
162 tm_max = tm_limit;
171 if (TS_CMP(&rat->rat_tm, &tm_max, <))
172 tm_max = rat->rat_tm;
174 if (TS_CMP(&tm_max, &tm_limit, ==)) {
177 } else if (TS_CMP(&tm_max,
[all...]
/freebsd-10.0-release/usr.sbin/rtsold/
H A Drtsold.c70 struct timespec tm_max; variable in typeref:struct:timespec
190 tm_max.tv_sec = (-1) & ~((time_t)1 << ((sizeof(tm_max.tv_sec) * 8) - 1));
191 tm_max.tv_nsec = (-1) & ~((long)1 << ((sizeof(tm_max.tv_nsec) * 8) - 1));
621 rtsol_timer = tm_max;
738 if (TS_CMP(&rtsol_timer, &tm_max, ==)) {
780 ifi->timer = tm_max; /* stop timer(valid?) */
813 if (TS_CMP(&ifi->timer, &tm_max, ==)) {
814 ifi->expire = tm_max;
[all...]
H A Ddump.c86 if (ifi->timer.tv_sec == tm_max.tv_sec &&
87 ifi->timer.tv_nsec == tm_max.tv_nsec)
H A Drtsold.h151 extern struct timespec tm_max;

Completed in 103 milliseconds