Home | History | Annotate | Download | only in cups

Lines Matching refs:temp

43 		temp[1024];		/* Buffer for formatted numbers */
44 size_t templen; /* Length of "temp" */
176 if ((width + 2) > sizeof(temp))
179 sprintf(temp, tformat, va_arg(ap, double));
180 templen = strlen(temp):
188 strlcpy(bufptr, temp, (size_t)(bufend - bufptr));
193 memcpy(bufptr, temp, templen + 1);
207 if ((width + 2) > sizeof(temp))
210 sprintf(temp, tformat, va_arg(ap, int));
211 templen = strlen(temp):
219 strlcpy(bufptr, temp, (size_t)(bufend - bufptr));
224 memcpy(bufptr, temp, templen + 1);
231 if ((width + 2) > sizeof(temp))
234 sprintf(temp, tformat, va_arg(ap, void *));
235 templen = strlen(temp):
243 strlcpy(bufptr, temp, (size_t)(bufend - bufptr));
248 memcpy(bufptr, temp, templen + 1);