Home
last modified time | relevance | path

Searched refs:in_range (Results 1 – 5 of 5) sorted by relevance

/AliOS-Things-master/components/netmgr/netdev/src/
A Dnetdev_ipaddr.c9 #define in_range(c, lo, up) ((uint8_t)c >= lo && (uint8_t)c <= up) macro
10 #define isprint(c) in_range(c, 0x20, 0x7f)
11 #define isdigit(c) in_range(c, '0', '9')
12 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
13 #define islower(c) in_range(c, 'a', 'z')
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv6/
A Dip6_addr.c54 #define in_range(c, lo, up) ((u8_t)c >= lo && (u8_t)c <= up) macro
55 #define isprint(c) in_range(c, 0x20, 0x7f)
56 #define isdigit(c) in_range(c, '0', '9')
57 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
58 #define islower(c) in_range(c, 'a', 'z')
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/
A Dstrproc.h19 #define in_range(c, lo, up) ((u8)c >= lo && (u8)c <= up) macro
20 #define isprint(c) in_range(c, 0x20, 0x7f)
21 #define isdigit(c) in_range(c, '0', '9')
22 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv4/
A Dip4_addr.c117 #define in_range(c, lo, up) ((u8_t)c >= lo && (u8_t)c <= up) macro
118 #define isprint(c) in_range(c, 0x20, 0x7f)
119 #define isdigit(c) in_range(c, '0', '9')
120 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
121 #define islower(c) in_range(c, 'a', 'z')
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/api/platform/
A Dstdlib_patch.c47 #define in_range(c, lo, up) ((u8)c >= lo && (u8)c <= up) macro
48 #define isprint(c) in_range(c, 0x20, 0x7f)
49 #define isdigit(c) in_range(c, '0', '9')
50 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
51 #define islower(c) in_range(c, 'a', 'z')

Completed in 7 milliseconds