Lines Matching defs:todintersil
29 volatile struct intersil_dt *todintersil;
32 todintersil = (struct intersil_dt *) &intersil_clock->counter;
40 todintersil->csec = 0;
41 todintersil->hour = t->tm_hour;
42 todintersil->minute = t->tm_min;
43 todintersil->second = t->tm_sec;
44 todintersil->month = t->tm_mon + 1;
45 todintersil->day = t->tm_mday;
46 todintersil->year = (t->tm_year - 68) % 100;
47 todintersil->weekday = t->tm_wday;
50 t->tm_sec = todintersil->csec;
51 t->tm_hour = todintersil->hour;
52 t->tm_min = todintersil->minute;
53 t->tm_sec = todintersil->second;
54 t->tm_mon = todintersil->month - 1;
55 t->tm_mday = todintersil->day;
56 t->tm_year = todintersil->year + 68;
57 t->tm_wday = todintersil->weekday;