Lines Matching refs:pc
165 char c = '\0', *pc; in parse_quote() local
169 pc = *linep; in parse_quote()
170 if (*pc == '\0') in parse_quote()
174 c = *pc++; in parse_quote()
178 if (c == '\\' && *pc != '\0') { in parse_quote()
179 c = *pc++; in parse_quote()
195 if (*pc >= '0' && *pc <= '7') { in parse_quote()
196 c = (c<<3)+(*pc++ - '0'); in parse_quote()
197 if (*pc >= '0' && *pc <= '7') in parse_quote()
198 c = (c<<3)+(*pc++ - '0'); in parse_quote()
219 *linep = pc-1; /* say where we ended */ in parse_quote()