Home
last modified time | relevance | path

Searched refs:wc_lines (Results 1 – 3 of 3) sorted by relevance

/coreutils/src/
Dwc.h2 struct wc_lines { int err; intmax_t lines; intmax_t bytes; }; argument
3 struct wc_lines wc_lines_avx2 (int);
Dwc_avx2.c31 extern struct wc_lines
54 return (struct wc_lines) { bytes_read == 0 ? 0 : errno, lines, bytes }; in wc_lines_avx2()
Dwc.c249 static struct wc_lines
250 wc_lines (int fd) in wc_lines() function
268 return (struct wc_lines) { bytes_read == 0 ? 0 : errno, lines, bytes }; in wc_lines()
402 struct wc_lines w = wc_lines (fd); in wc()