Home
last modified time | relevance | path

Searched refs:b (Results 1 – 22 of 22) sorted by relevance

/lib/liblwip/src/netif/ppp/
Dpppdebug.h53 #define AUTHDEBUG(a, b) LWIP_DEBUGF(a, b) argument
54 #define IPCPDEBUG(a, b) LWIP_DEBUGF(a, b) argument
55 #define UPAPDEBUG(a, b) LWIP_DEBUGF(a, b) argument
56 #define LCPDEBUG(a, b) LWIP_DEBUGF(a, b) argument
57 #define FSMDEBUG(a, b) LWIP_DEBUGF(a, b) argument
58 #define CHAPDEBUG(a, b) LWIP_DEBUGF(a, b) argument
59 #define PPPDEBUG(a, b) LWIP_DEBUGF(a, b) argument
63 #define AUTHDEBUG(a, b) argument
64 #define IPCPDEBUG(a, b) argument
65 #define UPAPDEBUG(a, b) argument
[all …]
Dmd5.c83 #define FF(a, b, c, d, x, s, ac) \ argument
84 {(a) += F ((b), (c), (d)) + (x) + (u32_t)(ac); \
86 (a) += (b); \
88 #define GG(a, b, c, d, x, s, ac) \ argument
89 {(a) += G ((b), (c), (d)) + (x) + (u32_t)(ac); \
91 (a) += (b); \
93 #define HH(a, b, c, d, x, s, ac) \ argument
94 {(a) += H ((b), (c), (d)) + (x) + (u32_t)(ac); \
96 (a) += (b); \
98 #define II(a, b, c, d, x, s, ac) \ argument
[all …]
Dppp.c705 struct pbuf *b; in nPut() local
708 for(b = nb; b != NULL; b = b->next) { in nPut()
709 if((c = sio_write(pc->fd, b->payload, b->len)) != b->len) { in nPut()
711 … incomplete sio_write(fd:%"SZT_F", len:%d, c: 0x%"X8_F") c = %d\n", (size_t)pc->fd, b->len, c, c)); in nPut()
1569 struct pbuf *q, *b; in pppSingleBuf() local
1583 for(b = p, pl = q->payload; b != NULL; b = b->next) { in pppSingleBuf()
1584 MEMCPY(pl, b->payload, b->len); in pppSingleBuf()
1585 pl += b->len; in pppSingleBuf()
/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
348 #define shutdown(a,b) lwip_shutdown(a,b) 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
355 #define listen(a,b) lwip_listen(a,b) argument
356 #define recv(a,b,c,d) lwip_recv(a,b,c,d) argument
[all …]
Dtcp_impl.h93 #define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) argument
94 #define TCP_SEQ_LEQ(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) <= 0) argument
95 #define TCP_SEQ_GT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) > 0) argument
96 #define TCP_SEQ_GEQ(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) >= 0) argument
99 #define TCP_SEQ_BETWEEN(a,b,c) ((c)-(b) >= (a)-(b))
101 #define TCP_SEQ_BETWEEN(a,b,c) (TCP_SEQ_GEQ(a,b) && TCP_SEQ_LEQ(a,c)) argument
Ddef.h52 #define LWIP_MAKE_U16(a, b) ((a << 8) | b) argument
54 #define LWIP_MAKE_U16(a, b) ((b << 8) | a)
Dapi_msg.h71 struct netbuf *b; member
/sys/fs/o2fs/
Do2fs.c145 for (int b = 0; b < fs->blksize; b++) { in O2FSBAlloc() local
147 if (((bitmap[b] >> bi) & 0x1) == 0) { in O2FSBAlloc()
149 bitmap[b] |= (1 << bi); in O2FSBAlloc()
160 uint64_t blk = fs->blksize*8*i + 8*b + bi; in O2FSBAlloc()
326 O2FSResolveBuf(VNode *vn, uint64_t b, BufCacheEntry **dentp) in O2FSResolveBuf() argument
333 status = BufCache_Read(vn->disk, bn->direct[b].offset, &dent); in O2FSResolveBuf()
425 uint64_t b; in O2FS_Lookup() local
429 for (b = 0; b < blocks; b++) { in O2FS_Lookup()
436 status = O2FSResolveBuf(dn, b, &entry); in O2FS_Lookup()
534 uint64_t b = off / sb->blockSize; in O2FS_Read() local
[all …]
/sys/dev/
Dconsole.c153 uintptr_t b = (uintptr_t)buf; in Console_Read() local
160 Copy_Out(&c, b+i, 1); in Console_Read()
170 uintptr_t b = (uintptr_t)buf; in Console_Write() local
176 Copy_In(b + nbytes, &kbuf, chunksz); in Console_Write()
/lib/liblwip/src/include/ipv4/lwip/
Dip_addr.h139 #define IP4_ADDR(ipaddr, a,b,c,d) \ argument
141 ((u32_t)((b) & 0xff) << 16) | \
147 #define IP4_ADDR(ipaddr, a,b,c,d) \ argument
150 ((u32_t)((b) & 0xff) << 8) | \
Dinet.h67 #define IN_CLASSB(b) IP_CLASSB(b) argument
/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/liblwip/src/api/
Dapi_msg.c1130 if (ip_addr_isany(&msg->msg.b->addr)) {
1131 msg->err = raw_send(msg->conn->pcb.raw, msg->msg.b->p);
1133 msg->err = raw_sendto(msg->conn->pcb.raw, msg->msg.b->p, &msg->msg.b->addr);
1140 if (ip_addr_isany(&msg->msg.b->addr)) {
1141 msg->err = udp_send_chksum(msg->conn->pcb.udp, msg->msg.b->p,
1142 msg->msg.b->flags & NETBUF_FLAG_CHKSUM, msg->msg.b->toport_chksum);
1144 msg->err = udp_sendto_chksum(msg->conn->pcb.udp, msg->msg.b->p,
1145 &msg->msg.b->addr, msg->msg.b->port,
1146 msg->msg.b->flags & NETBUF_FLAG_CHKSUM, msg->msg.b->toport_chksum);
1149 if (ip_addr_isany(&msg->msg.b->addr)) {
[all …]
Dapi_lib.c577 msg.msg.msg.b = buf; in netconn_send()
/sys/amd64/include/
Damd64op.h88 uint32_t a, b, c, d; in cpuid() local
91 : "=a" (a), "=b" (b), "=c" (c), "=d" (d) in cpuid()
97 *ebx = b; in cpuid()
/sys/amd64/
Dsupport.S33 jnz 1b
Dmpboot.S132 jmp 1b
Dkernel.lds57 .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
159 *(.bss .bss.* .gnu.linkonce.b.*)
/sys/dev/x86/
Dide.c398 uint8_t *b = buf + sectors * IDE_SECTOR_SIZE; in IDE_ReadOne() local
399 insw(ide->base + IDE_DATAPORT, b, 256); in IDE_ReadOne()
472 uint8_t *b = buf + sectors * IDE_SECTOR_SIZE; in IDE_WriteOne() local
473 outsw(ide->base + IDE_DATAPORT, b, 256); in IDE_WriteOne()
/lib/liblwip/doc/
Dsavannah.txt120 gpg -b lwip-0.6.3.tar.gz
121 gpg -b lwip-0.6.3.tar.bz2
122 gpg -b lwip-0.6.3.zip
/lib/liblwip/src/arch/
Dsys_arch.c60 #define UMAX(a, b) ((a) > (b) ? (a) : (b)) argument
/lib/liblwip/src/core/
Dpbuf.c1119 u8_t b = ((u8_t*)s2)[i]; in pbuf_memcmp() local
1120 if (a != b) { in pbuf_memcmp()