Lines Matching defs:ttisp
279 update_tzname_etc(struct state const *sp, struct ttinfo const *ttisp)
282 tzname[ttisp->tt_isdst] = (char *) &sp->chars[ttisp->tt_desigidx];
285 if (!ttisp->tt_isdst)
286 timezone = - ttisp->tt_utoff;
289 if (ttisp->tt_isdst)
290 altzone = - ttisp->tt_utoff;
301 struct ttinfo *ttisp = &sp->ttis[type];
302 int this_bit = 1 << ttisp->tt_isdst;
304 update_tzname_etc(sp, ttisp);
553 register struct ttinfo * ttisp;
556 ttisp = &sp->ttis[i];
557 ttisp->tt_utoff = detzcode(p);
562 ttisp->tt_isdst = isdst;
566 ttisp->tt_desigidx = desigidx;
609 register struct ttinfo * ttisp;
611 ttisp = &sp->ttis[i];
613 ttisp->tt_ttisstd = false;
617 ttisp->tt_ttisstd = *p++;
621 register struct ttinfo * ttisp;
623 ttisp = &sp->ttis[i];
625 ttisp->tt_ttisut = false;
629 ttisp->tt_ttisut = *p++;
1499 register const struct ttinfo * ttisp;
1570 ttisp = &sp->ttis[i];
1574 ** t += ttisp->tt_utoff;
1577 result = timesub(&t, ttisp->tt_utoff, sp, tmp);
1579 result->tm_isdst = ttisp->tt_isdst;
1581 result->TM_ZONE = (char *) &sp->chars[ttisp->tt_desigidx];
1584 update_tzname_etc(sp, ttisp);