Lines Matching refs:tzp
441 const char * tzp; in GTime2str() local
470 tzp = fracp; in GTime2str()
475 tzp++; in GTime2str()
476 while(tzp < end && *tzp >= '0' && *tzp <= '9'); in GTime2str()
478 for(fracl = tzp - fracp - 1; fracl && fracp[fracl - 1] == '0'; fracl--) in GTime2str()
483 if(tzp >= end) in GTime2str()
485 else if(*tzp == 'Z') { in GTime2str()
486 tzp = " GMT"; in GTime2str()
487 end = tzp + 4; in GTime2str()
491 tzp++; in GTime2str()
494 tzl = end - tzp; in GTime2str()
499 sep, tzl, tzp); in GTime2str()
504 const char * tzp; in UTime2str() local
511 for(tzp = beg; tzp < end && *tzp >= '0' && *tzp <= '9'; tzp++) in UTime2str()
515 switch (tzp - sec) { in UTime2str()
525 if(tzp >= end) in UTime2str()
527 if(*tzp == 'Z') { in UTime2str()
528 tzp = "GMT"; in UTime2str()
529 end = tzp + 3; in UTime2str()
532 tzp++; in UTime2str()
534 tzl = end - tzp; in UTime2str()
538 tzl, tzp); in UTime2str()