Lines Matching defs:ttisp
305 update_tzname_etc(struct state const *sp, struct ttinfo const *ttisp)
308 tzname[ttisp->tt_isdst] = (char *) &sp->chars[ttisp->tt_desigidx];
311 if (!ttisp->tt_isdst)
312 timezone = - ttisp->tt_utoff;
315 if (ttisp->tt_isdst)
316 altzone = - ttisp->tt_utoff;
327 struct ttinfo *ttisp = &sp->ttis[type];
328 int this_bit = 1 << ttisp->tt_isdst;
330 update_tzname_etc(sp, ttisp);
612 register struct ttinfo * ttisp;
615 ttisp = &sp->ttis[i];
616 ttisp->tt_utoff = detzcode(p);
621 ttisp->tt_isdst = isdst;
625 ttisp->tt_desigidx = desigidx;
668 register struct ttinfo * ttisp;
670 ttisp = &sp->ttis[i];
672 ttisp->tt_ttisstd = false;
676 ttisp->tt_ttisstd = *p++;
680 register struct ttinfo * ttisp;
682 ttisp = &sp->ttis[i];
684 ttisp->tt_ttisut = false;
688 ttisp->tt_ttisut = *p++;
1554 register const struct ttinfo * ttisp;
1625 ttisp = &sp->ttis[i];
1629 ** t += ttisp->tt_utoff;
1632 result = timesub(&t, ttisp->tt_utoff, sp, tmp);
1634 result->tm_isdst = ttisp->tt_isdst;
1636 result->TM_ZONE = (char *) &sp->chars[ttisp->tt_desigidx];
1639 update_tzname_etc(sp, ttisp);