Home
last modified time | relevance | path

Searched refs:islower (Results 1 – 7 of 7) sorted by relevance

/components/net/netdev/src/
A Dnetdev_ipaddr.c20 #define islower(c) in_range(c, 'a', 'z') macro
82 val = (val << 4) | (uint32_t) (c + 10 - (islower(c) ? 'a' : 'A')); 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/ipv4/
A Dip4_addr.c121 #define islower(c) in_range(c, 'a', 'z') macro
189 val = (val << 4) | (u32_t)(c + 10 - (islower(c) ? 'a' : 'A')); in ip4addr_aton()
/components/net/lwip/lwip-2.0.3/src/core/ipv6/
A Dip6_addr.c58 #define islower(c) in_range(c, 'a', 'z') macro
136 (u32_t)(10 + (islower(*s) ? *s - 'a' : *s - 'A'))); in ip6addr_aton()
/components/net/lwip/lwip-1.4.1/src/core/ipv4/
A Dip_addr.c118 #define islower(c) in_range(c, 'a', 'z') macro
184 val = (val << 4) | (int)(c + 10 - (islower(c) ? 'a' : 'A')); in ipaddr_aton()
/components/net/lwip/lwip-2.1.2/src/include/lwip/
A Darch.h233 #define lwip_islower(c) islower((unsigned char)(c))
/components/libc/
A Dposix-info.txt10 + islower()
/components/legacy/fdt/src/
A Ddtb_base.c38 while (isxdigit((int)*cp) && (value = isdigit((int)*cp) ? *cp-'0' : (islower((int)*cp) in simple_strtoul()

Completed in 13 milliseconds