Home
last modified time | relevance | path

Searched refs:x (Results 1 – 24 of 24) sorted by relevance

/lib/liblwip/src/include/lwip/
Ddef.h43 #define LWIP_MAX(x , y) (((x) > (y)) ? (x) : (y)) argument
44 #define LWIP_MIN(x , y) (((x) < (y)) ? (x) : (y)) argument
77 #define htons(x) lwip_htons(x) argument
78 #define ntohs(x) lwip_ntohs(x) argument
79 #define htonl(x) lwip_htonl(x) argument
80 #define ntohl(x) lwip_ntohl(x) argument
84 #define lwip_htons(x) (x) argument
85 #define lwip_ntohs(x) (x) argument
86 #define lwip_htonl(x) (x) argument
87 #define lwip_ntohl(x) (x) argument
[all …]
Dstats.h153 #define STATS_INC(x) ++lwip_stats.x argument
154 #define STATS_DEC(x) --lwip_stats.x argument
155 #define STATS_INC_USED(x, y) do { lwip_stats.x.used += y; \ argument
156 if (lwip_stats.x.max < lwip_stats.x.used) { \
157 lwip_stats.x.max = lwip_stats.x.used; \
162 #define STATS_INC(x)
163 #define STATS_DEC(x)
164 #define STATS_INC_USED(x)
168 #define TCP_STATS_INC(x) STATS_INC(x) argument
171 #define TCP_STATS_INC(x) argument
[all …]
Darch.h68 #define PACK_STRUCT_FIELD(x) x argument
73 #define LWIP_UNUSED_ARG(x) (void)x argument
Dsockets.h244 #define _IO(x,y) (IOC_VOID|((x)<<8)|(y)) argument
246 #define _IOR(x,y,t) (IOC_OUT|(((long)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y)) argument
248 #define _IOW(x,y,t) (IOC_IN|(((long)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y)) argument
Derr.h78 #define lwip_strerr(x) "" argument
/lib/liblwip/test/unit/
Dlwip_check.h11 #define EXPECT(x) fail_unless(x) argument
12 #define EXPECT_RET(x) do { fail_unless(x); if(!(x)) { return; }} while(0) argument
13 #define EXPECT_RETX(x, y) do { fail_unless(x); if(!(x)) { return y; }} while(0) argument
14 #define EXPECT_RETNULL(x) EXPECT_RETX(x, NULL) argument
/sys/include/
Delf_generic.h53 #define __elfN(x) __CONCAT(__CONCAT(__CONCAT(elf,__ELF_WORD_SIZE),_),x) argument
54 #define __ElfN(x) __CONCAT(__CONCAT(__CONCAT(Elf,__ELF_WORD_SIZE),_),x) argument
55 #define __ELFN(x) __CONCAT(__CONCAT(__CONCAT(ELF,__ELF_WORD_SIZE),_),x) argument
56 #define __ElfType(x) typedef __ElfN(x) __CONCAT(Elf_,x) argument
Delf_common.h546 #define VER_DEF_IDX(x) VER_NDX(x) argument
554 #define VER_NEED_IDX(x) VER_NDX(x) argument
561 #define VER_NDX(x) ((x) & ~(1u << 15)) argument
Dqueue.h120 #define TRASHIT(x) do {(x) = (void *)-1;} while (0) argument
143 #define TRASHIT(x) argument
/lib/liblwip/src/include/arch/
Dcc.h76 #define PACK_STRUCT_FIELD(x) x argument
85 #define LWIP_PLATFORM_DIAG(x) do {printf x;} while(0) argument
87 #define LWIP_PLATFORM_ASSERT(x) do {printf("Assertion \"%s\" failed at line %d in %s\n", \ argument
88 x, __LINE__, __FILE__); fflush(NULL); abort();} while(0)
Dperf.h39 #define PERF_STOP(x) __asm__(".byte 0x0f, 0x31" : "=a" (__c2l), "=d" (__c2h)); \ argument
40 perf_print(__c1l, __c1h, __c2l, __c2h, x);}
50 #define PERF_STOP(x) /* null definition */ argument
/lib/liblwip/src/netif/ppp/
Dmd5.c73 #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) argument
74 #define G(x, y, z) (((x) & (z)) | ((y) & (~z))) argument
75 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
76 #define I(x, y, z) ((y) ^ ((x) | (~z))) argument
79 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument
83 #define FF(a, b, c, d, x, s, ac) \ argument
84 {(a) += F ((b), (c), (d)) + (x) + (u32_t)(ac); \
88 #define GG(a, b, c, d, x, s, ac) \ argument
89 {(a) += G ((b), (c), (d)) + (x) + (u32_t)(ac); \
93 #define HH(a, b, c, d, x, s, ac) \ argument
[all …]
Dipcp.c168 #define CODENAME(x) ((x) == CONFACK ? "ACK" : \ argument
169 (x) == CONFNAK ? "NAK" : "REJ")
1375 #define net_short(x) (((x)[0] << 8) + (x)[1]) argument
1376 #define get_iphl(x) (((unsigned char *)(x))[0] & 0xF) argument
1377 #define get_ipoff(x) net_short((unsigned char *)(x) + 6) argument
1378 #define get_ipproto(x) (((unsigned char *)(x))[9]) argument
1379 #define get_tcpoff(x) (((unsigned char *)(x))[12] >> 4) argument
1380 #define get_tcpflags(x) (((unsigned char *)(x))[13]) argument
Dchap.c853 u_char x; in ChapPrintPkt() local
886 GETCHAR(x, p); in ChapPrintPkt()
887 printer(arg, "%.2x", x); in ChapPrintPkt()
897 GETCHAR(x, p); in ChapPrintPkt()
898 printer(arg, " %.2x", x); in ChapPrintPkt()
Dlcp.c202 #define CODENAME(x) ((x) == CONFACK ? "ACK" : (x) == CONFNAK ? "NAK" : "REJ") argument
/sys/amd64/include/
Damd64.h32 #define ROUNDUP_PGSIZE(x) (((x) + LARGE_PGSIZE - 1) & ~LARGE_PGMASK) argument
33 #define ROUNDDOWN_PGSIZE(x) ((x) & ~LARGE_PGMASK) argument
/lib/liblwip/src/core/
Dmemp.c102 #define MEMP_ALIGN_SIZE(x) (LWIP_MEM_ALIGN_SIZE(x) + MEMP_SANITY_REGION_AFTER_ALIGNED) argument
111 #define MEMP_ALIGN_SIZE(x) (LWIP_MEM_ALIGN_SIZE(x)) argument
121 #define MEMP_ALIGN_SIZE(x) (LWIP_MEM_ALIGN_SIZE(x)) argument
/lib/liblwip/doc/
Dsys_arch.txt229 PACK_STRUCT_FIELD(x)
235 LWIP_PLATFORM_DIAG(x) - non-fatal, print a message.
236 LWIP_PLATFORM_ASSERT(x) - fatal, print message and abandon execution.
241 SYS_ARCH_DECL_PROTECT(x) - declare a protection state variable.
242 SYS_ARCH_PROTECT(x) - enter protection mode.
243 SYS_ARCH_UNPROTECT(x) - leave protection mode.
256 PERF_STOP(x) - stop measuring something, and record the result.
Drawapi.txt474 #define LWIP_PLATFORM_HTONS(x) <your_htons>
475 #define LWIP_PLATFORM_HTONL(x) <your_htonl>
/sys/amd64/
Ddisasm.c122 #define op1(x) (x) argument
123 #define op2(x,y) ((x)|((y)<<8)) argument
124 #define op3(x,y,z) ((x)|((y)<<8)|((z)<<16)) argument
/lib/liblwip/test/unit/tcp/
Dtest_tcp_oos.c20 #define EXPECT_OOSEQ(x) EXPECT(x) argument
22 #define EXPECT_OOSEQ(x) argument
/lib/liblwip/
DUPGRADING129 * Merged pppd to v2.3.11 (including some backported bugfixes from 2.4.x)
DCHANGELOG903 bugfix backports from 2.4.x.
2000 * arch.h, api_msg.c, dhcp.c, msg_in.c, sockets.c: Introduced #define LWIP_UNUSED_ARG(x)
3063 (0.5.x) This file has been unmaintained up to 0.6.1. All changes are
/docs/
DDoxyfile20 # doxygen -x [configFile]
1948 # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
1949 # 14 inches) and executive (7.25 x 10.5 inches).