Lines Matching defs:lbp
137 register char *lbp; /* Pointer into stack buffer */
143 if (lbp >= &linebuf[128]) { \
144 _write(fd, linebuf, lbp - &linebuf[0]); \
145 lbp = &linebuf[0]; \
147 *lbp++ = (c); \
150 lbp = &linebuf[0];
154 _write(fd, linebuf, lbp - &linebuf[0]);
174 lbp = printn(fd, va_arg(adx, u_long), b, &linebuf[0], lbp,
204 printn(fd, n, b, linebufp, lbp, linebufend)
209 register char *lbp; /* Current offset in buffer */
217 if (lbp >= linebufend) { \
218 _write(fd, linebufp, lbp - linebufp); \
219 lbp = linebufp; \
221 *lbp++ = (c); \
236 return (lbp);