Home
last modified time | relevance | path

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

/coreutils/src/
Dsplit.c649 bytes_split (intmax_t n_bytes, intmax_t rem_bytes, in bytes_split() argument
656 intmax_t to_write = n_bytes + (0 < rem_bytes); in bytes_split()
673 to_write = n_bytes + (opened + 1 < rem_bytes); in bytes_split()
698 to_write = n_bytes + (opened < rem_bytes); in bytes_split()
887 intmax_t rem_bytes = file_size % n; in lines_chunk_split() local
890 off_t chunk_end = chunk_size + (0 < rem_bytes); in lines_chunk_split()
898 off_t start = (k - 1) * chunk_size + MIN (k - 1, rem_bytes) - 1; in lines_chunk_split()
981 chunk_end += chunk_size + (chunk_no < rem_bytes); in lines_chunk_split()