Searched defs:isleap (Results 1 – 13 of 13) sorted by relevance
33 #define isleap(_y) (((_y) % 4) == 0 && (((_y) % 100) != 0 || ((_y) % 400) == 0)) in getsecs() macro
37 #define isleap(_y) (((_y) % 4) == 0 && (((_y) % 100) != 0 || ((_y) % 400) == 0)) in getsecs_rtc() macro
83 #define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) in ns_datetosecs() macro
60 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
86 #define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) in ns_datetosecs() macro
33 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
47 #define isleap(y) ((((y) % 4) == 0) && \ macro
64 isleap(y) in isleap() function
163 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
303 #define isleap(yr) (((yr) & 3) == 0 && (((yr) % 100) != 0 || \ in ATF_TC_BODY() macro
693 int isleap; in strptime_l() local
1050 #define isleap( global() macro