Lines Matching refs:j

678 			    int j;  in tzloadbody()  local
679 for (j = 0; j < charcnt; j++) in tzloadbody()
680 if (strcmp(sp->chars + j, tsabbr) == 0) { in tzloadbody()
681 ts->ttis[i].tt_desigidx = j; in tzloadbody()
685 if (! (j < charcnt)) { in tzloadbody()
687 if (j + tsabbrlen < TZ_MAX_CHARS) { in tzloadbody()
688 strcpy(sp->chars + j, tsabbr); in tzloadbody()
689 charcnt = j + tsabbrlen + 1; in tzloadbody()
690 ts->ttis[i].tt_desigidx = j; in tzloadbody()
1325 register int j; in tzparse() local
1334 j = sp->types[i]; in tzparse()
1335 if (!sp->ttis[j].tt_isdst) { in tzparse()
1337 - sp->ttis[j].tt_utoff; in tzparse()
1343 j = sp->types[i]; in tzparse()
1344 if (sp->ttis[j].tt_isdst) { in tzparse()
1346 - sp->ttis[j].tt_utoff; in tzparse()
1359 j = sp->types[i]; in tzparse()
1360 sp->types[i] = sp->ttis[j].tt_isdst; in tzparse()
1361 if (sp->ttis[j].tt_ttisut) { in tzparse()
1379 if (isdst && !sp->ttis[j].tt_ttisstd) { in tzparse()
1387 theiroffset = -sp->ttis[j].tt_utoff; in tzparse()
1388 if (sp->ttis[j].tt_isdst) in tzparse()
1915 increment_overflow(int *ip, int j) in increment_overflow() argument
1918 return ckd_add(ip, *ip, j); in increment_overflow()
1928 if ((i >= 0) ? (j > INT_MAX - i) : (j < INT_MIN - i)) in increment_overflow()
1930 *ip += j; in increment_overflow()
1951 increment_overflow_time(time_t *tp, int_fast32_t j) in increment_overflow_time() argument
1954 return ckd_add(tp, *tp, j); in increment_overflow_time()
1961 if (! (j < 0 in increment_overflow_time()
1962 ? (TYPE_SIGNED(time_t) ? TIME_T_MIN - j <= *tp : -1 - j < *tp) in increment_overflow_time()
1963 : *tp <= TIME_T_MAX - j)) in increment_overflow_time()
1965 *tp += j; in increment_overflow_time()
2037 register int i, j; in time2sub() local
2200 for (j = sp->typecnt - 1; j >= 0; --j) { in time2sub()
2201 if (sp->ttis[j].tt_isdst == yourtm.tm_isdst) in time2sub()
2203 if (ttunspecified(sp, j)) in time2sub()
2205 newt = (t + sp->ttis[j].tt_utoff in time2sub()