Home
last modified time | relevance | path

Searched refs:isdigit (Results 1 – 13 of 13) sorted by relevance

/components/net/lwip/lwip-2.0.3/src/core/ipv4/
A Dip4_addr.c119 #define isdigit(c) in_range(c, '0', '9') macro
120 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
170 if (!isdigit(c)) { in ip4addr_aton()
185 if (isdigit(c)) { in ip4addr_aton()
/components/net/lwip/lwip-1.4.1/src/core/ipv4/
A Dip_addr.c116 #define isdigit(c) in_range(c, '0', '9') macro
117 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
167 if (!isdigit(c)) in ipaddr_aton()
180 if (isdigit(c)) { in ipaddr_aton()
/components/finsh/
A Dmsh_parse.c35 if (!isdigit((int)(*strvalue))) in msh_isint()
93 value += isdigit(c) ? c - '0' : c - 'a' + 10; in msh_strtohex()
/components/net/netdev/src/
A Dnetdev_ipaddr.c18 #define isdigit(c) in_range(c, '0', '9') macro
19 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
54 if (!isdigit(c)) in netdev_ip4addr_aton()
75 if (isdigit(c)) in netdev_ip4addr_aton()
360 … (isdigit(*s) ? (uint32_t)(*s - '0') : (uint32_t)(10 + (islower(*s) ? *s - 'a' : *s - 'A'))); in netdev_ip6addr_aton()
/components/net/lwip/lwip-2.0.3/src/core/ipv6/
A Dip6_addr.c56 #define isdigit(c) in_range(c, '0', '9') macro
57 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
135 (isdigit(*s) ? (u32_t)(*s - '0') : in ip6addr_aton()
/components/net/lwip/lwip-2.1.2/src/include/lwip/
A Darch.h231 #define lwip_isdigit(c) isdigit((unsigned char)(c))
/components/net/lwip/lwip-2.0.3/src/netif/ppp/
A Dutils.c183 while (isdigit(c)) { in ppp_vslprintf()
195 while (isdigit(c)) { in ppp_vslprintf()
/components/libc/
A Dposix-info.txt8 + isdigit()
/components/legacy/fdt/src/
A Ddtb_base.c38 while (isxdigit((int)*cp) && (value = isdigit((int)*cp) ? *cp-'0' : (islower((int)*cp) in simple_strtoul()
/components/net/at/at_socket/
A Dat_socket.c1365 while (isdigit(*nptr)) in ipstr_atol()
/components/net/lwip/lwip-1.4.1/
A DCHANGELOG2871 No need to test isascii(c) before isdigit(c) or isxdigit(c).
/components/net/lwip/lwip-2.0.3/
A DCHANGELOG3827 No need to test isascii(c) before isdigit(c) or isxdigit(c).
/components/net/lwip/lwip-2.1.2/
A DCHANGELOG4080 No need to test isascii(c) before isdigit(c) or isxdigit(c).

Completed in 909 milliseconds