Lines Matching defs:day
43 * transition. The timecode includes both the day of year and time of
44 * day. The GC-1001 II has a true bipolar output and a complement of
46 * day.
79 * dd/mm/yr = day, month, year
84 * then lost again for about a day.
278 int month, day;
304 &pp->minute, &pp->second, &dsec, a, &month, &day,
332 day = tm_time_p->tm_mday;
347 * We determine the day of the year from the DIPswitches. This
353 * months of that year, add one to the day. Then, correct the
358 if (month < 1 || month > 12 || day < 1) {
363 if (day > day1tab[month - 1]) {
368 day += day1tab[i];
370 if (day > day2tab[month - 1]) {
375 day += day2tab[i];
377 pp->day = day;