Home
last modified time | relevance | path

Searched refs:hexdigit_to_int (Results 1 – 6 of 6) sorted by relevance

/netbsd/external/bsd/nsd/dist/
H A Dzlexer.lex372 int val = (hexdigit_to_int(s[1]) * 100 +
373 hexdigit_to_int(s[2]) * 10 +
374 hexdigit_to_int(s[3]));
H A Ddname.c219 int val = (hexdigit_to_int(s[1]) * 100 + in dname_parse_wire()
220 hexdigit_to_int(s[2]) * 10 + in dname_parse_wire()
221 hexdigit_to_int(s[3])); in dname_parse_wire()
H A Dutil.c642 *t++ = hexdigit_to_int(src[0]) * 16 + in hex_pton()
643 hexdigit_to_int(src[1]) ; in hex_pton()
793 hexdigit_to_int(char ch) in hexdigit_to_int() function
H A Dzlexer.c2247 int val = (hexdigit_to_int(s[1]) * 100 + in zoctet()
2248 hexdigit_to_int(s[2]) * 10 + in zoctet()
2249 hexdigit_to_int(s[3])); in zoctet()
H A Dzonec.c113 *t += hexdigit_to_int(*hex) * i; in zparser_conv_hex()
154 *t += hexdigit_to_int(*hex) * i; in zparser_conv_hex_length()
1234 mval = mval * 10 + hexdigit_to_int(*cp++); in precsize_aton()
1239 cmval = hexdigit_to_int(*cp++) * 10; in precsize_aton()
1241 cmval += hexdigit_to_int(*cp++); in precsize_aton()
H A Dutil.h357 int hexdigit_to_int(char ch);