Searched refs:secs (Results 1 - 2 of 2) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/
H A Dtime.c44 int secs; local
60 secs = year_secs(tm.tm_year + 1900);
61 t += secs;
63 while ((secs = year_secs(tm.tm_year + 1900)) <= t) {
64 t -= secs;
70 while ((secs = month_secs(tm.tm_mon, tm.tm_year + 1900)) <= t) {
71 t -= secs;
137 int secs; local
179 secs = (is_leap(i) ? 366 : 365) * 86400;
180 value -= secs;
[all...]
H A Dttl.c82 unsigned secs, mins, hours, days, weeks, x; local
84 secs = src % 60; src /= 60;
108 if (secs != 0 ||
110 RETERR(ttlfmt(secs, "second", verbose, ISC_TF(x > 0), target));

Completed in 2771 milliseconds