Lines Matching refs:bufhdr
371 typedef struct bufhdr { struct
372 struct bufhdr *head; argument
373 struct bufhdr *next; argument
374 } bufhdr; typedef
378 bufhdr inodebuf = { NULL, NULL };
379 bufhdr cgsumbuf = { NULL, NULL };
395 static char *getbuf(bufhdr *bufhead, int size);
2961 getbuf(bufhdr *bufhead, int size) in getbuf()
2963 bufhdr *pbuf; in getbuf()
2964 bufhdr *prev; in getbuf()
2977 bufhdrsize = (sizeof (bufhdr) + 15) & ~15; in getbuf()
2993 pbuf = (bufhdr *)calloc(max_bufs, buf_size); in getbuf()
3005 pbuf = (bufhdr *)((char *)pbuf + buf_size); in getbuf()
3039 bufhdr *pbuf; in freebuf()
3040 bufhdr *bufhead; in freebuf()
3045 pbuf = (bufhdr *)(buf - bufhdrsize); in freebuf()