Home
last modified time | relevance | path

Searched refs:tm_month (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/third_party/nspr/
Dprtime.cc229 time->tm_month--; in ApplySecOffset()
230 if (time->tm_month < 0) { in ApplySecOffset()
231 time->tm_month = 11; in ApplySecOffset()
238 time->tm_mday = nDays[IsLeapYear(time->tm_year)][time->tm_month]; in ApplySecOffset()
249 nDays[IsLeapYear(time->tm_year)][time->tm_month]) { in ApplySecOffset()
251 time->tm_month++; in ApplySecOffset()
252 if (time->tm_month > 11) { in ApplySecOffset()
253 time->tm_month = 0; in ApplySecOffset()
316 if (time->tm_month < 0 || time->tm_month >= 12) { in PR_NormalizeTime()
317 time->tm_year += static_cast<PRInt16>(time->tm_month / 12); in PR_NormalizeTime()
[all …]
Dprtime.h155 PRInt32 tm_month; /* months past tm_year (0-11, Jan = 0) */ member
/external/libchrome/crypto/
Dnss_util_unittest.cc24 prxtime.tm_month = 11; in TEST()