Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 100) sorted by relevance

1234

/components/net/lwip/lwip-2.1.2/src/include/lwip/
A Darch.h222 #define lwip_isdigit(c) lwip_in_range((c), '0', '9') argument
224 #define lwip_islower(c) lwip_in_range((c), 'a', 'z') argument
226 #define lwip_isupper(c) lwip_in_range((c), 'A', 'Z') argument
227 #define lwip_tolower(c) (lwip_isupper(c) ? (c) - 'A' + 'a' : c) argument
231 #define lwip_isdigit(c) isdigit((unsigned char)(c)) argument
232 #define lwip_isxdigit(c) isxdigit((unsigned char)(c)) argument
233 #define lwip_islower(c) islower((unsigned char)(c)) argument
234 #define lwip_isspace(c) isspace((unsigned char)(c)) argument
235 #define lwip_isupper(c) isupper((unsigned char)(c)) argument
236 #define lwip_tolower(c) tolower((unsigned char)(c)) argument
[all …]
/components/lwp/terminal/freebsd/
A Dtty_ttydisc.c66 #define CMP_CC(v, c) \ argument
78 #define CTL_ECHO(c, q) \ argument
81 #define CTL_PRINT(c, q) \ argument
85 #define CTL_WHITE(c) ((c) == ' ' || (c) == CTAB) argument
91 #define CTL_UTF8(c) (!!((c)&0x80)) argument
93 #define CTL_UTF8_CONT(c) (((c)&0xc0) == 0x80) argument
371 const char *c = obstart; in ttydisc_findchar() local
749 cc_t c; in ttydisc_reprint() local
798 char c; in ttydisc_rubchar() local
953 char c; in ttydisc_rubword() local
[all …]
/components/net/lwip/lwip-2.0.3/src/core/ipv4/
A Dip4_addr.c117 #define in_range(c, lo, up) ((u8_t)c >= lo && (u8_t)c <= up) argument
118 #define isprint(c) in_range(c, 0x20, 0x7f) argument
119 #define isdigit(c) in_range(c, '0', '9') argument
120 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) argument
121 #define islower(c) in_range(c, 'a', 'z') argument
122 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … argument
159 char c; in ip4addr_aton() local
/components/net/lwip/lwip-2.0.3/src/core/ipv6/
A Dip6_addr.c54 #define in_range(c, lo, up) ((u8_t)c >= lo && (u8_t)c <= up) argument
55 #define isprint(c) in_range(c, 0x20, 0x7f) argument
56 #define isdigit(c) in_range(c, '0', '9') argument
57 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) argument
58 #define islower(c) in_range(c, 'a', 'z') argument
59 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … argument
A Dicmp6.c217 icmp6_dest_unreach(struct pbuf *p, enum icmp6_dur_code c) in icmp6_dest_unreach()
243 icmp6_time_exceeded(struct pbuf *p, enum icmp6_te_code c) in icmp6_time_exceeded()
257 icmp6_param_problem(struct pbuf *p, enum icmp6_pp_code c, u32_t pointer) in icmp6_param_problem()
/components/net/lwip/lwip-1.4.1/src/core/ipv4/
A Dip_addr.c114 #define in_range(c, lo, up) ((u8_t)c >= lo && (u8_t)c <= up) argument
115 #define isprint(c) in_range(c, 0x20, 0x7f) argument
116 #define isdigit(c) in_range(c, '0', '9') argument
117 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) argument
118 #define islower(c) in_range(c, 'a', 'z') argument
119 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … argument
156 char c; in ipaddr_aton() local
/components/net/lwip/lwip-1.4.1/src/include/lwip/
A Dsockets.h348 #define accept(a,b,c) lwip_accept(a,b,c) argument
349 #define bind(a,b,c) lwip_bind(a,b,c) argument
352 #define connect(a,b,c) lwip_connect(a,b,c) argument
358 #define recv(a,b,c,d) lwip_recv(a,b,c,d) argument
360 #define send(a,b,c,d) lwip_send(a,b,c,d) argument
362 #define socket(a,b,c) lwip_socket(a,b,c) argument
363 #define select(a,b,c,d,e) lwip_select(a,b,c,d,e) argument
364 #define ioctlsocket(a,b,c) lwip_ioctl(a,b,c) argument
367 #define read(a,b,c) lwip_read(a,b,c) argument
368 #define write(a,b,c) lwip_write(a,b,c) argument
[all …]
/components/net/netdev/src/
A Dnetdev_ipaddr.c16 #define in_range(c, lo, up) ((uint8_t)c >= lo && (uint8_t)c <= up) argument
17 #define isprint(c) in_range(c, 0x20, 0x7f) argument
18 #define isdigit(c) in_range(c, '0', '9') argument
19 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) argument
20 #define islower(c) in_range(c, 'a', 'z') argument
21 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … argument
42 char c; in netdev_ip4addr_aton() local
/components/libc/compilers/common/
A Dcctype.c15 int isascii(int c) in isascii()
23 int toascii(int c) in toascii()
A Dcstring.c49 char *index(const char* s, int c) in index()
54 char *rindex(const char* s, int c) in rindex()
121 char *strchrnul(const char* s, int c) in strchrnul()
/components/finsh/
A Dmsh_parse.c52 int c; in msh_ishex() local
86 char c = 0; in msh_strtohex() local
/components/dfs/dfs_v1/filesystems/elmfat/
A Dffunicode.c15227 WCHAR c = 0; in ff_uni2oem() local
15249 WCHAR c = 0; in ff_oem2uni() local
15281 WCHAR c = 0, uc; in ff_uni2oem() local
15317 WCHAR c = 0; in ff_oem2uni() local
15364 WCHAR c = 0, uc; in ff_uni2oem() local
15416 WCHAR c = 0; in ff_oem2uni() local
/components/dfs/dfs_v2/filesystems/elmfat/
A Dffunicode.c15227 WCHAR c = 0; in ff_uni2oem() local
15249 WCHAR c = 0; in ff_oem2uni() local
15281 WCHAR c = 0, uc; in ff_uni2oem() local
15317 WCHAR c = 0; in ff_oem2uni() local
15364 WCHAR c = 0, uc; in ff_uni2oem() local
15416 WCHAR c = 0; in ff_oem2uni() local
/components/net/lwip/lwip-1.4.1/src/netif/
A Dslipif.c120 u8_t c; in slipif_output() local
170 slipif_rxbyte(struct netif *netif, u8_t c) in slipif_rxbyte()
267 slipif_rxbyte_input(struct netif *netif, u8_t c) in slipif_rxbyte_input()
289 u8_t c; in slipif_loop_thread() local
382 u8_t c; in slipif_poll() local
/components/net/lwip/lwip-2.1.2/src/core/ipv6/
A Dicmp6.c220 icmp6_dest_unreach(struct pbuf *p, enum icmp6_dur_code c) in icmp6_dest_unreach()
252 icmp6_time_exceeded(struct pbuf *p, enum icmp6_te_code c) in icmp6_time_exceeded()
273 icmp6_time_exceeded_with_addrs(struct pbuf *p, enum icmp6_te_code c, in icmp6_time_exceeded_with_addrs()
292 icmp6_param_problem(struct pbuf *p, enum icmp6_pp_code c, const void *pointer) in icmp6_param_problem()
/components/net/lwip/lwip-2.1.2/src/netif/
A Dslipif.c121 u8_t c; in slipif_output() local
207 slipif_rxbyte(struct netif *netif, u8_t c) in slipif_rxbyte()
310 slipif_rxbyte_input(struct netif *netif, u8_t c) in slipif_rxbyte_input()
332 u8_t c; in slipif_loop_thread() local
428 u8_t c; in slipif_poll() local
/components/net/lwip/lwip-2.0.3/src/netif/
A Dslipif.c121 u8_t c; in slipif_output() local
207 slipif_rxbyte(struct netif *netif, u8_t c) in slipif_rxbyte()
310 slipif_rxbyte_input(struct netif *netif, u8_t c) in slipif_rxbyte_input()
332 u8_t c; in slipif_loop_thread() local
429 u8_t c; in slipif_poll() local
/components/libc/compilers/picolibc/
A Diob.c39 static int __fputc(char c, FILE *file) in __fputc()
63 char c; in __fgetc() local
/components/net/lwip/lwip-1.4.1/src/netif/ppp/
A Dmd5.c83 #define FF(a, b, c, d, x, s, ac) \ argument
88 #define GG(a, b, c, d, x, s, ac) \ argument
93 #define HH(a, b, c, d, x, s, ac) \ argument
98 #define II(a, b, c, d, x, s, ac) \ argument
222 u32_t a = buf[0], b = buf[1], c = buf[2], d = buf[3]; in Transform() local
/components/drivers/usb/cherryusb/platform/blackmagic/
A Dbmp_port_cdc_acm.c226 void gdb_if_putchar(const char c, const bool flush) in gdb_if_putchar()
272 int c; in gdb_if_getchar() local
282 int c = 0; in gdb_if_getchar_to() local
/components/net/lwip/lwip-2.1.2/src/netif/ppp/polarssl/
A Dmd4.c115 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x; a = S(a,s); } in md4_process() argument
138 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x5A827999; a = S(a,s); } in md4_process() argument
161 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x6ED9EBA1; a = S(a,s); } in md4_process() argument
/components/net/lwip/lwip-2.0.3/src/netif/ppp/polarssl/
A Dmd4.c115 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x; a = S(a,s); } in md4_process() argument
138 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x5A827999; a = S(a,s); } in md4_process() argument
161 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x6ED9EBA1; a = S(a,s); } in md4_process() argument
/components/net/lwip/lwip-2.1.2/src/apps/altcp_tls/
A Daltcp_tls_mbedtls_mem.c87 size_t c; member
103 tls_malloc(size_t c, size_t len) in tls_malloc()
/components/net/lwip/lwip-2.0.3/src/core/
A Dip.c83 const char* c; in ipaddr_aton() local
/components/drivers/thermal/
A Dthermal.c192 for (int c = 0; c < map->cells_nr; ++c) in thermal_ofw_setup() local
316 for (int c = 0; c < map->cells_nr; ++c) in rt_thermal_zone_device_unregister() local
727 for (int c = 0; c < map->cells_nr; ++c) in rt_thermal_cooling_device_kick() local
883 for (int c = 0; c < map->cells_nr; ++c, ++id) in list_thermal() local

Completed in 158 milliseconds

1234