/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
D | tzfile.h | 153 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro 167 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
|
D | localtime.c | 840 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()
|
D | zdump.c | 143 #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()
|
D | zic.c | 1296 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/ |
D | tzfile.h | 153 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro 167 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
|
D | localtime.c | 842 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()
|
D | zdump.c | 137 #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()
|
D | zic.c | 1297 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/ |
D | tzdst.h | 55 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
|
/third_party/python/Lib/test/ |
D | test_calendar.py | 498 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)
|
D | datetimetester.py | 1151 for year, isleap in (2000, True), (2002, False): 1154 if month == 2 and isleap:
|
/third_party/tzdata/ |
D | localtime.c | 1035 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()
|
D | private.h | 990 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro 1004 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
|
D | zic.c | 2002 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()
|
D | zdump.c | 699 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR; in yeartot() 715 seconds = isleap(myy - 1) ? SECSPERLYEAR : SECSPERNYEAR; in yeartot()
|
/third_party/python/Lib/ |
D | calendar.py | 100 def isleap(year): function 126 ndays = mdays[month] + (month == February and isleap(year)) 131 return mdays[month] + (month == February and isleap(year))
|
D | _strptime.py | 526 yday = 366 if calendar.isleap(year) else 365
|
/third_party/python/Lib/zoneinfo/ |
D | _zoneinfo.py | 534 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/ |
D | tzdst.c | 368 if (targetMdayOfTargetWday > g_monLengths[(INT32)isleap(year + TM_YEAR_BASE)][month]) { in DstGetDayOfMonth()
|
/third_party/python/Doc/library/ |
D | calendar.rst | 318 .. function:: isleap(year)
|