Home | History | Annotate | Download | only in tzcode

Lines Matching refs:fp

22 	register const char *	fp;
34 fp = format;
36 while ((*tp++ = c = *fp++) != '\0') {
39 if (*fp == '%') {
40 *tp++ = *fp++;
44 if (*fp == '*')
45 ++fp;
46 while (is_digit(*fp))
47 *tp++ = *fp++;
48 if (*fp == 'l' || *fp == 'h')
49 *tp++ = *fp++;
50 else if (*fp == '[')
51 do *tp++ = *fp++;
52 while (*fp != '\0' && *fp != ']');
53 if ((*tp++ = *fp++) == '\0')