Searched defs:days_per_year (Results 1 – 5 of 5) sorted by relevance
333 #define days_per_year(x) ((x) % 4 ? 365 : ((x % 400) ? ((x % 100) ? 366 : 365) : 366)) in main() macro
518 days_per_year( in days_per_year() function
397 #define days_per_year(x) ((x) % 4 ? 365 : ((x % 400) ? ((x % 100) ? 366 : 365) : 366)) macro
222 days_per_year(int year) in days_per_year() function
86 #define days_per_year(_x_) (((_x_) % 4) ? 365 : (((_x_) % 400) ? 365 : 366)) macro