Lines Matching defs:tptr
343 *tptr, /* Pointer into temporary format */
364 tptr = tformat;
365 *tptr++ = *format++;
376 *tptr++ = *format++;
387 snprintf(tptr, sizeof(tformat) - (size_t)(tptr - tformat), "%d", width);
388 tptr += strlen(tptr);
396 if (tptr < (tformat + sizeof(tformat) - 1))
397 *tptr++ = *format;
405 if (tptr < (tformat + sizeof(tformat) - 1))
406 *tptr++ = *format;
419 snprintf(tptr, sizeof(tformat) - (size_t)(tptr - tformat), "%d", prec);
420 tptr += strlen(tptr);
428 if (tptr < (tformat + sizeof(tformat) - 1))
429 *tptr++ = *format;
440 if (tptr < (tformat + sizeof(tformat) - 2))
442 *tptr++ = 'l';
443 *tptr++ = 'l';
450 if (tptr < (tformat + sizeof(tformat) - 1))
451 *tptr++ = *format;
461 if (tptr < (tformat + sizeof(tformat) - 1))
462 *tptr++ = *format;
465 *tptr = '\0';