| /lib/liblwip/src/netif/ppp/ |
| D | pppdebug.h | 53 #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 …]
|
| D | md5.c | 83 #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 …]
|
| D | ppp.c | 705 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/ |
| D | sockets.h | 346 #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 …]
|
| D | tcp_impl.h | 93 #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
|
| D | def.h | 52 #define LWIP_MAKE_U16(a, b) ((a << 8) | b) argument 54 #define LWIP_MAKE_U16(a, b) ((b << 8) | a)
|
| D | api_msg.h | 71 struct netbuf *b; member
|
| /sys/fs/o2fs/ |
| D | o2fs.c | 145 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/ |
| D | console.c | 153 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/ |
| D | ip_addr.h | 139 #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) | \
|
| D | inet.h | 67 #define IN_CLASSB(b) IP_CLASSB(b) argument
|
| /lib/liblwip/src/include/ipv6/lwip/ |
| D | ip_addr.h | 71 #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/ |
| D | api_msg.c | 1130 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 …]
|
| D | api_lib.c | 577 msg.msg.msg.b = buf; in netconn_send()
|
| /sys/amd64/include/ |
| D | amd64op.h | 88 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/ |
| D | support.S | 33 jnz 1b
|
| D | mpboot.S | 132 jmp 1b
|
| D | kernel.lds | 57 .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) } 159 *(.bss .bss.* .gnu.linkonce.b.*)
|
| /sys/dev/x86/ |
| D | ide.c | 398 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/ |
| D | savannah.txt | 120 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/ |
| D | sys_arch.c | 60 #define UMAX(a, b) ((a) > (b) ? (a) : (b)) argument
|
| /lib/liblwip/src/core/ |
| D | pbuf.c | 1119 u8_t b = ((u8_t*)s2)[i]; in pbuf_memcmp() local 1120 if (a != b) { in pbuf_memcmp()
|