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

/freebsd-9.3-release/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-9.3-release/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-9.3-release/sys/dev/fb/
H A Dsplash_bmp.c234 int ncols; /* number of colours */ member in struct:__anon7832
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-9.3-release/usr.bin/who/
H A Dwho.c231 int col, ncols, num; local
233 ncols = ttywidth();
239 if (++col < ncols / (16 + 1))
/freebsd-9.3-release/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-9.3-release/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-9.3-release/contrib/llvm/lib/Support/
H A Dregcomp.c1255 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1258 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
1272 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1276 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
/freebsd-9.3-release/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-9.3-release/contrib/ncurses/
H A Dconfigure15638 int ncols,
15651 int ncols,
15655 : NCursesPanel (nlines, ncols, begin_y, begin_x)

Completed in 264 milliseconds