Home | History | Annotate | Download | only in Time

Lines Matching refs:ttisp

119     register const struct ttinfo * const  ttisp = &sp->ttis[i];

121 tzname[ttisp->tt_isdst] =
122 &sp->chars[ttisp->tt_abbrind];
123 if (ttisp->tt_isdst)
125 if (i == 0 || !ttisp->tt_isdst)
126 timezone = -(ttisp->tt_gmtoff);
132 register const struct ttinfo * const ttisp =
135 tzname[ttisp->tt_isdst] =
136 &sp->chars[ttisp->tt_abbrind];
408 register struct ttinfo * ttisp;
410 ttisp = &sp->ttis[i];
411 ttisp->tt_gmtoff = detzcode(p);
413 ttisp->tt_isdst = (unsigned char) *p++;
414 if (ttisp->tt_isdst != 0 && ttisp->tt_isdst != 1)
416 ttisp->tt_abbrind = (unsigned char) *p++;
417 if (ttisp->tt_abbrind < 0 ||
418 ttisp->tt_abbrind > sp->charcnt)
434 register struct ttinfo * ttisp;
436 ttisp = &sp->ttis[i];
438 ttisp->tt_ttisstd = FALSE;
440 ttisp->tt_ttisstd = *p++;
441 if (ttisp->tt_ttisstd != TRUE &&
442 ttisp->tt_ttisstd != FALSE)
447 register struct ttinfo * ttisp;
449 ttisp = &sp->ttis[i];
451 ttisp->tt_ttisgmt = FALSE;
453 ttisp->tt_ttisgmt = *p++;
454 if (ttisp->tt_ttisgmt != TRUE &&
455 ttisp->tt_ttisgmt != FALSE)