Lines Matching refs:p
319 register char *p; local
323 for (p = s; *p != '\0'; p++)
324 if (strchr(legal, *p) != NULL)
325 switch (*p) {
384 fixstr(p) in fixstr() argument
385 register char *p; in fixstr()
387 if (p == NULL)
390 for (; *p != '\0'; p++)
391 if (*p == 'N')
392 *p = '\n';
393 else if (*p == 'T')
394 *p = '\t';
395 else if (*p == 'S')
396 *p = ' ';
397 else if (*p == 'Z')
398 *p = '\0';
413 register char *p; local
449 p = str + sub.rm_so;
453 sprintf(grump, "matched `%.*s'", len, p);
458 if (len != shlen || strncmp(p, should, (size_t)shlen) != 0) {
459 sprintf(grump, "matched `%.*s' instead", len, p);
471 if (strncmp(p, at, shlen) != 0) {
472 sprintf(grump, "matched null at `%.20s'", p);