Home
last modified time | relevance | path

Searched defs:days_per_year (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/ntp/ntpd/
H A Dcheck_y2k.c333 #define days_per_year(x) ((x) % 4 ? 365 : ((x % 400) ? ((x % 100) ? 366 : 365) : 366)) in main() macro
H A Drefclock_leitch.c518 days_per_year( in days_per_year() function
/freebsd/contrib/ntp/libparse/
H A Dparse.c397 #define days_per_year(x) ((x) % 4 ? 365 : ((x % 400) ? ((x % 100) ? 366 : 365) : 366)) macro
/freebsd/contrib/dialog/
H A Dcalendar.c222 days_per_year(int year) in days_per_year() function
/freebsd/contrib/ntp/parseutil/
H A Ddcfd.c86 #define days_per_year(_x_) (((_x_) % 4) ? 365 : (((_x_) % 400) ? 365 : 366)) macro