Lines Matching refs:tzp
461 const char *tzp; in GTime2str() local
491 tzp = fracp; in GTime2str()
496 tzp++; in GTime2str()
497 while(tzp < end && *tzp >= '0' && *tzp <= '9'); in GTime2str()
499 for(fracl = tzp - fracp - 1; fracl && fracp[fracl - 1] == '0'; fracl--) in GTime2str()
504 if(tzp >= end) in GTime2str()
506 else if(*tzp == 'Z') { in GTime2str()
507 tzp = " GMT"; in GTime2str()
508 end = tzp + 4; in GTime2str()
512 tzp++; in GTime2str()
515 tzl = end - tzp; in GTime2str()
520 sep, tzl, tzp); in GTime2str()
529 const char *tzp; in UTime2str() local
533 for(tzp = beg; tzp < end && *tzp >= '0' && *tzp <= '9'; tzp++) in UTime2str()
537 switch(tzp - sec) { in UTime2str()
547 if(tzp >= end) in UTime2str()
549 if(*tzp == 'Z') { in UTime2str()
550 tzp = "GMT"; in UTime2str()
551 end = tzp + 3; in UTime2str()
554 tzp++; in UTime2str()
556 tzl = end - tzp; in UTime2str()
560 tzl, tzp); in UTime2str()