Searched refs:islower (Results 1 – 7 of 7) sorted by relevance
20 #define islower(c) in_range(c, 'a', 'z') macro82 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()
121 #define islower(c) in_range(c, 'a', 'z') macro189 val = (val << 4) | (u32_t)(c + 10 - (islower(c) ? 'a' : 'A')); in ip4addr_aton()
58 #define islower(c) in_range(c, 'a', 'z') macro136 (u32_t)(10 + (islower(*s) ? *s - 'a' : *s - 'A'))); in ip6addr_aton()
118 #define islower(c) in_range(c, 'a', 'z') macro184 val = (val << 4) | (int)(c + 10 - (islower(c) ? 'a' : 'A')); in ipaddr_aton()
233 #define lwip_islower(c) islower((unsigned char)(c))
10 + islower()
38 while (isxdigit((int)*cp) && (value = isdigit((int)*cp) ? *cp-'0' : (islower((int)*cp) in simple_strtoul()
Completed in 13 milliseconds