Lines Matching defs:mm
184 int mm;
233 mm = current_date->tm_mon + 1; /* tm_mon goes from 1 to 11 */
254 mm = atoi(&date[0]);
262 if (mm >= 1 && mm <= 12) {
263 dd_check = month_size[mm - 1]; /* get days in this month */
264 if (mm == 2 && isleap(yy)) /* adjust for leap year */
267 if (!((mm >= 1 && mm <= 12) && (dd >= 1 && dd <= dd_check) &&
277 if (isleap(yy) && mm >= 3)
280 while (--mm)
281 clock_val += (time_t)month_size[mm - 1];