Lines Matching defs:bufhdr
366 typedef struct bufhdr {
367 struct bufhdr *head;
368 struct bufhdr *next;
369 } bufhdr;
373 bufhdr inodebuf = { NULL, NULL };
374 bufhdr cgsumbuf = { NULL, NULL };
390 static char *getbuf(bufhdr *bufhead, int size);
2936 getbuf(bufhdr *bufhead, int size)
2938 bufhdr *pbuf;
2939 bufhdr *prev;
2952 bufhdrsize = (sizeof (bufhdr) + 15) & ~15;
2968 pbuf = (bufhdr *)calloc(max_bufs, buf_size);
2980 pbuf = (bufhdr *)((char *)pbuf + buf_size);
3014 bufhdr *pbuf;
3015 bufhdr *bufhead;
3020 pbuf = (bufhdr *)(buf - bufhdrsize);