Lines Matching refs:p
33 char *p = buf;
39 *p = numberstring_upper[num % base];
40 p++;
44 *p = numberstring_lower[num % base];
45 p++;
50 spaces = width - (p - buf);
60 while (p != buf) {
61 p--;
62 func((int)*p, handle);
77 const char *p;
131 p = va_arg(ap, char *);
132 if (p == NULL) {
141 spaces = width - strlen(p);
151 while (*p != '\0')
153 func(*p++, handle);
183 case 'p':