Lines Matching refs:tzoff
367 int tzoff = -1;
398 if(!found && (tzoff == -1)) {
400 tzoff = checktz(date, len);
401 if(tzoff != -1)
441 if((tzoff == -1) &&
455 tzoff = (val/100 * 60 + val%100)*60;
459 tzoff = date[-1]=='+'?-tzoff:tzoff;
558 if(tzoff == -1)
559 tzoff = 0;
561 if((tzoff > 0) && (t > TIME_T_MAX - tzoff)) {
566 t += tzoff;