Home
last modified time | relevance | path

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

/NextBSD/sys/dev/syscons/
HDschistory.c98 int min_lines; /* guaranteed buffer size */ in sc_alloc_history_buffer() local
115 min_lines = imax(SC_HISTORY_SIZE, prev_ysize); in sc_alloc_history_buffer()
116 if (cur_lines > min_lines) in sc_alloc_history_buffer()
117 delta = cur_lines - min_lines; in sc_alloc_history_buffer()
121 min_lines = imax(SC_HISTORY_SIZE, scp->ysize); in sc_alloc_history_buffer()
122 if (lines > min_lines) { in sc_alloc_history_buffer()
123 if (lines - min_lines > extra_history_size + delta) { in sc_alloc_history_buffer()
135 if (lines > min_lines) in sc_alloc_history_buffer()
136 extra_history_size -= lines - min_lines; in sc_alloc_history_buffer()
192 int min_lines; /* guaranteed buffer size */ in sc_free_history_buffer() local
[all …]