Home
last modified time | relevance | path

Searched refs:xdigits (Results 1 – 16 of 16) sorted by relevance

/third_party/node/deps/cares/src/lib/
Dinet_net_pton.c63 static const char xdigits[] = "0123456789abcdef"; in ares_inet_net_pton_ipv4() local
80 n = aresx_sztosi(strchr(xdigits, ch) - xdigits); in ares_inet_net_pton_ipv4()
224 const char *xdigits, *curtok; in ares_inet_pton6() local
241 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) in ares_inet_pton6()
242 pch = strchr((xdigits = xdigits_u), ch); in ares_inet_pton6()
247 val |= (unsigned int)(pch - xdigits); in ares_inet_pton6()
/third_party/curl/lib/
Dinet_pton.c177 const char *xdigits; in inet_pton6() local
180 pch = strchr((xdigits = xdigits_l), ch); in inet_pton6()
182 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
185 val |= (pch - xdigits); in inet_pton6()
/third_party/node/deps/uv/src/
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/libuv/src/
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/
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/porting/liteos_a/user/src/network/
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/musl/src/network/
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/musl/porting/linux/user/src/network/
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/cares/
Dbackport-001-CVE-2023-31130.patch68 static const char xdigits[] = "0123456789abcdef";
81 const char *xdigits, *curtok;
106 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
107 pch = strchr((xdigits = xdigits_u), ch);
112 - val |= aresx_sztoui(pch - xdigits);
114 + val |= (pch - xdigits);
Dbackport-003-CVE-2023-31130.patch68 - val |= (pch - xdigits);
69 + val |= (unsigned int)(pch - xdigits);
/third_party/toybox/toys/pending/
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()
/third_party/musl/porting/uniproton/kernel/src/stdio/
Dvfprintf.c154 static const char xdigits[16] = { variable
160 for (; x; x>>=4) *--s = xdigits[(x&15)]|lower; in fmt_x()
251 *s++=xdigits[x]|(t&32); in fmt_fp()
/third_party/musl/porting/liteos_a/kernel/src/stdio/
Dvfprintf.c154 static const char xdigits[16] = { variable
160 for (; x; x>>=4) *--s = xdigits[(x&15)]|lower; in fmt_x()
250 *s++=xdigits[x]|(t&32); in fmt_fp()
/third_party/musl/src/stdio/
Dvfprintf.c149 static const char xdigits[16] = { variable
155 for (; x; x>>=4) *--s = xdigits[(x&15)]|lower; in fmt_x()
245 *s++=xdigits[x]|(t&32); in fmt_fp()
/third_party/musl/porting/linux/user/src/stdio/
Dvfprintf.c158 static const char xdigits[16] = { variable
164 for (; x; x>>=4) *--s = xdigits[(x&15)]|lower; in fmt_x()
254 *s++=xdigits[x]|(t&32); in fmt_fp()
/third_party/musl/porting/liteos_m/kernel/src/stdio/
Dvfprintf.c154 static const char xdigits[16] = { variable
160 for (; x; x>>=4) *--s = xdigits[(x&15)]|lower; in fmt_x()
251 *s++=xdigits[x]|(t&32); in fmt_fp()