Home
last modified time | relevance | path

Searched refs:isleap (Results 1 – 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/icu/source/tools/tzcode/
Dtzfile.h153 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
167 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
Dlocaltime.c840 leapyear = isleap(year); in transtime()
1022 yearsecs = (year_lengths[isleap(year)] in tzparse()
1457 while (tdays < 0 || tdays >= year_lengths[isleap(y)]) { in timesub()
1502 idays += year_lengths[isleap(y)]; in timesub()
1504 while (idays >= year_lengths[isleap(y)]) { in timesub()
1505 idays -= year_lengths[isleap(y)]; in timesub()
1533 ip = mon_lengths[isleap(y)]; in timesub()
1709 yourtm.tm_mday += year_lengths[isleap(li)]; in time2sub()
1713 yourtm.tm_mday -= year_lengths[isleap(li)]; in time2sub()
1718 i = mon_lengths[isleap(y)][yourtm.tm_mon]; in time2sub()
Dzdump.c143 #ifndef isleap
144 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
151 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
705 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR; in yeartot()
721 seconds = isleap(myy - 1) ? SECSPERLYEAR : SECSPERNYEAR; in yeartot()
Dzic.c1296 i = len_years[isleap(j)]; in inleap()
1300 i = -len_years[isleap(j)]; in inleap()
1311 i = len_months[isleap(year)][j]; in inleap()
1317 day <= 0 || day > len_months[isleap(year)][month]) { in inleap()
2996 i = len_years[isleap(y)]; in rpytime()
3000 i = -len_years[isleap(y)]; in rpytime()
3005 i = len_months[isleap(y)][m]; in rpytime()
3010 if (m == TM_FEBRUARY && i == 29 && !isleap(y)) { in rpytime()
3047 if (i < 0 || i >= len_months[isleap(y)][m]) { in rpytime()
/third_party/icu/icu4c/source/tools/tzcode/
Dtzfile.h153 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
167 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
Dlocaltime.c842 leapyear = isleap(year); in transtime()
1024 yearsecs = (year_lengths[isleap(year)] in tzparse()
1459 while (tdays < 0 || tdays >= year_lengths[isleap(y)]) { in timesub()
1504 idays += year_lengths[isleap(y)]; in timesub()
1506 while (idays >= year_lengths[isleap(y)]) { in timesub()
1507 idays -= year_lengths[isleap(y)]; in timesub()
1535 ip = mon_lengths[isleap(y)]; in timesub()
1711 yourtm.tm_mday += year_lengths[isleap(li)]; in time2sub()
1715 yourtm.tm_mday -= year_lengths[isleap(li)]; in time2sub()
1720 i = mon_lengths[isleap(y)][yourtm.tm_mon]; in time2sub()
Dzdump.c137 #ifndef isleap
138 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
145 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
699 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR; in yeartot()
715 seconds = isleap(myy - 1) ? SECSPERLYEAR : SECSPERNYEAR; in yeartot()
Dzic.c1297 i = len_years[isleap(j)]; in inleap()
1301 i = -len_years[isleap(j)]; in inleap()
1312 i = len_months[isleap(year)][j]; in inleap()
1318 day <= 0 || day > len_months[isleap(year)][month]) { in inleap()
2997 i = len_years[isleap(y)]; in rpytime()
3001 i = -len_years[isleap(y)]; in rpytime()
3006 i = len_months[isleap(y)][m]; in rpytime()
3011 if (m == TM_FEBRUARY && i == 29 && !isleap(y)) { in rpytime()
3048 if (i < 0 || i >= len_months[isleap(y)][m]) { in rpytime()
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
Dtzdst.h55 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
/third_party/python/Lib/test/
Dtest_calendar.py498 self.assertEqual(calendar.isleap(2000), 1)
499 self.assertEqual(calendar.isleap(2001), 0)
500 self.assertEqual(calendar.isleap(2002), 0)
501 self.assertEqual(calendar.isleap(2003), 0)
Ddatetimetester.py1151 for year, isleap in (2000, True), (2002, False):
1154 if month == 2 and isleap:
/third_party/tzdata/
Dlocaltime.c1035 leapyear = isleap(year); in transtime()
1216 = year_lengths[isleap(yearbeg - 1)] * SECSPERDAY; in tzparse()
1227 = year_lengths[isleap(yearbeg)] * SECSPERDAY; in tzparse()
1246 yearsecs = (year_lengths[isleap(year)] in tzparse()
1791 while (year_lengths[isleap(y)] <= idays) { in timesub()
1842 ip = mon_lengths[isleap(y)]; in timesub()
2028 yourtm.tm_mday += year_lengths[isleap(li)]; in time2sub()
2032 yourtm.tm_mday -= year_lengths[isleap(li)]; in time2sub()
2037 i = mon_lengths[isleap(y)][yourtm.tm_mon]; in time2sub()
Dprivate.h990 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
1004 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
Dzic.c2002 i = len_years[isleap(j)]; in getleapdatetime()
2006 i = -len_years[isleap(j)]; in getleapdatetime()
2017 i = len_months[isleap(year)][j]; in getleapdatetime()
2023 day <= 0 || day > len_months[isleap(year)][month]) { in getleapdatetime()
3794 i = len_years[isleap(y)]; in rpytime()
3799 i = len_months[isleap(y)][m]; in rpytime()
3804 if (m == TM_FEBRUARY && i == 29 && !isleap(y)) { in rpytime()
3832 if (i < 0 || i >= len_months[isleap(y)][m]) { in rpytime()
Dzdump.c699 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR; in yeartot()
715 seconds = isleap(myy - 1) ? SECSPERLYEAR : SECSPERNYEAR; in yeartot()
/third_party/python/Lib/
Dcalendar.py100 def isleap(year): function
126 ndays = mdays[month] + (month == February and isleap(year))
131 return mdays[month] + (month == February and isleap(year))
D_strptime.py526 yday = 366 if calendar.isleap(year) else 365
/third_party/python/Lib/zoneinfo/
D_zoneinfo.py534 if self.julian and d >= 59 and calendar.isleap(year):
584 + (month > 2 and calendar.isleap(year))
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/
Dtzdst.c368 if (targetMdayOfTargetWday > g_monLengths[(INT32)isleap(year + TM_YEAR_BASE)][month]) { in DstGetDayOfMonth()
/third_party/python/Doc/library/
Dcalendar.rst318 .. function:: isleap(year)