Lines Matching refs:tzoff
343 int tzoff = -1; in parsedate() local
375 if(!found && (tzoff == -1)) { in parsedate()
377 tzoff = checktz(buf); in parsedate()
378 if(tzoff != -1) in parsedate()
426 if((tzoff == -1) && in parsedate()
440 tzoff = (val/100 * 60 + val%100)*60; in parsedate()
444 tzoff = date[-1]=='+'?-tzoff:tzoff; in parsedate()
550 if(tzoff == -1) in parsedate()
551 tzoff = 0; in parsedate()
553 if((tzoff > 0) && (t > TIME_T_MAX - tzoff)) { in parsedate()
558 t += tzoff; in parsedate()