Searched refs:n_next (Results 1 – 1 of 1) sorted by relevance
585 size_t n, n_next = 0, l; in read_full_stream_full() local619 n_next = rsize + 1; in read_full_stream_full()631 if (n_next == 0) in read_full_stream_full()632 … n_next = size != SIZE_MAX && !FLAGS_SET(flags, READ_FULL_FILE_FAIL_WHEN_LARGER) ? size : LINE_MAX; in read_full_stream_full()635 if (n_next > READ_FULL_BYTES_MAX) in read_full_stream_full()636 n_next = READ_FULL_BYTES_MAX + 1; in read_full_stream_full()648 if (FLAGS_SET(flags, READ_FULL_FILE_FAIL_WHEN_LARGER) && n_next > size) in read_full_stream_full()649 n_next = size + 1; in read_full_stream_full()652 t = malloc(n_next + 1); in read_full_stream_full()661 t = realloc(buf, n_next + 1); in read_full_stream_full()[all …]