Lines Matching refs:tti
465 _ttinfo *tti = find_ttinfo((PyZoneInfo_ZoneInfo *)self, dt);
466 if (tti == NULL) {
469 Py_INCREF(tti->utcoff);
470 return tti->utcoff;
476 _ttinfo *tti = find_ttinfo((PyZoneInfo_ZoneInfo *)self, dt);
477 if (tti == NULL) {
480 Py_INCREF(tti->dstoff);
481 return tti->dstoff;
487 _ttinfo *tti = find_ttinfo((PyZoneInfo_ZoneInfo *)self, dt);
488 if (tti == NULL) {
491 Py_INCREF(tti->tzname);
492 return tti->tzname;
520 _ttinfo *tti = NULL;
524 tti = self->ttinfo_before;
528 tti = find_tzrule_ttinfo_fromutc(&(self->tzrule_after), timestamp,
544 int64_t diff = tti_prev->utcoff_seconds - tti->utcoff_seconds;
557 tti = self->trans_ttinfos[idx - 1];
561 tti = self->trans_ttinfos[0];
566 (int64_t)(tti_prev->utcoff_seconds - tti->utcoff_seconds);
572 PyObject *tmp = PyNumber_Add(dt, tti->utcoff);
1062 _ttinfo *tti = &(self->_ttinfos[idx]);
1063 build_tzrule(tti->tzname, NULL, tti->utcoff_seconds, 0, NULL, NULL,
1070 if (PyObject_IsTrue(tti->dstoff)) {
1073 tti_after->dstoff = tti->dstoff;