Home
last modified time | relevance | path

Searched refs:xdigits (Results 1 - 9 of 9) sorted by relevance

/third_party/node/deps/cares/src/lib/
H A Dinet_net_pton.c65 static const char xdigits[] = "0123456789abcdef"; in ares_inet_net_pton_ipv4() local
87 n = (int)(strchr(xdigits, ch) - xdigits); in ares_inet_net_pton_ipv4()
249 const char *xdigits; in ares_inet_pton6() local
271 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) { in ares_inet_pton6()
272 pch = strchr((xdigits = xdigits_u), ch); in ares_inet_pton6()
279 val |= (unsigned int)(pch - xdigits); in ares_inet_pton6()
/third_party/curl/lib/
H A Dinet_pton.c178 const char *xdigits; in inet_pton6() local
181 pch = strchr((xdigits = xdigits_l), ch); in inet_pton6()
183 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
186 val |= (pch - xdigits); in inet_pton6()
/third_party/libuv/src/
H A Dinet.c218 const char *xdigits, *curtok; in inet_pton6() local
235 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) in inet_pton6()
236 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
239 val |= (pch - xdigits); in inet_pton6()
/third_party/node/deps/uv/src/
H A Dinet.c223 const char *xdigits, *curtok; in inet_pton6() local
240 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) in inet_pton6()
241 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
244 val |= (pch - xdigits); in inet_pton6()
/third_party/elfutils/src/
H A Dsize.c324 int xdigits = length_map[gelf_getclass (elf) - 1][radix_hex]; in print_header() local
331 xdigits - 2, sgettext ("bsd|hex"), in print_header()
521 const int xdigits = length_map[gelf_getclass (elf) - 1][radix_hex]; in show_bsd() local
554 xdigits - 2, textsize + datasize + bsssize, in show_bsd()
573 int xdigits = length_map[totals_class - 1][radix_hex]; in show_bsd_totals() local
581 xdigits - 2, total_textsize + total_datasize + total_bsssize, in show_bsd_totals()
/third_party/musl/src/network/
H A Dgetnameinfo.c43 static const char xdigits[] = "0123456789abcdef"; in mkptr6() local
46 *s++ = xdigits[ip[i]&15]; *s++ = '.'; in mkptr6()
47 *s++ = xdigits[ip[i]>>4]; *s++ = '.'; in mkptr6()
/third_party/musl/porting/linux/user/src/network/
H A Dgetnameinfo.c43 static const char xdigits[] = "0123456789abcdef"; in mkptr6() local
46 *s++ = xdigits[ip[i]&15]; *s++ = '.'; in mkptr6()
47 *s++ = xdigits[ip[i]>>4]; *s++ = '.'; in mkptr6()
/third_party/musl/porting/liteos_a/user/src/network/
H A Dgetnameinfo.c36 static const char xdigits[] = "0123456789abcdef"; in mkptr6() local
39 *s++ = xdigits[ip[i]&15]; *s++ = '.'; in mkptr6()
40 *s++ = xdigits[ip[i]>>4]; *s++ = '.'; in mkptr6()
/third_party/toybox/toys/pending/
H A Dhost.c86 static const char xdigits[] = "0123456789abcdef"; in host_main() local
95 ptrbuf[j++] = xdigits[a[i]&15]; in host_main()
97 ptrbuf[j++] = xdigits[a[i]>>4]; in host_main()

Completed in 8 milliseconds