/third_party/node/deps/cares/src/lib/ |
D | inet_net_pton.c | 63 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/ |
D | inet_pton.c | 177 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/ |
D | inet.c | 223 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/ |
D | inet.c | 223 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/ |
D | size.c | 324 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/ |
D | getnameinfo.c | 36 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/ |
D | getnameinfo.c | 36 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/ |
D | getnameinfo.c | 43 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/ |
D | backport-001-CVE-2023-31130.patch | 68 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);
|
D | backport-003-CVE-2023-31130.patch | 68 - val |= (pch - xdigits); 69 + val |= (unsigned int)(pch - xdigits);
|
/third_party/toybox/toys/pending/ |
D | host.c | 86 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/ |
D | vfprintf.c | 154 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/ |
D | vfprintf.c | 154 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/ |
D | vfprintf.c | 149 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/ |
D | vfprintf.c | 158 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/ |
D | vfprintf.c | 154 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()
|