Searched refs:idays (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/tzcode/stdtime/
H A Dlocaltime.c1594 int idays; /* unsigned would be so 2003 */ local
1664 idays = tdays;
1668 --idays;
1672 ++idays;
1674 while (idays < 0) {
1677 idays += year_lengths[isleap(y)];
1679 while (idays >= year_lengths[isleap(y)]) {
1680 idays -= year_lengths[isleap(y)];
1687 tmp->tm_yday = idays;
1696 idays;
[all...]
/freebsd-13-stable/contrib/unbound/sldns/
H A Dparseutil.c122 int idays = result->tm_yday; local
127 while (idays >= mon_lengths[result->tm_mon]) {
128 idays -= mon_lengths[result->tm_mon++];
130 result->tm_mday = idays + 1;
/freebsd-13-stable/contrib/ldns/
H A Dutil.c250 int idays = result->tm_yday; local
255 while (idays >= mon_lengths[result->tm_mon]) {
256 idays -= mon_lengths[result->tm_mon++];
258 result->tm_mday = idays + 1;

Completed in 70 milliseconds