Lines Matching defs:p
281 char *p, *start, *end;
288 start = p = &pvt->inbuffer[pvt->incurr];
291 while (p != end && *p != '\n')
292 p++;
294 if (p == end) {
308 p = end;
321 while (p != end && *p != '\n')
322 p++;
325 if (p == end) {
330 i = p - start + 1;
340 if (p != end) {
368 char *p;
374 p = strchr(line, '\n');
375 if (p == NULL) {
382 p = line;
383 while (isspace((unsigned char)*p)) p++;
384 while (isdigit((unsigned char)*p)) p++;
385 while (isspace((unsigned char)*p)) p++;
386 strncpy(text, p, textlen - 1);
387 p[textlen - 1] = '\0';
445 char *p = memget(len + LINEINCR);
447 if (p == NULL)
449 memcpy(p, buffer, len);
451 buffer = p;