Lines Matching refs:tzp
462 const char *tzp; in GTime2str() local
492 tzp = fracp; in GTime2str()
497 tzp++; in GTime2str()
498 while(tzp < end && *tzp >= '0' && *tzp <= '9'); in GTime2str()
500 for(fracl = tzp - fracp - 1; fracl && fracp[fracl - 1] == '0'; fracl--) in GTime2str()
505 if(tzp >= end) in GTime2str()
507 else if(*tzp == 'Z') { in GTime2str()
508 tzp = " GMT"; in GTime2str()
509 end = tzp + 4; in GTime2str()
513 tzp++; in GTime2str()
516 tzl = end - tzp; in GTime2str()
521 sep, tzl, tzp); in GTime2str()
530 const char *tzp; in UTime2str() local
534 for(tzp = beg; tzp < end && *tzp >= '0' && *tzp <= '9'; tzp++) in UTime2str()
538 switch(tzp - sec) { in UTime2str()
548 if(tzp >= end) in UTime2str()
550 if(*tzp == 'Z') { in UTime2str()
551 tzp = "GMT"; in UTime2str()
552 end = tzp + 3; in UTime2str()
555 tzp++; in UTime2str()
557 tzl = end - tzp; in UTime2str()
561 tzl, tzp); in UTime2str()