Lines Matching refs:bdesc
113 struct bdesc { struct
123 static struct bdesc *bufp; /* buffer descriptors */ argument
124 static struct bdesc **current; /* output buffer to fill */
177 static void checkpoint(struct bdesc *, int);
230 + (((size_t)sizeof (struct bdesc)) * NBUF * ntrec) in alloctape()
235 + (size_t)sizeof (struct bdesc **) in alloctape()
255 bufp = (struct bdesc *)(obuf + NBUF*writesize); in alloctape()
259 current = (struct bdesc **)&bufp[NBUF*ntrec]; in alloctape()
325 struct bdesc *bp; in bufclear()
1932 struct bdesc *last = in dowrite()
1934 struct bdesc *bp = bufp; /* current buf in tape block */ in dowrite()
1935 struct bdesc *begin = bufp; /* first buf of tape block */ in dowrite()
1936 struct bdesc *end = bufp + (ntrec-1); /* last buf of tape block */ in dowrite()
2152 checkpoint(struct bdesc *bp, int cmd) in checkpoint()