Home
last modified time | relevance | path

Searched refs:str_p (Results 1 – 5 of 5) sorted by relevance

/freebsd-10-stable/contrib/unbound/sldns/
Dparseutil.c287 sldns_parse_escape(uint8_t *ch_p, const char** str_p) in sldns_parse_escape() argument
291 if ((*str_p)[0] && isdigit((unsigned char)(*str_p)[0]) && in sldns_parse_escape()
292 (*str_p)[1] && isdigit((unsigned char)(*str_p)[1]) && in sldns_parse_escape()
293 (*str_p)[2] && isdigit((unsigned char)(*str_p)[2])) { in sldns_parse_escape()
295 val = (uint16_t)(((*str_p)[0] - '0') * 100 + in sldns_parse_escape()
296 ((*str_p)[1] - '0') * 10 + in sldns_parse_escape()
297 ((*str_p)[2] - '0')); in sldns_parse_escape()
303 *str_p += 3; in sldns_parse_escape()
306 } else if ((*str_p)[0] && !isdigit((unsigned char)(*str_p)[0])) { in sldns_parse_escape()
308 *ch_p = (uint8_t)*(*str_p)++; in sldns_parse_escape()
[all …]
Dparseutil.h138 int sldns_parse_escape(uint8_t *ch_p, const char** str_p);
146 int sldns_parse_char(uint8_t *ch_p, const char** str_p);
/freebsd-10-stable/contrib/ldns/
Dstr2host.c261 parse_escape(uint8_t *ch_p, const char** str_p) in parse_escape() argument
265 if ((*str_p)[0] && isdigit((*str_p)[0]) && in parse_escape()
266 (*str_p)[1] && isdigit((*str_p)[1]) && in parse_escape()
267 (*str_p)[2] && isdigit((*str_p)[2])) { in parse_escape()
269 val = (uint16_t)(((*str_p)[0] - '0') * 100 + in parse_escape()
270 ((*str_p)[1] - '0') * 10 + in parse_escape()
271 ((*str_p)[2] - '0')); in parse_escape()
277 *str_p += 3; in parse_escape()
280 } else if ((*str_p)[0] && !isdigit((*str_p)[0])) { in parse_escape()
282 *ch_p = (uint8_t)*(*str_p)++; in parse_escape()
[all …]
/freebsd-10-stable/contrib/binutils/gas/config/
Dtc-s390.c644 s390_tls_suffix (str_p, exp_p) in s390_tls_suffix() argument
645 char **str_p; in s390_tls_suffix()
661 str = *str_p;
676 if (&input_line_pointer != str_p)
687 *str_p = str;
727 s390_elf_suffix (str_p, exp_p) in s390_elf_suffix() argument
728 char **str_p; in s390_elf_suffix()
750 char *str = *str_p;
806 if (&input_line_pointer != str_p)
809 *str_p = str;
[all …]
Dtc-ppc.c1563 ppc_elf_suffix (char **str_p, expressionS *exp_p) in ppc_elf_suffix() argument
1574 char *str = *str_p; in ppc_elf_suffix()
1718 if (&input_line_pointer != str_p) in ppc_elf_suffix()
1721 *str_p = str; in ppc_elf_suffix()