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

12345678910

/freebsd-11-stable/contrib/mdocml/
H A Dterm.c133 p->tcol->col = 0;
134 while (p->tcol->col < p->tcol->lastcol) {
142 while (p->tcol->col < p->tcol->lastcol &&
143 p->tcol->buf[p->tcol->col] == '\t') {
148 p->tcol->col++;
160 for (j = p->tcol->col; j < p->tcol->lastcol; j++) {
228 for ( ; p->tcol->col < p->tcol->lastcol; p->tcol->col++) {
229 if (vend > bp && jhy > 0 && p->tcol->col > jhy)
231 if (p->tcol->buf[p->tcol->col]
[all...]
H A Dtbl_term.c206 tp->col = 0;
323 if (tp->tcol->col < tp->tcol->lastcol)
325 if (tp->tcol->col < tp->tcol->lastcol)
393 sp->layout->last->col + 1 == sp->opts->cols) ||
396 sp->next->layout->last->col + 1 == sp->opts->cols) ||
399 sp->prev->layout->last->col + 1 == sp->opts->cols &&
408 sp->layout->last->col + 1 < sp->opts->cols)) {
461 const struct roffcol *col; local
478 col = tp->tbl.cols + cp->col;
509 tbl_data(struct termp *tp, const struct tbl_opts *opts, const struct tbl_cell *cp, const struct tbl_dat *dp, const struct roffcol *col) argument
576 tbl_literal(struct termp *tp, const struct tbl_dat *dp, const struct roffcol *col) argument
618 tbl_number(struct termp *tp, const struct tbl_opts *opts, const struct tbl_dat *dp, const struct roffcol *col) argument
[all...]
/freebsd-11-stable/lib/libiconv_modules/MSKanji/
H A Dcitrus_mskanji.c288 _index_t col, row; local
334 col = (_wc_t)wc & 0xFF;
335 if (!_mskanji1(row) || !_mskanji2(col))
353 col -= 0x1F;
354 if (col >= 0x61)
355 col -= 1;
356 if (col > 0x7E) {
358 col -= 0x5E;
360 *idx = ((_index_t)row << 8) | col;
371 uint32_t col, ro local
[all...]
/freebsd-11-stable/usr.bin/cut/
H A Dcut.c238 int ch, col; local
244 for (col = maxval; col; --col) {
272 size_t col, i, lbuflen; local
280 for (col = 0; lbuflen > 0; col += clen) {
291 if (col < maxval && !positions[1 + col]) {
298 i = col;
335 int col; local
[all...]
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Ddirectives-only.c45 int lines, col; local
63 col = 1;
65 for (last_c = '\n', c = *cur; cur < rlimit; last_c = c, c = *++cur, ++col)
80 col = 0;
102 buffer->line_base -= col - 1;
144 LINEMAP_POSITION_FOR_COLUMN (loc, pfile->line_table, col);
196 col = 0;
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-11-stable/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-11-stable/contrib/subversion/subversion/svn/
H A Dmergeinfo-cmd.c109 int row, col;
178 for (col = 0; col < COLS; col++)
180 col_width[col] = 0;
183 if (g[row][col] && ((int)strlen(g[row][col]) > col_width[col]))
184 col_width[col] = (int)strlen(g[row][col]);
107 int row, col; local
[all...]
/freebsd-11-stable/contrib/less/
H A Doutput.c560 int col; local
562 col = 0;
568 col++;
580 col++;
584 col += iprint_int(parg->p_int);
588 col += iprint_linenum(parg->p_linenum);
593 col++;
601 return (col);
633 int col = 0; local
650 col
704 int col = 0; local
[all...]
/freebsd-11-stable/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-11-stable/contrib/ncurses/ncurses/base/
H A Dwresize.c95 int col, row, size_x, size_y; local
163 for (col = 0; col <= ToCols; ++col) {
164 s[col] = (col <= size_x
165 ? win->_line[row].text[col]
175 for (col = 0; col <= ToCols; ++col)
[all...]
/freebsd-11-stable/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-11-stable/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-11-stable/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-11-stable/stand/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-11-stable/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-11-stable/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-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cpp44 int *col) {
95 int line, col; local
98 sizeof(file_buf), &line, &col)) {
102 frame->info.column = col;
42 __tsan_symbolize_external(uptr pc, char *func_buf, uptr func_siz, char *file_buf, uptr file_siz, int *line, int *col) argument
/freebsd-11-stable/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 = (short)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-11-stable/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-11-stable/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-11-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_humanize_number.c156 static int col, bol = 1; variable
162 col = 0;
174 if (col >= 0) {
177 col = -1;
183 if (col + n > 75)
184 fprintf(stderr, "\n "), col = 4;
186 fprintf(stderr, " "), col++;
189 col += n;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zfs/
H A Dzfs_iter.c159 zfs_sort_column_t *col; local
166 col = safe_malloc(sizeof (zfs_sort_column_t));
168 col->sc_prop = prop;
169 col->sc_reverse = reverse;
171 col->sc_user_prop = safe_malloc(strlen(name) + 1);
172 (void) strcpy(col->sc_user_prop, name);
176 col->sc_last = col;
177 *sc = col;
179 (*sc)->sc_last->sc_next = col;
189 zfs_sort_column_t *col; local
[all...]
/freebsd-11-stable/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);

Completed in 312 milliseconds

12345678910