Searched refs:_lb (Results 1 - 7 of 7) sorted by relevance

/freebsd-current/lib/libc/stdio/
H A Dfgetln.c53 if (fp->_lb._size >= newsize)
59 if ((p = realloc(fp->_lb._base, newsize)) == NULL)
61 fp->_lb._base = p;
62 fp->_lb._size = newsize;
126 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
143 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
150 ret = (char *)fp->_lb._base;
H A Dfgetwln.c63 if (len * sizeof(wchar_t) >= fp->_lb._size &&
68 *((wchar_t *)fp->_lb._base + len++) = wc;
81 ret = (wchar_t *)fp->_lb._base;
H A Dlocal.h121 #define HASLB(fp) ((fp)->_lb._base != NULL)
123 free((char *)(fp)->_lb._base); \
124 (fp)->_lb._base = NULL; \
H A Dfindfp.c152 fp->_lb._base = NULL; /* no line buffer */
153 fp->_lb._size = 0;
H A Dfreopen.c183 fp->_lb._size = 0;
/freebsd-current/contrib/elftoolchain/common/
H A D_elftc.h216 STAILQ_HEAD(, type) _la, _lb; \
223 STAILQ_INIT(&_lb); \
264 STAILQ_INSERT_TAIL(&_lb, _e, field); \
267 (head)->stqh_first = _lb.stqh_first; \
268 (head)->stqh_last = _lb.stqh_last; \
/freebsd-current/include/
H A Dstdio.h147 struct __sbuf _lb; /* buffer for fgetln() */ member in struct:__sFILE

Completed in 184 milliseconds