Home
last modified time | relevance | path

Searched refs:_lb (Results 1 – 8 of 8) sorted by relevance

/dragonfly/sys/sys/
HDbitstring.h116 bitstr_t _lb; \
118 for (_lb = _name[_byte]; (_lb&0x1); \
119 ++_value, _lb >>= 1); \
135 bitstr_t _lb; \
137 for (_lb = _name[_byte]; !(_lb&0x1); \
138 ++_value, _lb >>= 1); \
154 bitstr_t _lb; \
156 for (_lb = _name[_byte]; _lb != 0x1; \
157 ++_value, _lb >>= 1); \
/dragonfly/lib/libc/stdio/
HDfgetln.c60 if (fp->_lb._size >= newsize) in __slbexpand()
62 if ((p = realloc(fp->_lb._base, newsize)) == NULL) in __slbexpand()
64 fp->_lb._base = p; in __slbexpand()
65 fp->_lb._size = newsize; in __slbexpand()
131 memcpy((void *)(fp->_lb._base + off), (void *)fp->pub._p, in fgetln()
146 memcpy((void *)(fp->_lb._base + off), (void *)fp->pub._p, diff); in fgetln()
153 fp->_lb._base[len] = 0; in fgetln()
156 return ((char *)fp->_lb._base); in fgetln()
HDfgetwln.c57 if (len * sizeof(wchar_t) >= fp->_lb._size && in fgetwln_l()
60 *((wchar_t *)fp->_lb._base + len++) = wc; in fgetwln_l()
69 return ((wchar_t *)fp->_lb._base); in fgetwln_l()
HDlocal.h133 #define HASLB(fp) ((fp)->_lb._base != NULL)
135 free((char *)(fp)->_lb._base); \
136 (fp)->_lb._base = NULL; \
HDfindfp.c152 fp->_lb._base = NULL; /* no line buffer */ in __sfp()
153 fp->_lb._size = 0; in __sfp()
HDpriv_stdio.h83 struct __sbuf _lb; /* buffer for fgetln() */ member
HDfreopen.c180 fp->_lb._size = 0; in freopen()
/dragonfly/contrib/elftoolchain/common/
HD_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; \