Lines Matching refs:tempptr
211 *tempptr; /* Pointer into temporary string */ in _cupsStrFormatd() local
222 for (tempptr = temp + strlen(temp) - 1; in _cupsStrFormatd()
223 tempptr > temp && *tempptr == '0'; in _cupsStrFormatd()
224 *tempptr-- = '\0'); in _cupsStrFormatd()
252 for (tempptr = temp, bufptr = buf; in _cupsStrFormatd()
253 tempptr < tempdec && bufptr < bufend; in _cupsStrFormatd()
254 *bufptr++ = *tempptr++); in _cupsStrFormatd()
256 tempptr += declen; in _cupsStrFormatd()
258 if (*tempptr && bufptr < bufend) in _cupsStrFormatd()
262 while (*tempptr && bufptr < bufend) in _cupsStrFormatd()
263 *bufptr++ = *tempptr++; in _cupsStrFormatd()
399 *tempptr; /* Pointer into temporary buffer */ in _cupsStrScand() local
420 tempptr = temp; in _cupsStrScand()
422 *tempptr++ = *buf++; in _cupsStrScand()
425 if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
426 *tempptr++ = *buf++; in _cupsStrScand()
445 strlcpy(tempptr, loc->decimal_point, sizeof(temp) - (size_t)(tempptr - temp)); in _cupsStrScand()
446 tempptr += strlen(tempptr); in _cupsStrScand()
448 else if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
449 *tempptr++ = '.'; in _cupsStrScand()
459 if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
460 *tempptr++ = *buf++; in _cupsStrScand()
476 if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
477 *tempptr++ = *buf++; in _cupsStrScand()
488 if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
489 *tempptr++ = *buf++; in _cupsStrScand()
500 if (tempptr < (temp + sizeof(temp) - 1)) in _cupsStrScand()
501 *tempptr++ = *buf++; in _cupsStrScand()
518 *tempptr = '\0'; in _cupsStrScand()