Lines Matching refs:count
63 ssize_t count; in _vwprintf_c89() local
86 count = _wndoprnt(format, ap, stdout, _F_INTMAX32); in _vwprintf_c89()
88 count = _wndoprnt(format, ap, stdout, 0); in _vwprintf_c89()
91 if (FERROR(stdout) || count == EOF) { in _vwprintf_c89()
97 if ((size_t)count > MAXINT) { in _vwprintf_c89()
101 return ((int)count); in _vwprintf_c89()
112 ssize_t count; in _vfwprintf_c89() local
136 count = _wndoprnt(format, ap, iop, _F_INTMAX32); in _vfwprintf_c89()
138 count = _wndoprnt(format, ap, iop, 0); in _vfwprintf_c89()
140 if (FERROR(iop) || count == EOF) { in _vfwprintf_c89()
146 if ((size_t)count > MAXINT) { in _vfwprintf_c89()
150 return ((int)count); in _vfwprintf_c89()
161 ssize_t count; in _vswprintf_c89() local
173 count = _wndoprnt(format, ap, &siop, _F_INTMAX32); in _vswprintf_c89()
175 count = _wndoprnt(format, ap, &siop, 0); in _vswprintf_c89()
179 if (count == EOF) { in _vswprintf_c89()
183 if ((size_t)count > MAXINT) { in _vswprintf_c89()
187 return ((int)count); in _vswprintf_c89()