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

/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/global/
H A Dlog_adhoc.c82 int dt_usec; /* make sure it's signed */ member in struct:__anon2409
145 (x).dt_usec = (y).tv_usec - (z).tv_usec; \
146 while ((x).dt_usec < 0) { \
147 (x).dt_usec += 1000000; \
150 while ((x).dt_usec >= 1000000) { \
151 (x).dt_usec -= 1000000; \
155 (x).dt_sec = (x).dt_usec = 0; \
158 #define DELTA_ZERO(x) ((x).dt_sec = (x).dt_usec = 0)
200 format_tv((b), (x).dt_sec, (x).dt_usec, SIG_DIGS, var_delay_max_res); \
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/postscreen/
H A Dpostscreen.h214 int dt_usec; /* make sure it's signed */ member in struct:__anon2459
220 (x).dt_usec = (y).tv_usec - (z).tv_usec; \
221 while ((x).dt_usec < 0) { \
222 (x).dt_usec += 1000000; \
225 while ((x).dt_usec >= 1000000) { \
226 (x).dt_usec -= 1000000; \
230 (x).dt_sec = (x).dt_usec = 0; \
H A Dpostscreen_dict.c87 #define PSC_DELTA_MS(d) ((d).dt_sec * 1000.0 + (d).dt_usec / 1000.0)
H A Dpostscreen_misc.c80 format_tv(buf, pdelay.dt_sec, pdelay.dt_usec, SIG_DIGS, var_delay_max_res);

Completed in 57 milliseconds