Lines Matching refs:tempptr
215 *tempptr; /* Pointer into temporary string */ in _cupsStrFormatd() local
226 for (tempptr = temp + strlen(temp) - 1; in _cupsStrFormatd()
227 tempptr > temp && *tempptr == '0'; in _cupsStrFormatd()
228 *tempptr-- = '\0'); in _cupsStrFormatd()
256 for (tempptr = temp, bufptr = buf; in _cupsStrFormatd()
257 tempptr < tempdec && bufptr < bufend; in _cupsStrFormatd()
258 *bufptr++ = *tempptr++); in _cupsStrFormatd()
260 tempptr += declen; in _cupsStrFormatd()
262 if (*tempptr && bufptr < bufend) in _cupsStrFormatd()
266 while (*tempptr && bufptr < bufend) in _cupsStrFormatd()
267 *bufptr++ = *tempptr++; in _cupsStrFormatd()
404 *tempptr; /* Pointer into temporary buffer */ in _cupsStrScand() local
425 tempptr = temp; in _cupsStrScand()
427 *tempptr++ = *buf++; in _cupsStrScand()
430 if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
431 *tempptr++ = *buf++; in _cupsStrScand()
450 strlcpy(tempptr, loc->decimal_point, sizeof(temp) - (size_t)(tempptr - temp)); in _cupsStrScand()
451 tempptr += strlen(tempptr); in _cupsStrScand()
453 else if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
454 *tempptr++ = '.'; in _cupsStrScand()
464 if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
465 *tempptr++ = *buf++; in _cupsStrScand()
481 if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
482 *tempptr++ = *buf++; in _cupsStrScand()
493 if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
494 *tempptr++ = *buf++; in _cupsStrScand()
505 if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
506 *tempptr++ = *buf++; in _cupsStrScand()
523 *tempptr = '\0'; in _cupsStrScand()