Lines Matching refs:count
291 ssize_t count = (f->_wide_data->_IO_write_end in libc_hidden_def() local
293 if (count > 0) in libc_hidden_def()
295 if ((size_t) count > more) in libc_hidden_def()
296 count = more; in libc_hidden_def()
297 if (count > 20) in libc_hidden_def()
300 __wmempcpy (f->_wide_data->_IO_write_ptr, s, count); in libc_hidden_def()
301 s += count; in libc_hidden_def()
303 else if (count <= 0) in libc_hidden_def()
304 count = 0; in libc_hidden_def()
309 for (i = count; --i >= 0; ) in libc_hidden_def()
313 more -= count; in libc_hidden_def()
332 ssize_t count = (fp->_wide_data->_IO_read_end in libc_hidden_def() local
334 if (count > 0) in libc_hidden_def()
336 if ((size_t) count > more) in libc_hidden_def()
337 count = more; in libc_hidden_def()
338 if (count > 20) in libc_hidden_def()
340 s = __wmempcpy (s, fp->_wide_data->_IO_read_ptr, count); in libc_hidden_def()
341 fp->_wide_data->_IO_read_ptr += count; in libc_hidden_def()
343 else if (count <= 0) in libc_hidden_def()
344 count = 0; in libc_hidden_def()
348 int i = (int) count; in libc_hidden_def()
353 more -= count; in libc_hidden_def()
533 _IO_adjust_wcolumn (unsigned start, const wchar_t *line, int count) in _IO_adjust_wcolumn() argument
535 const wchar_t *ptr = line + count; in _IO_adjust_wcolumn()
538 return line + count - ptr - 1; in _IO_adjust_wcolumn()
539 return start + count; in _IO_adjust_wcolumn()