Home
last modified time | relevance | path

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

/xnu-11417.121.6/bsd/kern/
H A Dsys_pipe.c307 static const unsigned int pipesize_blocks[] = {512, 1024, 2048, 4096, 4096 * 2, PIPE_SIZE, PIPE_SIZ… variable
316 int i = sizeof(pipesize_blocks) / sizeof(unsigned int) - 1; in choose_pipespace()
323 assert(PIPE_BUF == pipesize_blocks[0]); in choose_pipespace()
331 while (i > 0 && pipesize_blocks[i - 1] > target) { in choose_pipespace()
335 return pipesize_blocks[i]; in choose_pipespace()
496 pipe_size = MAX(PIPE_SIZE, pipesize_blocks[0]); in pipe_stat()