Lines Matching refs:ttisp
274 update_tzname_etc(struct state const *sp, struct ttinfo const *ttisp) in update_tzname_etc() argument
277 tzname[ttisp->tt_isdst] = (char *) &sp->chars[ttisp->tt_desigidx]; in update_tzname_etc()
280 if (!ttisp->tt_isdst) in update_tzname_etc()
281 timezone = - ttisp->tt_utoff; in update_tzname_etc()
284 if (ttisp->tt_isdst) in update_tzname_etc()
285 altzone = - ttisp->tt_utoff; in update_tzname_etc()
296 struct ttinfo *ttisp = &sp->ttis[type]; in may_update_tzname_etc() local
297 int this_bit = 1 << ttisp->tt_isdst; in may_update_tzname_etc()
299 update_tzname_etc(sp, ttisp); in may_update_tzname_etc()
571 register struct ttinfo * ttisp; in tzloadbody() local
574 ttisp = &sp->ttis[i]; in tzloadbody()
575 ttisp->tt_utoff = detzcode(p); in tzloadbody()
580 ttisp->tt_isdst = isdst; in tzloadbody()
584 ttisp->tt_desigidx = desigidx; in tzloadbody()
627 register struct ttinfo * ttisp; in tzloadbody() local
629 ttisp = &sp->ttis[i]; in tzloadbody()
631 ttisp->tt_ttisstd = false; in tzloadbody()
635 ttisp->tt_ttisstd = *p++; in tzloadbody()
639 register struct ttinfo * ttisp; in tzloadbody() local
641 ttisp = &sp->ttis[i]; in tzloadbody()
643 ttisp->tt_ttisut = false; in tzloadbody()
647 ttisp->tt_ttisut = *p++; in tzloadbody()
1568 register const struct ttinfo * ttisp; in localsub() local
1639 ttisp = &sp->ttis[i]; in localsub()
1646 result = timesub(&t, ttisp->tt_utoff, sp, tmp); in localsub()
1648 result->tm_isdst = ttisp->tt_isdst; in localsub()
1650 result->TM_ZONE = (char *) &sp->chars[ttisp->tt_desigidx]; in localsub()
1653 update_tzname_etc(sp, ttisp); in localsub()