Lines Matching defs:tptr
42 *tptr, /* Pointer into temporary format */
62 tptr = tformat;
63 *tptr++ = *format++;
74 *tptr++ = *format;
89 snprintf(tptr, sizeof(tformat) - (tptr - tformat), "%d", width);
90 tptr += strlen(tptr);
98 if (tptr < (tformat + sizeof(tformat) - 1))
99 *tptr++ = *format;
107 if (tptr < (tformat + sizeof(tformat) - 1))
108 *tptr++ = *format;
121 snprintf(tptr, sizeof(tformat) - (tptr - tformat), "%d", prec);
122 tptr += strlen(tptr);
130 if (tptr < (tformat + sizeof(tformat) - 1))
131 *tptr++ = *format;
144 if (tptr < (tformat + sizeof(tformat) - 2))
146 *tptr++ = 'l';
147 *tptr++ = 'l';
154 if (tptr < (tformat + sizeof(tformat) - 1))
155 *tptr++ = *format;
163 if (tptr < (tformat + sizeof(tformat) - 1))
164 *tptr++ = *format;
167 *tptr = '\0';