Searched refs:col (Results 51 - 75 of 221) sorted by relevance

123456789

/freebsd-10.2-release/crypto/heimdal/lib/roken/
H A Dgetarg.c194 check_column(FILE *f, int col, int len, int columns) argument
196 if(col + len > columns) {
198 col = fprintf(f, " ");
200 return col;
229 int col = 0, columns; local
243 col = 0;
244 col += fprintf (stderr, "%s: %s", usage, progname);
258 col = check_column(stderr, col, strlen(buf) + 1, columns);
259 col
[all...]
/freebsd-10.2-release/contrib/groff/src/roff/troff/
H A Dcolumn.cpp47 output_line *col; member in class:column
281 : bottom(V0), col(0), tail(&col), out(0)
306 if (col) {
377 for (output_line **pp = &col; *pp; pp = &(*pp)->next)
399 for (output_line *ln = col; ln; ln = ln->next) {
409 for (output_line *ln = col; ln; ln = ln->next) {
420 output_line *ln = col;
429 tail = &col;
431 col
[all...]
/freebsd-10.2-release/crypto/openssh/
H A Dsession.h42 u_int row, col, xpixel, ypixel; member in struct:Session
/freebsd-10.2-release/contrib/ncurses/man/
H A Dmake_sed.sh42 COL=col$$
/freebsd-10.2-release/sys/dev/terasic/mtl/
H A Dterasic_mtl_syscons.c250 uint8_t col, row; local
253 terasic_mtl_reg_textcursor_get(sc, &col, &row);
254 *colp = col;
260 terasic_mtl_vidsw_set_hw_cursor(video_adapter_t *adp, int col, int row) argument
265 terasic_mtl_reg_textcursor_set(sc, col, row);
378 u_int col, row; local
381 col = (off % adp->va_info.vi_width);
383 terasic_mtl_text_putc(sc, col, row, c, a);
/freebsd-10.2-release/usr.bin/column/
H A Dcolumn.c155 int chcnt, col, cnt, endcol, numcols; local
160 for (chcnt = col = 0, lp = list;; ++lp) {
165 if (++col == numcols) {
166 chcnt = col = 0;
184 int base, chcnt, cnt, col, endcol, numcols, numrows, row; local
193 for (base = row, chcnt = col = 0; col < numcols; ++col) {
/freebsd-10.2-release/contrib/wpa/src/ap/
H A Deap_user_db.c79 static int get_user_cb(void *ctx, int argc, char *argv[], char *col[]) argument
85 if (os_strcmp(col[i], "password") == 0 && argv[i]) {
90 } else if (os_strcmp(col[i], "methods") == 0 && argv[i]) {
99 static int get_wildcard_cb(void *ctx, int argc, char *argv[], char *col[]) argument
106 if (os_strcmp(col[i], "identity") == 0 && argv[i])
108 else if (os_strcmp(col[i], "methods") == 0 && argv[i])
/freebsd-10.2-release/bin/ed/
H A Dio.c299 int col = 0; local
305 col = 8;
308 if ((gflag & GLS) && ++col > cols) {
310 col = 1;
326 col++;
333 col += 2;
/freebsd-10.2-release/contrib/groff/src/preproc/tbl/
H A Dtable.cpp89 string column_separation_reg(int col);
1094 int col; member in struct:vertical_rule
1106 : next(p), start_row(sr), end_row(er), col(c), is_double(dbl)
1142 column_divide_reg(col),
1183 column_divide_reg(col),
1856 string column_separation_reg(int col) argument
1859 sprintf(name, COLUMN_SEPARATION_PREFIX "%d", col);
1870 string column_start_reg(int col) argument
1873 sprintf(name, COLUMN_START_PREFIX "%d", col);
1877 string column_end_reg(int col) argument
1884 column_divide_reg(int col) argument
2252 compute_vrule_top_adjust(int start_row, int col, string &result) argument
2307 compute_vrule_bot_adjust(int end_row, int col, string &result) argument
2370 add_vertical_rule(int start_row, int end_row, int col, int is_double) argument
2380 int col; local
[all...]
/freebsd-10.2-release/usr.bin/sed/
H A Dprocess.c571 int c, col, width; local
594 col = 0;
605 if (col + 1 >= termwidth)
609 col = 0;
612 if (col + width >= termwidth) {
614 col = 0;
617 col += width;
620 if (col + 2 >= termwidth) {
622 col = 0;
625 col
[all...]
/freebsd-10.2-release/sys/dev/fb/
H A Dcreator_vt.c227 unsigned int col, row, x, y; local
236 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col;
237 ++col) {
238 x = col * vf->vf_width +
243 c = VTBUF_GET_FIELD(&vw->vw_buf, row, col);
246 VTBUF_ISCURSOR(&vw->vw_buf, row, col), &fg, &bg);
/freebsd-10.2-release/usr.bin/pr/
H A Dpr.c86 static int across; /* mult col flag; write across page */
105 static int pgwd; /* page width with multiple col output */
331 int col = colwd + 1; local
369 * col pointers when no headers
399 fullcol = col + cw;
401 fullcol = col;
493 else if ((pln = col-cnt) > 0) {
644 int col = colwd + 1; local
703 * loop by col
734 else if ((pln = col
792 int col; local
997 int col; local
[all...]
/freebsd-10.2-release/contrib/amd/fsinfo/
H A Dfsi_util.c50 static int col = 0; variable
60 col += len;
61 if (col > 77) {
63 col = len;
99 if (col) {
101 col = 0;
229 col += 1;
246 col += 1;
261 col += 2;
/freebsd-10.2-release/contrib/nvi/ex/
H A Dex_args.c267 int cnt, col, len, sep; local
276 col = len = sep = 0;
278 col += len = strlen(*ap) + sep + (ap == sp->cargv ? 2 : 0);
279 if (col >= sp->cols - 1) {
280 col = len;
/freebsd-10.2-release/contrib/netbsd-tests/lib/libc/regex/
H A Ddebug.c132 int col = 0; local
136 if (col > 40) { \
138 col = 0; \
141 col++; \
144 col++; \
/freebsd-10.2-release/lib/libc/regex/grot/
H A Ddebug.c68 int col = 0; local
72 if (col > 40) { \
74 col = 0; \
77 col++; \
80 col++; \
/freebsd-10.2-release/usr.bin/who/
H A Dwho.c241 int col, ncols, num; local
244 col = num = 0;
249 if (++col < ncols / (16 + 1))
252 col = 0;
257 if (col != 0)
/freebsd-10.2-release/contrib/apr-util/include/private/
H A Dapr_dbd_internal.h168 * @param col - entry number
172 const char* (*get_entry)(const apr_dbd_row_t *row, int col);
267 * @param col - entry number
268 * @return param name, or NULL if col is out of bounds.
270 const char* (*get_name)(const apr_dbd_results_t *res, int col);
345 * @param col - entry number
348 * @return APR_SUCCESS, an error code on error or if col is out of bounds
350 apr_status_t (*datum_get)(const apr_dbd_row_t *row, int col,
/freebsd-10.2-release/contrib/ntp/scripts/lib/NTP/
H A DUtil.pm107 my $col = 0;
114 my $r = { map {; $columns[ $col++ ] => $_ } @line };
/freebsd-10.2-release/include/rpcsvc/
H A Dnis.x435 %#define ENTRY_VAL(obj, col) \
436 (obj)->EN_data.en_cols.en_cols_val[col].ec_value.ec_value_val
437 %#define ENTRY_LEN(obj, col) \
438 (obj)->EN_data.en_cols.en_cols_val[col].ec_value.ec_value_len
/freebsd-10.2-release/usr.bin/mail/
H A Dsend.c533 int col, len; local
536 col = strlen(str);
537 if (col)
543 col++; /* for the space */
544 if (col + len + comma > 72 && col > 4) {
546 col = 4;
552 col += len + comma;
/freebsd-10.2-release/contrib/groff/src/devices/grotty/
H A Dtty.cpp210 schar color_to_idx(color *col);
348 schar tty_printer::color_to_idx(color *col) argument
350 if (col->is_default())
353 col->get_rgb(&r, &g, &b);
356 char *s = col->print_color();
370 env->col, env->fill,
439 add_char(*arg - '0', 0, env->hpos, env->vpos, env->col, env->fill,
479 add_char(0, 0, env->hpos, env->vpos, env->col, env->fill, COLOR_CHANGE);
484 add_char(0, 0, env->hpos, env->vpos, env->col, env->fill, COLOR_CHANGE);
504 add_char(vline_char, font::hor, env->hpos, v, env->col, en
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DDeclaration.h231 m_column = col;
/freebsd-10.2-release/contrib/llvm/tools/lldb/tools/driver/
H A DDriver.h111 ResizeWindow (unsigned short col);
/freebsd-10.2-release/lib/libedit/
H A Dsys.h94 extern char *tgoto(const char *cap, int col, int row);

Completed in 481 milliseconds

123456789