taglinefilesource code
BUF_SIZE39net/unix.c#define UN_BUF_AVAIL(UPD) (((UPD)->bp_head - (UPD)->bp_tail) & (BUF_SIZE-1))
BUF_SIZE40net/unix.c#define UN_BUF_SPACE(UPD) ((BUF_SIZE-1) - UN_BUF_AVAIL(UPD))
BUF_SIZE584net/unix.cif (cando > (part = BUF_SIZE - upd->bp_tail))
BUF_SIZE590net/unix.cupd->bp_tail = (upd->bp_tail + cando) & (BUF_SIZE-1);
BUF_SIZE662net/unix.cif (cando > (part = BUF_SIZE - pupd->bp_head))
BUF_SIZE668net/unix.cpupd->bp_head = (pupd->bp_head + cando) & (BUF_SIZE-1);