Lines Matching refs:p
13 char *p; in perf_atoll() local
19 length = strtoll(str, &p, 10); in perf_atoll()
20 switch (c = *p++) { in perf_atoll()
22 if (*p) in perf_atoll()
44 if (strcmp(p, "b") != 0) in perf_atoll()
47 if (strcmp(p, "B") != 0) in perf_atoll()
99 char **p; in argv_free() local
100 for (p = argv; *p; p++) in argv_free()
101 zfree(p); in argv_free()
136 const char *p = str; in argv_split() local
141 t = strndup(p, str-p); in argv_split()
296 char *p = s; in strxfrchar() local
298 while ((p = strchr(p, from)) != NULL) in strxfrchar()
299 *p++ = to; in strxfrchar()
352 void *p; in memdup() local
354 p = malloc(len); in memdup()
355 if (p) in memdup()
356 memcpy(p, src, len); in memdup()
358 return p; in memdup()