Home
last modified time | relevance | path

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

/coreutils/src/
Dhead.c363 size_t n_array_alloc = 0; in elide_tail_bytes_pipe() local
368 if (n_array_alloc == i) in elide_tail_bytes_pipe()
371 if (n_array_alloc == 0) in elide_tail_bytes_pipe()
372 n_array_alloc = MIN (n_bufs, 16); in elide_tail_bytes_pipe()
373 else if (n_array_alloc <= n_bufs / 2) in elide_tail_bytes_pipe()
374 n_array_alloc *= 2; in elide_tail_bytes_pipe()
376 n_array_alloc = n_bufs; in elide_tail_bytes_pipe()
377 b = xnrealloc (b, n_array_alloc, sizeof *b); in elide_tail_bytes_pipe()