Searched refs:col (Results 26 - 50 of 221) sorted by relevance

123456789

/freebsd-10.2-release/contrib/atf/atf-c++/detail/
H A Dprocess_test.cpp120 std::vector< std::string > col; local
121 atf::process::argv_array argv(col);
127 std::vector< std::string > col; local
128 col.push_back("arg0");
129 atf::process::argv_array argv(col);
132 ATF_REQUIRE_EQ(argv[0], col[0]);
136 std::vector< std::string > col; local
137 col.push_back("arg0");
138 col.push_back("arg1");
139 col
273 std::vector< std::string > col; local
[all...]
/freebsd-10.2-release/contrib/libucl/utils/
H A Dchargen.c46 int i, col, r; local
51 col = 0;
116 col += r;
117 if (col > 80) {
119 col = r;
/freebsd-10.2-release/contrib/ncurses/ncurses/base/
H A Dwresize.c91 int col, row, size_x, size_y; local
158 for (col = 0; col <= ToCols; ++col) {
159 s[col] = (col <= size_x
160 ? win->_line[row].text[col]
169 for (col = 0; col <= ToCols; ++col)
[all...]
/freebsd-10.2-release/contrib/less/
H A Doutput.c453 register int col; local
455 col = 0;
461 col++;
473 col++;
477 col += iprint_int(parg->p_int);
481 col += iprint_linenum(parg->p_linenum);
487 return (col);
519 int col = 0; local
531 col += so_s_width;
534 col
594 int col = 0; local
[all...]
/freebsd-10.2-release/contrib/mdocml/
H A Dterm.c141 while (i < p->col) {
146 while (i < p->col && '\t' == p->buf[i]) {
160 for (j = i, jhy = 0; j < p->col; j++) {
201 for ( ; i < p->col; i++) {
253 p->col = 0;
302 if (p->col || p->viscol)
506 if (p->col + 1 >= p->maxcols)
507 adjbuf(p, p->col + 1);
509 p->buf[p->col++] = c;
522 if (p->col
[all...]
H A Dtbl_html.c56 struct roffcol *col; local
70 col = &h->tbl.cols[hp->ident];
71 SCALE_HS_INIT(&su, col->width);
/freebsd-10.2-release/contrib/groff/src/devices/grops/
H A Dps.cpp93 : fp(f), col(0), max_line_length(n), need_space(0), fixed_point(0)
100 col = 0;
114 if (col != 0) {
116 col = 0;
126 if (col != 0) {
128 col = 0;
139 if (col != 0)
145 col = 0;
152 if (col != 0)
157 col
[all...]
/freebsd-10.2-release/contrib/dialog/
H A Dprogressbox.c46 int col = 0; local
52 if (col) {
62 if (col >= MAX_LEN)
66 - (col % dialog_state.tab_len);
68 if (col < MAX_LEN) {
69 obj->line[col] = ' ';
70 ++col;
76 obj->line[col] = (char) ch;
77 ++col;
81 obj->line[col]
[all...]
H A Dtailbox.c48 int col = -(obj->hscroll); local
57 - ((col + obj->hscroll) % dialog_state.tab_len);
59 if (col >= 0 && col < MAX_LEN)
60 obj->line[col] = ' ';
61 ++col;
64 if (col >= 0)
65 obj->line[col] = (char) ch;
66 ++col;
68 if (col >
[all...]
/freebsd-10.2-release/lib/libiconv_modules/mapper_zone/
H A Dcitrus_mapper_zone.c273 /* row/col */
349 uint32_t col, row; local
352 col = src;
354 if (col < mz->mz_col.z_begin || col > mz->mz_col.z_end)
357 col += (uint32_t)mz->mz_col_offset;
359 col -= (uint32_t)-mz->mz_col_offset;
360 *dst = col;
362 col = src & (((uint32_t)1 << mz->mz_col_bits) - 1);
365 col < m
[all...]
/freebsd-10.2-release/sys/boot/pc98/libpc98/
H A Dvidconsole.c74 static int row = 25, col = 80; variable
200 crtat -= (crtat - Crtat) % col;
203 crtat += col;
211 if (crtat >= Crtat + col * row) {
214 bcopy((void *)(cp + col), (void *)cp, col * 2);
215 cp += col;
217 for (i = 0; i < col; i++) {
220 crtat -= col;
294 curx = pos % col;
[all...]
/freebsd-10.2-release/contrib/gcclibs/libcpp/
H A Derrors.c38 print_location (cpp_reader *pfile, source_location line, unsigned int col) argument
51 if (col == 0)
53 col = SOURCE_COLUMN (map, line);
54 if (col == 0)
55 col = 1;
63 fprintf (stderr, "%s:%u:%u:", map->to_file, lin, col);
/freebsd-10.2-release/contrib/ntp/util/
H A Dhist.c23 int col (const void *, const void *);
82 qsort(&ovfl, (size_t)n, sizeof(ovfl[0]), col);
101 col( function
/freebsd-10.2-release/tools/tools/vt/mkkfont/
H A Dmkkfont.c94 unsigned int nmappings, i, col = 0; local
111 printf(col == 0 ? "\n\t" : " ");
115 col = (col + 1) % 2;
/freebsd-10.2-release/crypto/heimdal/lib/roken/
H A Drtbl.c126 struct column_data *col, **tmp; local
132 col = malloc (sizeof (*col));
133 if (col == NULL)
135 col->header = strdup (header);
136 if (col->header == NULL) {
137 free (col);
140 col->prefix = NULL;
141 col->width = 0;
142 col
[all...]
/freebsd-10.2-release/contrib/ncurses/menu/
H A Dm_global.c386 int col = 0, row = 0; local
403 item->left = (col) ?
412 item->right = ((col < (Number_Of_Columns - 1)) &&
420 Last_in_Column = (menu->rows - 1) * Number_Of_Columns + col;
432 Number_Of_Items - 1 : col] :
434 item->x = col;
436 if (++col == Number_Of_Columns)
439 col = 0;
449 item = menu->items[i = (col * Number_Of_Rows + row)];
453 item->left = (col)
[all...]
/freebsd-10.2-release/contrib/netbsd-tests/lib/libc/gen/
H A Dt_humanize_number.c160 static int col, bol = 1; variable
166 col = 0;
178 if (col >= 0) {
181 col = -1;
187 if (col + n > 75)
188 fprintf(stderr, "\n "), col = 4;
190 fprintf(stderr, " "), col++;
193 col += n;
/freebsd-10.2-release/bin/stty/
H A Dprint.c221 static int col; variable
228 if (col) {
230 col = 0;
239 if (col == 0) {
240 col = printf("%s: %s", label, s);
243 if ((col + strlen(s)) > LINELENGTH) {
245 col = printf("%s", s) + 8;
248 col += printf(" %s", s);
/freebsd-10.2-release/cddl/contrib/opensolaris/cmd/zfs/
H A Dzfs_iter.c160 zfs_sort_column_t *col; local
167 col = safe_malloc(sizeof (zfs_sort_column_t));
169 col->sc_prop = prop;
170 col->sc_reverse = reverse;
172 col->sc_user_prop = safe_malloc(strlen(name) + 1);
173 (void) strcpy(col->sc_user_prop, name);
177 col->sc_last = col;
178 *sc = col;
180 (*sc)->sc_last->sc_next = col;
190 zfs_sort_column_t *col; local
[all...]
/freebsd-10.2-release/contrib/vis/
H A Dvis.c161 static int col = 0; local
257 (void)printf("<%02d,", col);
259 col = foldit(cp, col, foldwidth, eflags);
262 (void)printf("%02d>", col);
/freebsd-10.2-release/contrib/groff/src/preproc/tbl/
H A Dmain.cpp1112 int col = 0; local
1115 if (col >= ncolumns)
1116 ncolumns = col + 1;
1117 col = 0;
1121 col++;
1139 col = 0;
1141 f->entry[row][col] = *tem;
1142 if (col < ncolumns-1) {
1144 if (tem->separation > f->separation[col]) {
1148 f->separation[col]
1266 int col = 0; local
[all...]
/freebsd-10.2-release/contrib/nvi/cl/
H A Dcl_term.c360 size_t col, row; local
379 row = col = 0;
382 col = win.ws_col;
391 if (row == 0 || col == 0) {
406 row == O_VAL(sp, O_LINES) && col == O_VAL(sp, O_COLUMNS)) {
415 *colp = col;
426 if (row == 0 || col == 0) {
434 if (col == 0)
438 col = rval;
444 if (col
[all...]
/freebsd-10.2-release/usr.sbin/lpr/common_source/
H A Ddisplayq.c78 static int col; /* column on screen */ variable
377 col = strlen(head0)+1;
427 col = strlen(line+1) + 2;
432 col = 0;
436 col += 16;
522 while (col++ < tocol)
545 rem = SIZCOL - 1 - col;
550 col = SIZCOL;
559 col += remetc;
566 col
[all...]
/freebsd-10.2-release/crypto/openssl/ssl/
H A Dd1_srtp.c170 char *col; local
182 col = strchr(ptr, ':');
185 col ? col - ptr : (int)strlen(ptr))) {
201 if (col)
202 ptr = col + 1;
203 } while (col);
/freebsd-10.2-release/contrib/diff/src/
H A Dside.c168 size_t col = 0; local
174 col = print_half_line (left, 0, hw);
179 col = tab_from_to (col, (hw + c2o - 1) / 2) + 1;
190 col = tab_from_to (col, c2o);
191 print_half_line (right, col, hw);

Completed in 331 milliseconds

123456789