Lines Matching refs:j

595 			    int j;  in tzloadbody()  local
596 for (j = 0; j < charcnt; j++) in tzloadbody()
597 if (strcmp(sp->chars + j, tsabbr) == 0) { in tzloadbody()
598 ts->ttis[i].tt_abbrind = j; in tzloadbody()
602 if (! (j < charcnt)) { in tzloadbody()
604 if (j + tsabbrlen < TZ_MAX_CHARS) { in tzloadbody()
605 strcpy(sp->chars + j, tsabbr); in tzloadbody()
606 charcnt = j + tsabbrlen + 1; in tzloadbody()
607 ts->ttis[i].tt_abbrind = j; in tzloadbody()
1152 register int j; in tzparse() local
1161 j = sp->types[i]; in tzparse()
1162 if (!sp->ttis[j].tt_isdst) { in tzparse()
1164 -sp->ttis[j].tt_gmtoff; in tzparse()
1170 j = sp->types[i]; in tzparse()
1171 if (sp->ttis[j].tt_isdst) { in tzparse()
1173 -sp->ttis[j].tt_gmtoff; in tzparse()
1187 j = sp->types[i]; in tzparse()
1188 sp->types[i] = sp->ttis[j].tt_isdst; in tzparse()
1189 if (sp->ttis[j].tt_ttisgmt) { in tzparse()
1206 if (isdst && !sp->ttis[j].tt_ttisstd) { in tzparse()
1214 theiroffset = -sp->ttis[j].tt_gmtoff; in tzparse()
1215 if (sp->ttis[j].tt_isdst) in tzparse()
1749 increment_overflow(int *ip, int j) in increment_overflow() argument
1759 if ((i >= 0) ? (j > INT_MAX - i) : (j < INT_MIN - i)) in increment_overflow()
1761 *ip += j; in increment_overflow()
1777 increment_overflow_time(time_t *tp, int_fast32_t j) in increment_overflow_time() argument
1784 if (! (j < 0 in increment_overflow_time()
1785 ? (TYPE_SIGNED(time_t) ? time_t_min - j <= *tp : -1 - j < *tp) in increment_overflow_time()
1786 : *tp <= time_t_max - j)) in increment_overflow_time()
1788 *tp += j; in increment_overflow_time()
1842 register int i, j; in time2sub() local
1999 for (j = sp->typecnt - 1; j >= 0; --j) { in time2sub()
2000 if (sp->ttis[j].tt_isdst == yourtm.tm_isdst) in time2sub()
2002 newt = t + sp->ttis[j].tt_gmtoff - in time2sub()