Home
last modified time | relevance | path

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

12

/lib/liblwip/src/core/ipv4/
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
/sys/amd64/
Dcritical.c19 int c; in Critical_Init() local
53 int c; in Debug_Critical() local
Dmachine.c57 int c = CPU(); in Machine_GDTInit() local
96 int c = CPU(); in Machine_TSSInit() local
Dmp.c142 int c; in MP_CrossCallTrap() local
235 int c; in Debug_CPUS() local
/lib/liblwip/src/include/lwip/
Dsockets.h346 #define accept(a,b,c) lwip_accept(a,b,c) argument
347 #define bind(a,b,c) lwip_bind(a,b,c) argument
350 #define connect(a,b,c) lwip_connect(a,b,c) argument
351 #define getsockname(a,b,c) lwip_getsockname(a,b,c) argument
352 #define getpeername(a,b,c) lwip_getpeername(a,b,c) argument
353 #define setsockopt(a,b,c,d,e) lwip_setsockopt(a,b,c,d,e) argument
354 #define getsockopt(a,b,c,d,e) lwip_getsockopt(a,b,c,d,e) argument
356 #define recv(a,b,c,d) lwip_recv(a,b,c,d) argument
357 #define recvfrom(a,b,c,d,e,f) lwip_recvfrom(a,b,c,d,e,f) argument
358 #define send(a,b,c,d) lwip_send(a,b,c,d) argument
[all …]
Dapi.h197 #define API_EVENT(c,e,l) if (c->callback) { \ argument
213 #define netconn_new_with_callback(t, c) netconn_new_with_proto_and_callback(t, 0, c) argument
223 #define netconn_peer(c,i,p) netconn_getaddr(c,i,p,0) argument
224 #define netconn_addr(c,i,p) netconn_getaddr(c,i,p,1) argument
/lib/liblwip/src/netif/
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
/sys/kern/
Dspinlock.c35 int c; local
154 int c = CPU(); in Debug_LockStack() local
Dlibc.c11 strchr(const char *s, int c) in strchr()
121 memset(void *dst, int c, size_t length) in memset()
Dprintf.c202 void consoleputc(int c,void* handle) in consoleputc()
Ddebug.c69 unsigned char c = (unsigned char)data[ixc]; in Debug_PrintHex() local
/lib/liblwip/src/netif/ppp/
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
Dchpms.c248 int j, c; in Expand() local
267 unsigned int c; in Collapse() local
Dppp_impl.h155 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ fcstab[((fcs) ^ (c)) & 0xff]) argument
178 #define GETCHAR(c, cp) { \ argument
181 #define PUTCHAR(c, cp) { \ argument
Dppp.c158 #define ESCAPE_P(accm, c) ((accm)[(c) >> 3] & pppACCMMask[c & 0x07]) argument
706 int c; in nPut() local
733 pppAppend(u_char c, struct pbuf *nb, ext_accm *outACCM) in pppAppend()
818 u_char c; in pppifOutput() local
1077 u_char c; in pppWrite() local
/sys/dev/x86/
Ddebugcons.c17 void DebugConsole_Putc(short c) in DebugConsole_Putc()
Dvgacons.c115 void VGA_Putc(short c) in VGA_Putc()
/lib/liblwip/src/include/ipv6/lwip/
Dip_addr.h71 #define IP6_ADDR(ipaddr, a,b,c,d,e,f,g,h) do { (ipaddr)->addr[0] = htonl((u32_t)((a & 0xffff) << 16… argument
/lib/libc/
Dstring.c11 strchr(const char *s, int c) in strchr()
164 memset(void *dst, int c, size_t length) in memset()
Dprintf.c207 static void fileputc(int c, void* handle) in fileputc()
242 static void strputc(int c, void *handle) in strputc()
/lib/liblwip/src/include/ipv4/lwip/
Dicmp.h96 #define ICMPH_CODE_SET(hdr, c) ((hdr)->code = (c)) argument
Dip_addr.h139 #define IP4_ADDR(ipaddr, a,b,c,d) \ argument
147 #define IP4_ADDR(ipaddr, a,b,c,d) \ argument
Dinet.h73 #define IN_CLASSC(c) IP_CLASSC(c) argument
/sys/dev/
Dconsole.c158 char c = Console_Getc(); in Console_Read() local
/lib/liblwip/src/core/
Dtcp_in.c1544 u16_t c, max_c; in tcp_parseopt() local

12