tag | line | file | source code |
---|---|---|---|
BUF_SIZE | 39 | net/unix.c | #define UN_BUF_AVAIL(UPD) (((UPD)->bp_head - (UPD)->bp_tail) & (BUF_SIZE-1)) |
BUF_SIZE | 40 | net/unix.c | #define UN_BUF_SPACE(UPD) ((BUF_SIZE-1) - UN_BUF_AVAIL(UPD)) |
BUF_SIZE | 429 | net/unix.c | if (cando > (part = BUF_SIZE - upd->bp_tail)) |
BUF_SIZE | 435 | net/unix.c | upd->bp_tail = (upd->bp_tail + cando) & (BUF_SIZE-1); |
BUF_SIZE | 507 | net/unix.c | if (cando > (part = BUF_SIZE - pupd->bp_head)) |
BUF_SIZE | 513 | net/unix.c | pupd->bp_head = (pupd->bp_head + cando) & (BUF_SIZE-1); |