Lines Matching refs:cp
181 unsigned char *cp; in hexdecode() local
187 cp = ret; in hexdecode()
201 *cp++ = byte; in hexdecode()
212 return cp - (*out = ret); in hexdecode()
218 const char *cp = in; in checked_uint8() local
224 v = strtol(cp, &endp, 10); in checked_uint8()
228 endp == cp || !isspace(_UC(*endp)) || in checked_uint8()
232 for (cp = endp; isspace(_UC(*cp)); ++cp) in checked_uint8()
234 return cp - in; in checked_uint8()
258 const char *cp = rrdata; in tlsa_import_rr() local
262 if ((len = f->parser(cp += len, f->var)) <= 0) { in tlsa_import_rr()
282 static int allws(const char *cp) in allws() argument
284 while (*cp) in allws()
285 if (!isspace(_UC(*cp++))) in allws()