Searched refs:_w (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-10-stable/lib/libc/stdio/
H A Dwbuf.c57 * make sure _w is 0 (if fully- or un-buffered) or -_bf._size
60 * calls might wrap _w from negative to positive.
62 fp->_w = fp->_lbfsize;
77 * guarantees that putc() will always call wbuf() by setting _w
86 fp->_w--;
H A Dwsetup.c77 * Make a buffer if necessary, then set _w.
87 fp->_w = 0;
90 fp->_w = fp->_flags & __SNBF ? 0 : fp->_bf._size;
H A Dsetvbuf.c115 fp->_w = 0;
148 fp->_w = 0;
151 fp->_w = size;
154 fp->_w = 0;
H A Dfvwrite.c108 (__SALC | __SSTR) && fp->_w < len) {
115 fp->_w = len + 128;
123 w = fp->_w;
128 COPY(w); /* copy MIN(fp->_w,len), */
129 fp->_w -= w;
136 /* fp->_w -= w; */ /* unneeded */
149 fp->_w -= w;
173 w = fp->_w + fp->_bf._size;
176 /* fp->_w -= w; */
187 fp->_w
[all...]
H A Dfpurge.c64 fp->_w = fp->_flags & (__SLBF|__SNBF|__SRD) ? 0 : fp->_bf._size;
H A Dfflush.c121 fp->_w = t & (__SLBF|__SNBF) ? 0 : fp->_bf._size;
126 /* Reset _p and _w. */
132 fp->_w -= n;
H A Dvasprintf.c58 f._bf._size = f._w = 127; /* Leave room for the NUL */
H A Dvdprintf.c58 f._w = sizeof(buf);
H A Dvsprintf.c59 f._bf._size = f._w = INT_MAX;
H A Dsnprintf.c71 f._bf._size = f._w = n;
99 f._bf._size = f._w = n;
H A Dvsnprintf.c77 f._bf._size = f._w = n;
H A Dfclose.c68 fp->_r = fp->_w = 0; /* Mess up if reaccessed. */
H A Dvswprintf.c78 f._bf._size = f._w = 127; /* Leave room for the NUL */
H A Drefill.c95 fp->_w = 0;
H A Dungetc.c124 fp->_w = 0;
H A Dfindfp.c144 fp->_w = 0; /* nothing to read or write */
H A Dfreopen.c176 fp->_w = 0;
/freebsd-10-stable/contrib/ntp/sntp/libopts/
H A Dautoopts.h259 #define AGALOC(_c, _w) ao_malloc((size_t)_c)
260 #define AGREALOC(_p, _c, _w) ao_realloc(VOIDP(_p), (size_t)_c)
262 #define AGDUPSTR(_p, _s, _w) (_p = ao_strdup(_s))
/freebsd-10-stable/sys/arm/freescale/imx/
H A Dimx51_ipuv3_fbd.c106 #define CPMEM_WORD_OFFSET(_w) ((_w) * 0x20)
110 #define CPMEM_CHANNEL(_dp, _ch, _w) \
112 CPMEM_WORD_OFFSET(_w))
113 #define CPMEM_OFFSET(_dp, _ch, _w, _o) \
114 (CPMEM_CHANNEL((_dp), (_ch), (_w)) + (_o))
H A Dimx51_ipuv3.c165 #define CPMEM_WORD_OFFSET(_w) ((_w) * 0x20)
169 #define CPMEM_CHANNEL(_dp, _ch, _w) \
171 CPMEM_WORD_OFFSET(_w))
172 #define CPMEM_OFFSET(_dp, _ch, _w, _o) \
173 (CPMEM_CHANNEL((_dp), (_ch), (_w)) + (_o))
/freebsd-10-stable/include/
H A Dstdio.h89 * if _flags&__SRD, _w is 0
113 int _w; /* (*) write space left for putc() */ member in struct:__sFILE
464 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n'))
474 (--(p)->_w < 0 ? \
475 (p)->_w >= (p)->_lbfsize ? \
/freebsd-10-stable/sys/netgraph/atm/sscop/
H A Dng_sscop_cust.h288 uint32_t _w = (W); \
290 _w = htonl(_w); \
291 m_copyback((M), (M)->m_pkthdr.len, 4, (caddr_t)&_w); \
/freebsd-10-stable/lib/libedit/
H A Dchartype.h67 #define FUN(prefix,rest) prefix ## _w ## rest
68 #define FUNW(type) type ## _w
/freebsd-10-stable/contrib/ipfilter/
H A Dipf_rb.h363 #define RBI_WALK(_n, _h, _w, _a) _n##_rb_walktree(_h, _w, _a)
/freebsd-10-stable/sys/contrib/ipfilter/netinet/
H A Dipf_rb.h363 #define RBI_WALK(_n, _h, _w, _a) _n##_rb_walktree(_h, _w, _a)

Completed in 135 milliseconds

12