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

/haiku/src/add-ons/kernel/file_systems/fat/
H A Dutil.cpp84 #define IS_LEAP_YEAR(y) ((((y) % 4) == 0) && (((y) % 100) || ((((y)) % 400) == 0))) macro
92 if (IS_LEAP_YEAR(yr + 1970))
131 days = IS_LEAP_YEAR(1980+y) ? 366 : 365;
136 if (IS_LEAP_YEAR(1980+y)) {
/haiku/src/add-ons/kernel/file_systems/exfat/
H A DInode.cpp207 #define IS_LEAP_YEAR(y) ((((y) % 4) == 0) && (((y) % 100) || ((((y)) % 400) == 0))) macro
215 if (IS_LEAP_YEAR(yr + 1970))

Completed in 80 milliseconds