Searched refs:isxdigit (Results 1 – 13 of 13) sorted by relevance
| /components/net/lwip/lwip-2.0.3/src/core/ipv6/ |
| A D | ip6_addr.c | 57 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) macro 84 } else if (!isxdigit(*s)) { in ip6addr_aton() 132 } else if (isxdigit(*s)) { in ip6addr_aton()
|
| /components/net/netdev/src/ |
| A D | netdev_ipaddr.c | 19 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) macro 80 else if (base == 16 && isxdigit(c)) in netdev_ip4addr_aton() 292 else if (!isxdigit(*s)) in netdev_ip6addr_aton() 356 else if (isxdigit(*s)) in netdev_ip6addr_aton()
|
| /components/net/lwip/lwip-2.0.3/src/core/ipv4/ |
| A D | ip4_addr.c | 120 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) macro 188 } else if (base == 16 && isxdigit(c)) { in ip4addr_aton()
|
| /components/net/lwip/lwip-1.4.1/src/core/ipv4/ |
| A D | ip_addr.c | 117 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) macro 183 } else if (base == 16 && isxdigit(c)) { in ipaddr_aton()
|
| /components/finsh/ |
| A D | msh_parse.c | 69 if (!isxdigit(c)) in msh_ishex()
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/ |
| A D | arch.h | 232 #define lwip_isxdigit(c) isxdigit((unsigned char)(c))
|
| /components/legacy/fdt/src/ |
| A D | dtb_base.c | 17 if (tolower(s[1]) == 'x' && isxdigit((int)s[2])) in _parse_integer_fixup_radix() 38 while (isxdigit((int)*cp) && (value = isdigit((int)*cp) ? *cp-'0' : (islower((int)*cp) in simple_strtoul()
|
| /components/libc/ |
| A D | posix-info.txt | 15 + isxdigit()
|
| /components/net/lwip/lwip-2.1.2/src/netif/ppp/ |
| A D | multilink.c | 592 for (p = str; isxdigit(*p); ++p)
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/ |
| A D | multilink.c | 592 for (p = str; isxdigit(*p); ++p)
|
| /components/net/lwip/lwip-1.4.1/ |
| A D | CHANGELOG | 2871 No need to test isascii(c) before isdigit(c) or isxdigit(c).
|
| /components/net/lwip/lwip-2.0.3/ |
| A D | CHANGELOG | 3827 No need to test isascii(c) before isdigit(c) or isxdigit(c).
|
| /components/net/lwip/lwip-2.1.2/ |
| A D | CHANGELOG | 4080 No need to test isascii(c) before isdigit(c) or isxdigit(c).
|
Completed in 26 milliseconds