Lines Matching refs:p
36 char *p = buf;
42 *p = numberstring_upper[num % base];
43 p++;
47 *p = numberstring_lower[num % base];
48 p++;
53 spaces = width - (p - buf);
63 while (p != buf) {
64 p--;
65 func((int)*p, handle);
80 const char *p;
134 p = va_arg(ap, char *);
135 ASSERT(p != 0);
136 spaces = width - strlen(p);
146 while (*p != '\0')
148 func(*p++, handle);
178 case 'p':