• Home
  • Raw
  • Download

Lines Matching refs:tm_month

108     st.wMonth = exploded->tm_month + 1;  in PR_ImplodeTime()
135 gregorian_date.month = exploded->tm_month + 1; in PR_ImplodeTime()
159 exp_tm.tm_mon = exploded->tm_month; in PR_ImplodeTime()
167 !(exploded->tm_year == 1969 && exploded->tm_month == 11 && in PR_ImplodeTime()
286 time->tm_month--; in ApplySecOffset()
287 if (time->tm_month < 0) { in ApplySecOffset()
288 time->tm_month = 11; in ApplySecOffset()
295 time->tm_mday = nDays[IsLeapYear(time->tm_year)][time->tm_month]; in ApplySecOffset()
306 nDays[IsLeapYear(time->tm_year)][time->tm_month]) { in ApplySecOffset()
308 time->tm_month++; in ApplySecOffset()
309 if (time->tm_month > 11) { in ApplySecOffset()
310 time->tm_month = 0; in ApplySecOffset()
373 if (time->tm_month < 0 || time->tm_month >= 12) { in PR_NormalizeTime()
374 time->tm_year += time->tm_month / 12; in PR_NormalizeTime()
375 time->tm_month %= 12; in PR_NormalizeTime()
376 if (time->tm_month < 0) { in PR_NormalizeTime()
377 time->tm_month += 12; in PR_NormalizeTime()
388 time->tm_month--; in PR_NormalizeTime()
389 if (time->tm_month < 0) { in PR_NormalizeTime()
390 time->tm_month = 11; in PR_NormalizeTime()
393 time->tm_mday += nDays[IsLeapYear(time->tm_year)][time->tm_month]; in PR_NormalizeTime()
396 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month]; in PR_NormalizeTime()
400 time->tm_month++; in PR_NormalizeTime()
401 if (time->tm_month > 11) { in PR_NormalizeTime()
402 time->tm_month = 0; in PR_NormalizeTime()
405 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month]; in PR_NormalizeTime()
411 lastDayOfMonth[IsLeapYear(time->tm_year)][time->tm_month]; in PR_NormalizeTime()
1092 result->tm_month = (((int)month) - ((int)TT_JAN)); in PR_ParseTimeString()
1118 PR_ASSERT(result->tm_month > -1 && in PR_ParseTimeString()
1145 localTime.tm_mon = result->tm_month; in PR_ParseTimeString()