Lines Matching refs:pp
882 static double my_strtod(char **pp) in my_strtod() argument
884 char *cp = *pp; in my_strtod()
889 unsigned long long ull = strtoull(cp, pp, 0); in my_strtod()
892 c = **pp; in my_strtod()
902 return strtod(cp, pp); in my_strtod()
1132 char *pp; in next_token() local
1135 pp = p; in next_token()
1136 *s++ = nextchar(&pp); in next_token()
1137 p = pp; in next_token()
1151 char *pp = p; in next_token() local
1152 s[-1] = bb_process_escape_sequence((const char **)&pp); in next_token()
1155 if (pp == p) in next_token()
1158 p = pp; in next_token()
1168 char *pp = p; in next_token() local
1169 t_double = my_strtod(&pp); in next_token()
1170 p = pp; in next_token()
2221 int size, a, p, pp = 0; in awk_getline() local
2255 s = strchr(b+pp, c); in awk_getline()
2257 s = memchr(b+pp, '\0', p - pp); in awk_getline()
2285 pp = p; in awk_getline()
2287 if (p < pp) { in awk_getline()
2294 } while (p > pp); in awk_getline()