Lines Matching refs:ttisp
275 const struct ttinfo * const ttisp = &sp->ttis[i]; in settzname() local
277 tzname[ttisp->tt_isdst] = &sp->chars[ttisp->tt_abbrind]; in settzname()
280 const struct ttinfo * const ttisp = &sp->ttis[sp->types[i]]; in settzname() local
282 tzname[ttisp->tt_isdst] = in settzname()
283 &sp->chars[ttisp->tt_abbrind]; in settzname()
284 if (ttisp->tt_isdst) in settzname()
286 if (!ttisp->tt_isdst) in settzname()
287 timezone = -(ttisp->tt_gmtoff); in settzname()
300 const struct ttinfo * const ttisp = &sp->ttis[i]; in settzname() local
301 char * cp = &sp->chars[ttisp->tt_abbrind]; in settzname()
464 struct ttinfo * ttisp; in tzload() local
466 ttisp = &sp->ttis[i]; in tzload()
467 ttisp->tt_gmtoff = detzcode(p); in tzload()
469 ttisp->tt_isdst = (unsigned char) *p++; in tzload()
470 if (ttisp->tt_isdst != 0 && ttisp->tt_isdst != 1) in tzload()
472 ttisp->tt_abbrind = (unsigned char) *p++; in tzload()
473 if (ttisp->tt_abbrind < 0 || in tzload()
474 ttisp->tt_abbrind > sp->charcnt) in tzload()
491 struct ttinfo * ttisp; in tzload() local
493 ttisp = &sp->ttis[i]; in tzload()
495 ttisp->tt_ttisstd = FALSE; in tzload()
497 ttisp->tt_ttisstd = *p++; in tzload()
498 if (ttisp->tt_ttisstd != TRUE && in tzload()
499 ttisp->tt_ttisstd != FALSE) in tzload()
504 struct ttinfo * ttisp; in tzload() local
506 ttisp = &sp->ttis[i]; in tzload()
508 ttisp->tt_ttisgmt = FALSE; in tzload()
510 ttisp->tt_ttisgmt = *p++; in tzload()
511 if (ttisp->tt_ttisgmt != TRUE && in tzload()
512 ttisp->tt_ttisgmt != FALSE) in tzload()
1282 const struct ttinfo * ttisp; in localsub() local
1336 ttisp = &sp->ttis[i]; in localsub()
1343 result = timesub(&t, ttisp->tt_gmtoff, sp, tmp); in localsub()
1344 tmp->tm_isdst = ttisp->tt_isdst; in localsub()
1345 tzname[tmp->tm_isdst] = &sp->chars[ttisp->tt_abbrind]; in localsub()
1346 tmp->TM_ZONE = &sp->chars[ttisp->tt_abbrind]; in localsub()