Home
last modified time | relevance | path

Searched refs:num_leap_year (Results 1 - 1 of 1) sorted by relevance

/third_party/nghttp2/src/
H A Dtimegm.c39 int num_leap_year; in nghttp2_timegm() local
44 num_leap_year = count_leap_year(tm->tm_year + 1900) - count_leap_year(1970); in nghttp2_timegm()
45 days = (tm->tm_year - 70) * 365 + num_leap_year + tm->tm_yday; in nghttp2_timegm()
68 int num_leap_year; in nghttp2_timegm_without_yday() local
73 num_leap_year = count_leap_year(tm->tm_year + 1900) - count_leap_year(1970); in nghttp2_timegm_without_yday()
74 days = (tm->tm_year - 70) * 365 + num_leap_year + daysum[tm->tm_mon] + in nghttp2_timegm_without_yday()

Completed in 2 milliseconds