Home
last modified time | relevance | path

Searched refs:mdays (Results 1 – 5 of 5) sorted by relevance

/third_party/rust/crates/humantime/src/
Dduration.rs308 let mdays = ydays % 2_630_016; in fmt() localVariable
309 let days = mdays / 86400; in fmt()
310 let day_secs = mdays % 86400; in fmt()
Ddate.rs136 let (mut ydays, mdays) = match month { in parse_rfc3339_weak()
152 if day > mdays || day == 0 { in parse_rfc3339_weak()
/third_party/node/deps/openssl/openssl/crypto/asn1/
Da_time.c80 static const int mdays[12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; in ossl_asn1_time_to_tm() local
169 md = mdays[1] + leap_year(tmp.tm_year + 1900); in ossl_asn1_time_to_tm()
171 md = mdays[tmp.tm_mon]; in ossl_asn1_time_to_tm()
/third_party/openssl/crypto/asn1/
Da_time.c80 static const int mdays[12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; in ossl_asn1_time_to_tm() local
169 md = mdays[1] + leap_year(tmp.tm_year + 1900); in ossl_asn1_time_to_tm()
171 md = mdays[tmp.tm_mon]; in ossl_asn1_time_to_tm()
/third_party/python/Lib/
Dcalendar.py43 mdays = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] variable
126 ndays = mdays[month] + (month == February and isleap(year))
131 return mdays[month] + (month == February and isleap(year))