Searched refs:max_cols (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/ncurses/progs/
H A Dtabs.c45 static int max_cols; variable
70 if (last > max_cols)
75 if (stop <= max_cols) {
88 int *result = typeCalloc(int, strlen(tab_list) + (unsigned) max_cols);
127 while (n < max_cols - 1) {
151 for (n = 0; n < max_cols; n += 10) {
159 printf("%.*s", ((max_cols - n) > 10) ? 10 : (max_cols - n), buffer);
164 for (n = 0, last = 0; (tab_list[n] > 0) && (last < max_cols); ++n) {
167 if (last <= max_cols) {
[all...]
/freebsd-11-stable/lib/libdpv/
H A Ddpv.c121 int max_cols; local
282 max_cols = dialog_maxcols();
316 if (max_cols > 0 && label_size > (max_cols - pbar_size
318 label_size = max_cols - pbar_size - 9;
H A Ddprompt.c112 int max_cols; local
214 max_cols = dialog_maxcols();
215 if (max_cols > 0 && dwidth > max_cols)
216 dwidth = max_cols;

Completed in 165 milliseconds