Searched refs:mdays (Results 1 – 5 of 5) sorted by relevance
/third_party/rust/crates/humantime/src/ |
D | duration.rs | 308 let mdays = ydays % 2_630_016; in fmt() localVariable 309 let days = mdays / 86400; in fmt() 310 let day_secs = mdays % 86400; in fmt()
|
D | date.rs | 136 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/ |
D | a_time.c | 80 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/ |
D | a_time.c | 80 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/ |
D | calendar.py | 43 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))
|