Home
last modified time | relevance | path

Searched defs:isleap (Results 1 – 6 of 6) sorted by relevance

/external/u-boot/drivers/rtc/
Dmcfrtc.c22 #define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) macro
/external/u-boot/include/linux/
Dtime.h24 #define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) macro
/external/icu/icu4c/source/tools/tzcode/
Dtzfile.h153 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
Dzdump.c144 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
/external/python/cpython2/Lib/
Dcalendar.py97 def isleap(year): function
/external/python/cpython3/Lib/
Dcalendar.py100 def isleap(year): function