Lines Matching refs:tformat
41 char tformat[100], /* Temporary format string for sprintf() */
62 tptr = tformat;
89 snprintf(tptr, sizeof(tformat) - (tptr - tformat), "%d", width);
98 if (tptr < (tformat + sizeof(tformat) - 1))
107 if (tptr < (tformat + sizeof(tformat) - 1))
121 snprintf(tptr, sizeof(tformat) - (tptr - tformat), "%d", prec);
130 if (tptr < (tformat + sizeof(tformat) - 1))
144 if (tptr < (tformat + sizeof(tformat) - 2))
154 if (tptr < (tformat + sizeof(tformat) - 1))
163 if (tptr < (tformat + sizeof(tformat) - 1))
179 sprintf(temp, tformat, va_arg(ap, double));
210 sprintf(temp, tformat, va_arg(ap, int));
234 sprintf(temp, tformat, va_arg(ap, void *));