Searched refs:ncols (Results 1 - 17 of 17) sorted by relevance

/freebsd-11-stable/usr.sbin/bsdconfig/
H A Dbsdconfig133 local x=$longest_cmd ncols=1
137 ncols=$(( $ncols + 1 ))
140 f_dprintf "ncols=[%u] x=[%u]" $ncols $x
146 awk -v ncols=$ncols -v size=$longest_cmd '
164 cur_col = (( n - 1 ) % ncols ) + 1
168 if ( cur_col == ncols ) print_row()
171 if ( cur_col < ncols ) print_ro
[all...]
/freebsd-11-stable/sys/teken/
H A Dteken_subr.h242 teken_subr_cursor_backward(teken_t *t, unsigned int ncols) argument
245 if (ncols > t->t_cursor.tp_col)
248 t->t_cursor.tp_col -= ncols;
285 teken_subr_cursor_forward(teken_t *t, unsigned int ncols) argument
288 if (t->t_cursor.tp_col + ncols >= t->t_winsize.tp_col)
291 t->t_cursor.tp_col += ncols;
316 teken_subr_cursor_next_line(teken_t *t, unsigned int ncols) argument
320 teken_subr_cursor_down(t, ncols);
353 teken_subr_cursor_previous_line(teken_t *t, unsigned int ncols) argument
357 teken_subr_cursor_up(t, ncols);
373 teken_subr_delete_character(teken_t *t, unsigned int ncols) argument
463 teken_subr_erase_character(teken_t *t, unsigned int ncols) argument
622 teken_subr_insert_character(teken_t *t, unsigned int ncols) argument
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Dmdoc.h121 size_t ncols; /* -column arg count */ member in struct:mdoc_bl
H A Dmdoc_term.c610 size_t ncols, dcol; local
674 ncols = bl->norm->Bl.ncols;
675 dcol = ncols < 5 ? term_len(p, 4) :
676 ncols == 5 ? term_len(p, 3) : term_len(p, 1);
684 nn->prev && i < (int)ncols;
698 if (i >= (int)ncols)
H A Dmdoc_html.c805 if (bl->type != LIST_column || bl->ncols == 0)
816 for (i = 0; i < bl->ncols - 1; i++)
H A Dmdoc_markdown.c1277 nc = bln->norm->Bl.ncols;
H A Dmdoc_validate.c680 n->norm->Bl.ncols = argv->sz;
1516 cols = (int)nbl->norm->Bl.ncols;
1664 nh->norm->Bl.ncols = argv->sz;
/freebsd-11-stable/sys/dev/fb/
H A Dsplash_bmp.c234 int ncols; /* number of colours */ member in struct:__anon10063
558 bmp_info.ncols = (bmf->bmfi.bmiHeader.biClrUsed);
560 if (bmp_info.ncols == 0) { /* uses all of them */
561 bmp_info.ncols = 1 << bmf->bmfi.bmiHeader.biBitCount;
565 (bmp_info.ncols > (1 << sdepth))) {
568 bmp_info.width, bmp_info.height, bmp_info.ncols);
573 for (pind = 0; pind < bmp_info.ncols; pind++) {
/freebsd-11-stable/usr.bin/who/
H A Dwho.c243 int col, ncols, num; local
245 ncols = ttywidth();
251 if (++col < ncols / (16 + 1))
/freebsd-11-stable/contrib/binutils/binutils/
H A Ddwarf.c2815 int ncols; member in struct:Frame_Chunk
2839 int prev = fc->ncols;
2841 if (reg < fc->ncols)
2844 fc->ncols = reg + 1;
2845 fc->col_type = xcrealloc (fc->col_type, fc->ncols, sizeof (short int));
2846 fc->col_offset = xcrealloc (fc->col_offset, fc->ncols, sizeof (int));
2848 while (prev < fc->ncols)
2862 if (*max_regs < fc->ncols)
2863 *max_regs = fc->ncols;
2890 for (r = 0; r < fc->ncols;
[all...]
/freebsd-11-stable/cddl/usr.sbin/dwatch/
H A Ddwatch485 local x=$longest_profile_name ncols=1
489 ncols=$(( $ncols + 1 ))
506 -v ncols=$ncols \
530 cur_col = ((n - 1) % ncols) + 1
532 if (cur_col == ncols) print_row()
534 END { if (cur_col < ncols) print_row() }
/freebsd-11-stable/lib/libdpv/
H A Ddialog_util.c490 * pointed to by `prompt' within `ncols' columns (for prompts, this should be
495 dialog_prompt_wrappedlines(char *prompt, int ncols, uint8_t nlstate) argument
544 if (n > ncols) {
/freebsd-11-stable/contrib/groff/src/preproc/tbl/
H A Dtable.cpp156 virtual int divert(int ncols, const string *mw, int *sep);
294 void do_divert(int alphabetic, int ncols, const string *mw, int *sep);
298 int divert(int ncols, const string *mw, int *sep);
327 int divert(int ncols, const string *mw, int *sep);
654 int block_entry::divert(int ncols, const string *mw, int *sep) argument
656 do_divert(0, ncols, mw, sep);
660 void block_entry::do_divert(int alphabetic, int ncols, const string *mw, argument
687 as_string(ncols + 1));
775 int alphabetic_block_entry::divert(int ncols, const string *mw, int *sep) argument
777 do_divert(1, ncols, m
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Dregcomp.c1393 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1396 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
1410 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1414 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
/freebsd-11-stable/contrib/nvi/regex/
H A Dregcomp.c1283 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1286 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
1300 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1304 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
/freebsd-11-stable/contrib/gdb/gdb/
H A Dmips-tdep.c4443 int ncols = (mips_regsize (gdbarch) == 8 ? 4 : 8); /* display cols per row */ local
4450 col < ncols && regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
4470 col < ncols && regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
/freebsd-11-stable/contrib/ncurses/
H A Dconfigure19150 int ncols,
19163 int ncols,
19167 : NCursesPanel (nlines, ncols, begin_y, begin_x)

Completed in 229 milliseconds