Symbol: col
usr/src/boot/common/gfx_fb.c
1137
if ((uint32_t)da->col >= gfx_fb.framebuffer_common.framebuffer_width ||
usr/src/boot/common/gfx_fb.c
1139
(uint32_t)da->col + da->width >
usr/src/boot/common/gfx_fb.c
1153
dx = da->col;
usr/src/boot/common/gfx_fb.c
1187
da->col, da->row, 0, 0, da->width, da->height, 0) == 0) {
usr/src/boot/common/gfx_fb.c
1190
0, 0, da->col, da->row, da->width, da->height, 0);
usr/src/boot/common/gfx_fb.c
1248
ca->col, ca->row, 0, 0, ca->width, ca->height, 0) == 0)
usr/src/boot/common/gfx_fb.c
1253
ca->col, ca->row, ca->width, ca->height, 0);
usr/src/boot/common/gfx_fb.c
1260
dx = ca->col;
usr/src/boot/common/gfx_fb.c
1686
da.col = ux1;
usr/src/boot/common/gfx_fb.c
1697
da.col / tems.ts_font.vf_width,
usr/src/boot/common/gfx_fb.c
1699
(da.col + da.width) / tems.ts_font.vf_width);
usr/src/boot/common/linenoise/linenoise.c
382
int col; /* colum position, zero-based. */
usr/src/boot/common/linenoise/linenoise.c
435
col = (plen+(int)l->pos) % (int)l->cols;
usr/src/boot/common/linenoise/linenoise.c
436
if (col)
usr/src/boot/common/linenoise/linenoise.c
437
snprintf(seq,64,"\r\x1b[%dC", col);
usr/src/boot/common/tem.c
1115
tem->tvs_c_cursor.col - 1);
usr/src/boot/common/tem.c
119
int count, screen_pos_t row, screen_pos_t col);
usr/src/boot/common/tem.c
138
int count, screen_pos_t row, screen_pos_t col);
usr/src/boot/common/tem.c
1508
int col;
usr/src/boot/common/tem.c
1511
col = tem->tvs_c_cursor.col;
usr/src/boot/common/tem.c
1527
tem_mv_cursor(tem, row - tem->tvs_params[0], col);
usr/src/boot/common/tem.c
1532
tem_mv_cursor(tem, tem->tvs_params[0] - 1, col);
usr/src/boot/common/tem.c
1538
tem_mv_cursor(tem, row + tem->tvs_params[0], col);
usr/src/boot/common/tem.c
1544
tem_mv_cursor(tem, row, col + tem->tvs_params[0]);
usr/src/boot/common/tem.c
1554
tem_mv_cursor(tem, row, col - tem->tvs_params[0]);
usr/src/boot/common/tem.c
1597
tem->tvs_c_cursor.col,
usr/src/boot/common/tem.c
1599
tem->tvs_c_cursor.col);
usr/src/boot/common/tem.c
1621
tem->tvs_c_cursor.col + 1,
usr/src/boot/common/tem.c
1645
tem->tvs_c_cursor.col),
usr/src/boot/common/tem.c
1647
tem->tvs_c_cursor.col);
usr/src/boot/common/tem.c
1653
tem->tvs_c_cursor.col + 1,
usr/src/boot/common/tem.c
1710
tem->tvs_c_cursor.col);
usr/src/boot/common/tem.c
1853
tem->tvs_c_cursor.col++;
usr/src/boot/common/tem.c
1854
if (tem->tvs_c_cursor.col >= tems.ts_c_dimension.width) {
usr/src/boot/common/tem.c
1856
tem->tvs_c_cursor.col--;
usr/src/boot/common/tem.c
1873
tem->tvs_c_cursor.col = 0;
usr/src/boot/common/tem.c
1909
tem_mv_cursor(tem, row, tem->tvs_c_cursor.col);
usr/src/boot/common/tem.c
1915
tem->tvs_c_cursor.col,
usr/src/boot/common/tem.c
1917
tem->tvs_c_cursor.col);
usr/src/boot/common/tem.c
1933
tem->tvs_s_cursor.row, tem->tvs_s_cursor.col);
usr/src/boot/common/tem.c
1941
tem->tvs_s_cursor.row, tem->tvs_s_cursor.col);
usr/src/boot/common/tem.c
1959
tem->tvs_s_cursor.col = tem->tvs_c_cursor.col;
usr/src/boot/common/tem.c
2023
tem->tvs_r_cursor.col);
usr/src/boot/common/tem.c
2110
tem->tvs_r_cursor.col = tem->tvs_c_cursor.col;
usr/src/boot/common/tem.c
2114
tem->tvs_r_cursor.col);
usr/src/boot/common/tem.c
2277
screen_pos_t col)
usr/src/boot/common/tem.c
2280
col < 0 || col >= tems.ts_c_dimension.width ||
usr/src/boot/common/tem.c
2289
col + count > tems.ts_c_dimension.width)
usr/src/boot/common/tem.c
2290
count = tems.ts_c_dimension.width - col;
usr/src/boot/common/tem.c
2292
tem_virtual_cls(tem, count, row, col);
usr/src/boot/common/tem.c
2297
tem_callback_cls(tem, count, row, col);
usr/src/boot/common/tem.c
2302
int count, screen_pos_t row, screen_pos_t col)
usr/src/boot/common/tem.c
2315
da.col = col;
usr/src/boot/common/tem.c
2323
da.col++;
usr/src/boot/common/tem.c
2367
int count, screen_pos_t row, screen_pos_t col)
usr/src/boot/common/tem.c
2378
col + count > tems.ts_c_dimension.width)
usr/src/boot/common/tem.c
2379
count = tems.ts_c_dimension.width - col;
usr/src/boot/common/tem.c
2382
tem_text_display(tem, &c, 1, row, col++);
usr/src/boot/common/tem.c
2389
screen_pos_t row, screen_pos_t col)
usr/src/boot/common/tem.c
2398
da.col = (col * da.width) + tems.ts_p_offset.x;
usr/src/boot/common/tem.c
2403
da.col += da.width;
usr/src/boot/common/tem.c
2482
screen_pos_t row, screen_pos_t col)
usr/src/boot/common/tem.c
2485
col, count, tems.ts_p_offset.x, false);
usr/src/boot/common/tem.c
2556
tem->tvs_c_cursor.col = 0;
usr/src/boot/common/tem.c
2569
if (tem->tvs_tabs[i] < tem->tvs_c_cursor.col) {
usr/src/boot/common/tem.c
2587
if (tem->tvs_tabs[i] > tem->tvs_c_cursor.col) {
usr/src/boot/common/tem.c
2604
tem->tvs_tabs[tem->tvs_ntabs] < tem->tvs_c_cursor.col) {
usr/src/boot/common/tem.c
2605
tem->tvs_tabs[tem->tvs_ntabs++] = tem->tvs_c_cursor.col;
usr/src/boot/common/tem.c
2609
if (tem->tvs_tabs[i] == tem->tvs_c_cursor.col)
usr/src/boot/common/tem.c
2611
if (tem->tvs_tabs[i] > tem->tvs_c_cursor.col) {
usr/src/boot/common/tem.c
2614
tem->tvs_tabs[i] = tem->tvs_c_cursor.col;
usr/src/boot/common/tem.c
2633
if (tem->tvs_tabs[i] == tem->tvs_c_cursor.col) {
usr/src/boot/common/tem.c
2645
tem_mv_cursor(struct tem_vt_state *tem, int row, int col)
usr/src/boot/common/tem.c
2656
if (col < 0)
usr/src/boot/common/tem.c
2657
col = 0;
usr/src/boot/common/tem.c
2658
if (col >= tems.ts_c_dimension.width) {
usr/src/boot/common/tem.c
2660
col = tems.ts_c_dimension.width - 1;
usr/src/boot/common/tem.c
2667
tem->tvs_c_cursor.col = (screen_pos_t)col;
usr/src/boot/common/tem.c
2678
tem->tvs_c_cursor.col = 0;
usr/src/boot/common/tem.c
2680
tem->tvs_r_cursor.col = 0;
usr/src/boot/common/tem.c
2682
tem->tvs_s_cursor.col = 0;
usr/src/boot/common/tem.c
2730
rest_of_line = tems.ts_c_dimension.width - tem->tvs_c_cursor.col;
usr/src/boot/common/tem.c
2741
tem->tvs_c_cursor.col + count,
usr/src/boot/common/tem.c
2745
tem->tvs_c_cursor.col,
usr/src/boot/common/tem.c
2755
tem->tvs_c_cursor.col,
usr/src/boot/common/tem.c
2759
tem->tvs_c_cursor.col + count,
usr/src/boot/common/tem.c
2764
tem->tvs_c_cursor.col);
usr/src/boot/common/tem.c
2775
ca.col = tem->tvs_c_cursor.col;
usr/src/boot/common/tem.c
2782
tem->tvs_c_cursor.col = ca.col;
usr/src/boot/common/tem.c
2796
ca.col = tem->tvs_c_cursor.col * tems.ts_font.vf_width +
usr/src/boot/common/tem.c
2815
tem->tvs_c_cursor.col = 0;
usr/src/boot/common/tem.c
2821
if (ca.col != 0) {
usr/src/boot/common/tem.c
2822
tem->tvs_c_cursor.col = (ca.col - tems.ts_p_offset.x) /
usr/src/boot/common/tem.c
2955
screen_pos_t col, int ncols, int offset_x,
usr/src/boot/common/tem.c
2980
da.col = col * da.width + offset_x;
usr/src/boot/common/tem.c
2983
da.col += da.width;
usr/src/boot/common/tem.c
2993
size_t count, screen_pos_t row, screen_pos_t col)
usr/src/boot/common/tem.c
3002
col < 0 || col >= tems.ts_c_dimension.width ||
usr/src/boot/common/tem.c
3003
col + count > (size_t)tems.ts_c_dimension.width)
usr/src/boot/common/tem.c
3007
addr = tem->tvs_screen_buf + (row * width + col);
usr/src/boot/common/tem.c
3015
screen_pos_t row, screen_pos_t col)
usr/src/boot/common/tem.c
3026
tem_virtual_display(tem, &c, 1, row, col);
usr/src/boot/common/tem.c
3027
col++;
usr/src/boot/common/tem.c
753
snprintf(buf, sizeof (buf), "%d", active->tvs_c_cursor.col);
usr/src/boot/common/tem.c
838
uint32_t col = 0;
usr/src/boot/common/tem.c
848
plat_tem_get_prom_pos(&row, &col);
usr/src/boot/common/tem.c
863
tem->tvs_s_cursor.col = tem->tvs_c_cursor.col = 0;
usr/src/boot/efi/libefi/efi_console.c
180
plat_tem_display_prom_cursor(screen_pos_t row, screen_pos_t col)
usr/src/boot/efi/libefi/efi_console.c
184
conout->SetCursorPosition(conout, col, row);
usr/src/boot/efi/libefi/efi_console.c
190
plat_tem_get_prom_pos(uint32_t *row, uint32_t *col)
usr/src/boot/efi/libefi/efi_console.c
193
*col = (uint32_t)conout->Mode->CursorColumn;
usr/src/boot/efi/libefi/efi_console.c
196
*col = 0;
usr/src/boot/efi/libefi/efi_console.c
339
UINTN col, row;
usr/src/boot/efi/libefi/efi_console.c
344
col = 0;
usr/src/boot/efi/libefi/efi_console.c
346
conout->SetCursorPosition(conout, col, row);
usr/src/boot/efi/libefi/efi_console.c
356
UINTN row, col;
usr/src/boot/efi/libefi/efi_console.c
364
(void) conout->QueryMode(conout, conout->Mode->Mode, &col, &row);
usr/src/boot/efi/libefi/efi_console.c
367
if (row - 1 == da->row && da->col == 0 && da->width == col)
usr/src/boot/efi/libefi/efi_console.c
379
col = da->col;
usr/src/boot/efi/libefi/efi_console.c
380
conout->SetCursorPosition(conout, col, row);
usr/src/boot/efi/libefi/efi_console.c
398
plat_tem_display_prom_cursor(cc->row, cc->col);
usr/src/boot/efi/libefi/efi_console.c
401
uint32_t row, col;
usr/src/boot/efi/libefi/efi_console.c
403
row = col = 0;
usr/src/boot/efi/libefi/efi_console.c
404
plat_tem_get_prom_pos(&row, &col);
usr/src/boot/efi/libefi/efi_console.c
406
cc->col = col;
usr/src/boot/i386/common/cons.c
55
getcursor(int *row, int *col)
usr/src/boot/i386/common/cons.c
65
if (col != NULL)
usr/src/boot/i386/common/cons.c
66
*col = v86.edx & 0xff;
usr/src/boot/i386/common/cons.c
72
int i, col;
usr/src/boot/i386/common/cons.c
79
col = 0;
usr/src/boot/i386/common/cons.c
80
getcursor(NULL, &col);
usr/src/boot/i386/common/cons.c
81
col = 8 - (col % 8);
usr/src/boot/i386/common/cons.c
82
for (i = 0; i < col; i++)
usr/src/boot/i386/libi386/vidconsole.c
149
plat_tem_get_prom_pos(uint32_t *row, uint32_t *col)
usr/src/boot/i386/libi386/vidconsole.c
155
*col = 0;
usr/src/boot/i386/libi386/vidconsole.c
159
*col = (uint32_t)x;
usr/src/boot/i386/libi386/vidconsole.c
476
addr = (struct cgatext *)vgatext + (da->row * TEXT_COLS + da->col);
usr/src/boot/i386/libi386/vidconsole.c
485
vidc_text_set_cursor(screen_pos_t row, screen_pos_t col, bool visible)
usr/src/boot/i386/libi386/vidconsole.c
495
addr = row * TEXT_COLS + col;
usr/src/boot/i386/libi386/vidconsole.c
507
vidc_text_get_cursor(screen_pos_t *row, screen_pos_t *col)
usr/src/boot/i386/libi386/vidconsole.c
515
*col = addr % TEXT_COLS;
usr/src/boot/i386/libi386/vidconsole.c
526
vidc_text_set_cursor(cc->row, cc->col, false);
usr/src/boot/i386/libi386/vidconsole.c
532
vidc_text_set_cursor(cc->row, cc->col, true);
usr/src/boot/i386/libi386/vidconsole.c
537
cc->col = 0;
usr/src/boot/i386/libi386/vidconsole.c
539
vidc_text_get_cursor(&cc->row, &cc->col);
usr/src/boot/sys/cddl/boot/zfs/zfssubr.c
1203
uint64_t q, r, c, bc, col, acols, scols, coff, devidx, asize, tot;
usr/src/boot/sys/cddl/boot/zfs/zfssubr.c
1238
col = f + c;
usr/src/boot/sys/cddl/boot/zfs/zfssubr.c
1240
if (col >= dcols) {
usr/src/boot/sys/cddl/boot/zfs/zfssubr.c
1241
col -= dcols;
usr/src/boot/sys/cddl/boot/zfs/zfssubr.c
1244
rm->rm_col[c].rc_devidx = col;
usr/src/boot/sys/sys/tem_impl.h
156
screen_pos_t col;
usr/src/cmd/audio/audioctl/audioctl.c
435
col_prt_t col;
usr/src/cmd/audio/audioctl/audioctl.c
438
col.col_nm = _("#CONTROL");
usr/src/cmd/audio/audioctl/audioctl.c
439
col.col_val = _("VALUE");
usr/src/cmd/audio/audioctl/audioctl.c
441
col.col_dv = _("DEVICE");
usr/src/cmd/audio/audioctl/audioctl.c
442
col.col_nm = _("CONTROL");
usr/src/cmd/audio/audioctl/audioctl.c
443
col.col_val = _("VALUE");
usr/src/cmd/audio/audioctl/audioctl.c
444
col.col_sel = _("POSSIBLE");
usr/src/cmd/audio/audioctl/audioctl.c
446
print_control_line(sfp, &col, vopt);
usr/src/cmd/audio/audioctl/audioctl.c
462
col_prt_t col;
usr/src/cmd/audio/audioctl/audioctl.c
558
col.col_dv = devnm;
usr/src/cmd/audio/audioctl/audioctl.c
559
col.col_nm = strlen(cinfop->ci.extname) ?
usr/src/cmd/audio/audioctl/audioctl.c
561
while (strchr(col.col_nm, '_') != NULL) {
usr/src/cmd/audio/audioctl/audioctl.c
562
col.col_nm = strchr(col.col_nm, '_') + 1;
usr/src/cmd/audio/audioctl/audioctl.c
564
col.col_val = valbuf;
usr/src/cmd/audio/audioctl/audioctl.c
565
col.col_sel = selbuf;
usr/src/cmd/audio/audioctl/audioctl.c
566
print_control_line(sfp, &col, vopt);
usr/src/cmd/audio/audioctl/audioctl.c
592
col.col_dv = NULL;
usr/src/cmd/audio/audioctl/audioctl.c
593
col.col_nm = NULL;
usr/src/cmd/audio/audioctl/audioctl.c
594
col.col_val = NULL;
usr/src/cmd/audio/audioctl/audioctl.c
595
col.col_sel = selbuf;
usr/src/cmd/audio/audioctl/audioctl.c
596
print_control_line(sfp, &col, vopt);
usr/src/cmd/beadm/beadm.c
208
struct col_info *col = hdr->cols;
usr/src/cmd/beadm/beadm.c
211
col[1].col_name = _("Active");
usr/src/cmd/beadm/beadm.c
212
col[2].col_name = _("Mountpoint");
usr/src/cmd/beadm/beadm.c
213
col[3].col_name = _("Space");
usr/src/cmd/beadm/beadm.c
214
col[4].col_name = _("Policy");
usr/src/cmd/beadm/beadm.c
215
col[5].col_name = _("Created");
usr/src/cmd/beadm/beadm.c
219
col[0].col_name = _("BE/Dataset/Snapshot");
usr/src/cmd/beadm/beadm.c
222
col[0].col_name = _("BE/Dataset");
usr/src/cmd/beadm/beadm.c
225
col[0].col_name = _("BE/Snapshot");
usr/src/cmd/beadm/beadm.c
226
col[1].col_name = NULL;
usr/src/cmd/beadm/beadm.c
227
col[2].col_name = NULL;
usr/src/cmd/beadm/beadm.c
231
col[0].col_name = _("BE");
usr/src/cmd/beadm/beadm.c
235
const char *name = col[i].col_name;
usr/src/cmd/beadm/beadm.c
236
col[i].width = 0;
usr/src/cmd/beadm/beadm.c
245
col[i].width = wcsw;
usr/src/cmd/beadm/beadm.c
247
col[i].width = sz;
usr/src/cmd/beadm/beadm.c
249
col[i].width = strlen(name);
usr/src/cmd/cmd-inet/usr.bin/pppdump/pppdump.c
100
int c, n, k, col;
usr/src/cmd/cmd-inet/usr.bin/pppdump/pppdump.c
113
col = 6;
usr/src/cmd/cmd-inet/usr.bin/pppdump/pppdump.c
138
if ((col += k) >= 78) {
usr/src/cmd/cmd-inet/usr.bin/pppdump/pppdump.c
140
col = 6 + k;
usr/src/cmd/cmd-inet/usr.bin/talk/display.c
240
readwin(win, line, col)
usr/src/cmd/cmd-inet/usr.bin/talk/display.c
242
int line, col;
usr/src/cmd/cmd-inet/usr.bin/talk/display.c
248
wmove(win, line, col);
usr/src/cmd/cmd-inet/usr.bin/telnet/commands.c
549
int col, len;
usr/src/cmd/cmd-inet/usr.bin/telnet/commands.c
555
col = 8;
usr/src/cmd/cmd-inet/usr.bin/telnet/commands.c
558
if (col + len > 65) {
usr/src/cmd/cmd-inet/usr.bin/telnet/commands.c
560
col = 8;
usr/src/cmd/cmd-inet/usr.bin/telnet/commands.c
563
col += len;
usr/src/cmd/compress/compress.c
1159
static int col = 0;
usr/src/cmd/compress/compress.c
1168
(col += 6) >= 74 ? (col = 0, '\n') : ' ');
usr/src/cmd/compress/compress.c
1247
col = 0;
usr/src/cmd/compress/compress.c
1460
int col = 0, bits;
usr/src/cmd/compress/compress.c
1474
col = 0;
usr/src/cmd/compress/compress.c
1477
code, (col += 6) >= 74 ? (col = 0, '\n') : ' ');
usr/src/cmd/devfsadm/devpolicy.c
107
char *line, *col;
usr/src/cmd/devfsadm/devpolicy.c
125
col = strchr(line, ':');
usr/src/cmd/devfsadm/devpolicy.c
127
if (col != NULL) {
usr/src/cmd/devfsadm/devpolicy.c
129
*col = '\0';
usr/src/cmd/devfsadm/devpolicy.c
131
if (modctl(MODGETMAJBIND, line, col - line + 1, &maj)
usr/src/cmd/devfsadm/devpolicy.c
135
line = col + 1;
usr/src/cmd/diff/diff.c
930
int col;
usr/src/cmd/diff/diff.c
986
col = 0;
usr/src/cmd/diff/diff.c
992
} while (++col & 7);
usr/src/cmd/diff/diff.c
995
col++;
usr/src/cmd/dumpcs/dumpcs.c
136
int col, i, position;
usr/src/cmd/dumpcs/dumpcs.c
141
col = SCRWID - bytes * 2 - 1;
usr/src/cmd/dumpcs/dumpcs.c
143
for (i = columns + 1; i <= col; i *= 2) cplmax *= 2;
usr/src/cmd/dumpcs/dumpcs.c
179
prcode(len, pos, min, max, col)
usr/src/cmd/dumpcs/dumpcs.c
180
int len, pos, min, max, col;
usr/src/cmd/dumpcs/dumpcs.c
193
(void) prcode(len, nextpos, min, max, col);
usr/src/cmd/dumpcs/dumpcs.c
236
for (i = 1; i <= col; i++)
usr/src/cmd/ed/ed.c
2358
col = 0;
usr/src/cmd/ed/ed.c
238
static int col;
usr/src/cmd/ed/ed.c
2410
if (col + 4 >= 72) {
usr/src/cmd/ed/ed.c
2411
col = 0;
usr/src/cmd/ed/ed.c
2417
col += 4;
usr/src/cmd/ed/ed.c
2423
if (col + len >= 72) {
usr/src/cmd/ed/ed.c
2424
col = 0;
usr/src/cmd/ed/ed.c
2428
col += len;
usr/src/cmd/ed/ed.c
2464
col += 2;
usr/src/cmd/ed/ed.c
2469
col += 2;
usr/src/cmd/ed/ed.c
2474
col += 2;
usr/src/cmd/ed/ed.c
2479
col += 2;
usr/src/cmd/ed/ed.c
2484
col += 2;
usr/src/cmd/ed/ed.c
2489
col += 2;
usr/src/cmd/ed/ed.c
2494
col += 2;
usr/src/cmd/ed/ed.c
2501
col += 2;
usr/src/cmd/ed/ed.c
2507
col += 1;
usr/src/cmd/ed/ed.c
2510
col += 4;
usr/src/cmd/ed/ed.c
2521
if (col + 1 >= 72) {
usr/src/cmd/ed/ed.c
2522
col = 0;
usr/src/cmd/eqn/e.y
74
| col '{' list '}' { column('-', $1); }
usr/src/cmd/eqn/e.y
80
col : COL { $$ = ct++; } ;
usr/src/cmd/fmt/fmt.c
169
int col;
usr/src/cmd/fmt/fmt.c
207
col = 0;
usr/src/cmd/fmt/fmt.c
212
col += scrwidth(c);
usr/src/cmd/fmt/fmt.c
220
col++;
usr/src/cmd/fmt/fmt.c
221
} while ((col & 07) != 0);
usr/src/cmd/fold/fold.c
194
if (col != 0) newline_init();
usr/src/cmd/fold/fold.c
211
ncol = col + chr_width(c);
usr/src/cmd/fold/fold.c
213
ncol = (col + 8) &~ 7;
usr/src/cmd/fold/fold.c
217
ncol = col + chr_width(c);
usr/src/cmd/fold/fold.c
219
ncol = col ? col - 1 : 0;
usr/src/cmd/fold/fold.c
223
ncol = col + chr_width(c);
usr/src/cmd/fold/fold.c
230
ncol = col + chr_width(c);
usr/src/cmd/fold/fold.c
232
ncol = col + wcwidth(c);
usr/src/cmd/fold/fold.c
269
col -= spcol;
usr/src/cmd/fold/fold.c
279
if (col > 0) {
usr/src/cmd/fold/fold.c
298
col = col + chr_width(c);
usr/src/cmd/fold/fold.c
300
col = (col + 8) &~ 7;
usr/src/cmd/fold/fold.c
309
col = ncol;
usr/src/cmd/fold/fold.c
311
if (col)
usr/src/cmd/fold/fold.c
312
col--;
usr/src/cmd/fold/fold.c
316
col = 0;
usr/src/cmd/fold/fold.c
325
col += chr_width(c);
usr/src/cmd/fold/fold.c
327
col += wcwidth(c);
usr/src/cmd/fold/fold.c
346
ncol = col = spcol = 0;
usr/src/cmd/fold/fold.c
63
static int col = 0;
usr/src/cmd/format/add_definition.c
187
int col;
usr/src/cmd/format/add_definition.c
194
col = add_entry(0, fd, " : ctlr = %s",
usr/src/cmd/format/add_definition.c
197
col = add_entry(col, fd, " : ncyl = %d", disk_type->dtype_ncyl);
usr/src/cmd/format/add_definition.c
199
col = add_entry(col, fd, " : acyl = %d", disk_type->dtype_acyl);
usr/src/cmd/format/add_definition.c
201
col = add_entry(col, fd, " : pcyl = %d", disk_type->dtype_pcyl);
usr/src/cmd/format/add_definition.c
203
col = add_entry(col, fd, " : nhead = %d", disk_type->dtype_nhead);
usr/src/cmd/format/add_definition.c
206
col = add_entry(col, fd, " : phead = %d",
usr/src/cmd/format/add_definition.c
210
col = add_entry(col, fd, " : nsect = %d", disk_type->dtype_nsect);
usr/src/cmd/format/add_definition.c
213
col = add_entry(col, fd, " : psect = %d",
usr/src/cmd/format/add_definition.c
218
col = add_entry(col, fd, " : bpt = %d", disk_type->dtype_bpt);
usr/src/cmd/format/add_definition.c
221
col = add_entry(col, fd, " : rpm = %d", disk_type->dtype_rpm);
usr/src/cmd/format/add_definition.c
224
col = add_entry(col, fd, " : fmt_time = %d",
usr/src/cmd/format/add_definition.c
229
col = add_entry(col, fd, " : cyl_skew = %d",
usr/src/cmd/format/add_definition.c
234
col = add_entry(col, fd, " : trk_skew = %d",
usr/src/cmd/format/add_definition.c
239
col = add_entry(col, fd, " : trks_zone = %d",
usr/src/cmd/format/add_definition.c
244
col = add_entry(col, fd, " : atrks = %d",
usr/src/cmd/format/add_definition.c
249
col = add_entry(col, fd, " : asect = %d",
usr/src/cmd/format/add_definition.c
254
col = add_entry(col, fd, " : cache = %d",
usr/src/cmd/format/add_definition.c
259
col = add_entry(col, fd, " : prefetch = %d",
usr/src/cmd/format/add_definition.c
264
col = add_entry(col, fd, " : min_prefetch = %d",
usr/src/cmd/format/add_definition.c
269
col = add_entry(col, fd, " : max_prefetch = %d",
usr/src/cmd/format/add_definition.c
274
col = add_entry(col, fd, " : bps = %d",
usr/src/cmd/format/add_definition.c
279
col = add_entry(col, fd, " : drive_type = %d",
usr/src/cmd/format/add_definition.c
286
(void) fprintf(fd, col == 0 ? "\n" : "\n\n");
usr/src/cmd/format/add_definition.c
303
int col;
usr/src/cmd/format/add_definition.c
330
col = 0;
usr/src/cmd/format/add_definition.c
336
col = add_entry(col, fd, " : %c = ",
usr/src/cmd/format/add_definition.c
342
col = add_entry(col, fd, " %s,", s);
usr/src/cmd/format/add_definition.c
346
col = add_entry(col, fd, " %s,", s);
usr/src/cmd/format/add_definition.c
349
col = add_entry(col, fd, " %d, %d", pp->dkl_cylno,
usr/src/cmd/format/add_definition.c
357
(void) fprintf(fd, col == 0 ? "\n" : "\n\n");
usr/src/cmd/format/add_definition.c
366
add_entry(int col, FILE *fd, char *format, ...)
usr/src/cmd/format/add_definition.c
371
if (col > MAX_COLUMNS) {
usr/src/cmd/format/add_definition.c
373
col = 0;
usr/src/cmd/format/add_definition.c
375
if (col == 0) {
usr/src/cmd/format/add_definition.c
376
col += fprintf(fd, "\t");
usr/src/cmd/format/add_definition.c
378
col += vfprintf(fd, format, ap);
usr/src/cmd/format/add_definition.c
381
return (col);
usr/src/cmd/format/add_definition.c
63
static int add_entry(int col, FILE *fd, char *format, ...);
usr/src/cmd/format/io.c
1704
int col;
usr/src/cmd/format/io.c
1735
col = 0;
usr/src/cmd/format/io.c
1738
if (col == 0)
usr/src/cmd/format/io.c
1741
(++col == ncols) ? 0 : width);
usr/src/cmd/format/io.c
1742
if (col == ncols) {
usr/src/cmd/format/io.c
1743
col = 0;
usr/src/cmd/format/io.c
1747
if (col != 0)
usr/src/cmd/idmap/idmapd/server.c
50
#define _VALIDATE_LIST_CB_DATA(col, val, siz)\
usr/src/cmd/idmap/idmapd/server.c
51
retcode = validate_list_cb_data(cb_data, argc, argv, col,\
usr/src/cmd/lp/filter/postscript/postprint/postprint.c
131
int col = 1; /* next character goes in this column */
usr/src/cmd/lp/filter/postscript/postprint/postprint.c
675
col++;
usr/src/cmd/lp/filter/postscript/postprint/postprint.c
786
endcol = col;
usr/src/cmd/lp/filter/postscript/postprint/postprint.c
805
if ( (i = endcol - col) >= 0 && i < 6 )
usr/src/cmd/lp/filter/postscript/postprint/postprint.c
811
col = stringstart = endcol;
usr/src/cmd/lp/filter/postscript/postprint/postprint.c
835
stringstart = col = 1;
usr/src/cmd/lp/filter/postscript/postprint/postprint.c
893
col++;
usr/src/cmd/lp/lib/oam/fmtmsg.c
109
int len, n, col;
usr/src/cmd/lp/lib/oam/fmtmsg.c
149
col = wcswidth(p, len);
usr/src/cmd/lp/lib/oam/fmtmsg.c
150
if (col > maxlen) {
usr/src/cmd/ls/ls.c
1208
int col, ncols = 1;
usr/src/cmd/ls/ls.c
1233
for (col = 0; col < ncols; col++) {
usr/src/cmd/ls/ls.c
1234
ep = slp + (nrows * col) + row;
usr/src/cmd/mailx/list.c
400
evalcol(int col)
usr/src/cmd/mailx/list.c
404
if (col == 0)
usr/src/cmd/mailx/list.c
407
if (colp->co_char == col)
usr/src/cmd/mailx/list.c
53
static int evalcol(int col);
usr/src/cmd/mailx/send.c
703
register int col = 4;
usr/src/cmd/mailx/send.c
710
if (col > 4) {
usr/src/cmd/mailx/send.c
711
if (col + len > 76) {
usr/src/cmd/mailx/send.c
713
col = 4;
usr/src/cmd/mailx/send.c
716
col += 2;
usr/src/cmd/mailx/send.c
720
col += len;
usr/src/cmd/mailx/tty.c
395
register int col;
usr/src/cmd/mailx/tty.c
398
for (col=Pcol, s=canonb; *s; s++)
usr/src/cmd/mailx/tty.c
401
while (++col % 8)
usr/src/cmd/mailx/tty.c
405
col--;
usr/src/cmd/mailx/tty.c
409
col++;
usr/src/cmd/mailx/tty.c
411
return(col);
usr/src/cmd/mandoc/html.c
1009
h->col++;
usr/src/cmd/mandoc/html.c
1013
if (h->col + h->bufcol < sizeof(h->buf)) {
usr/src/cmd/mandoc/html.c
1019
h->col = 0;
usr/src/cmd/mandoc/html.c
1025
h->col = (h->indent + 1) * 2 + h->bufcol + 1;
usr/src/cmd/mandoc/html.c
1037
if (h->col == 0)
usr/src/cmd/mandoc/html.c
1046
h->col = 0;
usr/src/cmd/mandoc/html.c
1064
h->col++;
usr/src/cmd/mandoc/html.c
1069
h->col += h->bufcol + 1;
usr/src/cmd/mandoc/html.c
1085
if (h->col || h->noindent)
usr/src/cmd/mandoc/html.c
1088
h->col = h->indent * 2;
usr/src/cmd/mandoc/html.c
1089
for (i = 0; i < h->col; i++)
usr/src/cmd/mandoc/html.c
671
if (h->col == 0)
usr/src/cmd/mandoc/html.c
923
if (h->col && (h->flags & HTML_NOSPACE) == 0) {
usr/src/cmd/mandoc/html.h
98
size_t col; /* current output byte position */
usr/src/cmd/mandoc/mandoc_msg.c
332
mandoc_msg(enum mandocerr t, int line, int col, const char *fmt, ...)
usr/src/cmd/mandoc/mandoc_msg.c
353
fprintf(fileptr, "%d:%d:", line, col + 1);
usr/src/cmd/mandoc/mdoc_html.c
1225
h->col = 1;
usr/src/cmd/mandoc/mdoc_html.c
365
h->col = 1;
usr/src/cmd/mandoc/mdoc_macro.c
441
dword(struct roff_man *mdoc, int line, int col, const char *p,
usr/src/cmd/mandoc/mdoc_macro.c
456
roff_word_alloc(mdoc, line, col, p);
usr/src/cmd/mandoc/mdoc_term.c
1812
if (p->col && ! (TERMP_NONOSPACE & p->flags))
usr/src/cmd/mandoc/out.c
124
struct roffcol *col;
usr/src/cmd/mandoc/out.c
153
icol = dp->layout->col;
usr/src/cmd/mandoc/out.c
156
col = tbl->cols + icol;
usr/src/cmd/mandoc/out.c
157
col->flags |= dp->layout->flags;
usr/src/cmd/mandoc/out.c
169
if (col->width < dp->layout->width)
usr/src/cmd/mandoc/out.c
170
col->width = dp->layout->width;
usr/src/cmd/mandoc/out.c
172
(col->spacing == SIZE_MAX ||
usr/src/cmd/mandoc/out.c
173
col->spacing < dp->layout->spacing))
usr/src/cmd/mandoc/out.c
174
col->spacing = dp->layout->spacing;
usr/src/cmd/mandoc/out.c
182
dp->hspans == 0 ? col : NULL,
usr/src/cmd/mandoc/out.c
221
col = tbl->cols + icol;
usr/src/cmd/mandoc/out.c
222
if (col->width < 1)
usr/src/cmd/mandoc/out.c
223
col->width = 1;
usr/src/cmd/mandoc/out.c
230
if (col->spacing == SIZE_MAX || icol == maxcol)
usr/src/cmd/mandoc/out.c
231
col->spacing = 3;
usr/src/cmd/mandoc/out.c
331
col = tbl->cols + icol;
usr/src/cmd/mandoc/out.c
332
if (col->width > col->nwidth)
usr/src/cmd/mandoc/out.c
333
col->decimal += (col->width - col->nwidth) / 2;
usr/src/cmd/mandoc/out.c
334
if (col->flags & TBL_CELL_EQUAL) {
usr/src/cmd/mandoc/out.c
336
if (ewidth < col->width)
usr/src/cmd/mandoc/out.c
337
ewidth = col->width;
usr/src/cmd/mandoc/out.c
339
if (col->flags & TBL_CELL_WMAX)
usr/src/cmd/mandoc/out.c
342
xwidth += col->width;
usr/src/cmd/mandoc/out.c
352
col = tbl->cols + icol;
usr/src/cmd/mandoc/out.c
353
if ( ! (col->flags & TBL_CELL_EQUAL))
usr/src/cmd/mandoc/out.c
355
if (col->width == ewidth)
usr/src/cmd/mandoc/out.c
358
xwidth += ewidth - col->width;
usr/src/cmd/mandoc/out.c
359
col->width = ewidth;
usr/src/cmd/mandoc/out.c
394
col = tbl->cols + icol;
usr/src/cmd/mandoc/out.c
395
if ( ! (col->flags & TBL_CELL_WMAX))
usr/src/cmd/mandoc/out.c
397
col->width = (double)xwidth * ++necol / nxcol
usr/src/cmd/mandoc/out.c
400
col->width--;
usr/src/cmd/mandoc/out.c
401
ewidth += col->width;
usr/src/cmd/mandoc/out.c
407
tblcalc_data(struct rofftbl *tbl, struct roffcol *col,
usr/src/cmd/mandoc/out.c
418
if (col != NULL && col->width < sz)
usr/src/cmd/mandoc/out.c
419
col->width = sz;
usr/src/cmd/mandoc/out.c
425
return tblcalc_literal(tbl, col, dp, mw);
usr/src/cmd/mandoc/out.c
427
return tblcalc_number(tbl, col, opts, dp);
usr/src/cmd/mandoc/out.c
436
tblcalc_literal(struct rofftbl *tbl, struct roffcol *col,
usr/src/cmd/mandoc/out.c
467
if (col != NULL && col->width < msz)
usr/src/cmd/mandoc/out.c
468
col->width = msz;
usr/src/cmd/mandoc/out.c
473
tblcalc_number(struct rofftbl *tbl, struct roffcol *col,
usr/src/cmd/mandoc/out.c
484
if (col == NULL)
usr/src/cmd/mandoc/out.c
509
if (col != NULL && col->width < totsz)
usr/src/cmd/mandoc/out.c
510
col->width = totsz;
usr/src/cmd/mandoc/out.c
531
if (intsz > col->decimal) {
usr/src/cmd/mandoc/out.c
532
col->nwidth += intsz - col->decimal;
usr/src/cmd/mandoc/out.c
533
col->decimal = intsz;
usr/src/cmd/mandoc/out.c
535
totsz += col->decimal - intsz;
usr/src/cmd/mandoc/out.c
539
if (totsz > col->nwidth)
usr/src/cmd/mandoc/out.c
540
col->nwidth = totsz;
usr/src/cmd/mandoc/out.c
541
if (col->nwidth > col->width)
usr/src/cmd/mandoc/out.c
542
col->width = col->nwidth;
usr/src/cmd/mandoc/roff.c
145
int col; /* parse col */
usr/src/cmd/mandoc/roff.c
1985
r->last->col, "%s", roff_name[r->last->tok]);
usr/src/cmd/mandoc/roff.c
718
int line, int col)
usr/src/cmd/mandoc/roff.c
728
p->col = col;
usr/src/cmd/mandoc/roff_html.c
113
h->col++;
usr/src/cmd/mandoc/roff_term.c
146
if (p->col) {
usr/src/cmd/mandoc/tbl.h
58
int col; /* Column number, starting from 0. */
usr/src/cmd/mandoc/tbl_data.c
119
pdat->layout->col < dat->layout->col)
usr/src/cmd/mandoc/tbl_data.c
304
if (rp->last->col + 1 < tbl->opts.cols)
usr/src/cmd/mandoc/tbl_data.c
78
if (dp->layout->last->col + 1 < dp->opts->cols) {
usr/src/cmd/mandoc/tbl_data.c
84
cp->col = dp->layout->last->col + 1;
usr/src/cmd/mandoc/tbl_html.c
118
const struct roffcol *col;
usr/src/cmd/mandoc/tbl_html.c
259
col = h->tbl.cols + dp->layout->col;
usr/src/cmd/mandoc/tbl_html.c
260
if (col->decimal < col->nwidth) {
usr/src/cmd/mandoc/tbl_html.c
268
sz = col->nwidth - col->decimal;
usr/src/cmd/mandoc/tbl_layout.c
316
rp->last->col + 1 == tbl->opts.cols &&
usr/src/cmd/mandoc/tbl_layout.c
367
p->col = pp->col + 1;
usr/src/cmd/mandoc/tbl_layout.c
372
if (tbl->opts.cols <= p->col)
usr/src/cmd/mandoc/tbl_layout.c
373
tbl->opts.cols = p->col + 1;
usr/src/cmd/mandoc/tbl_term.c
292
tp->col = 0;
usr/src/cmd/mandoc/tbl_term.c
429
if (tp->tcol->col < tp->tcol->lastcol)
usr/src/cmd/mandoc/tbl_term.c
431
if (tp->tcol->col < tp->tcol->lastcol)
usr/src/cmd/mandoc/tbl_term.c
498
sp->layout->last->col + 1 == sp->opts->cols)
usr/src/cmd/mandoc/tbl_term.c
502
sp->next->layout->last->col + 1 == sp->opts->cols)
usr/src/cmd/mandoc/tbl_term.c
506
sp->prev->layout->last->col + 1 == sp->opts->cols &&
usr/src/cmd/mandoc/tbl_term.c
513
sp->last->layout->col + 1 == sp->opts->cols) ||
usr/src/cmd/mandoc/tbl_term.c
515
sp->layout->last->col + 1 == sp->opts->cols) ? 2 :
usr/src/cmd/mandoc/tbl_term.c
519
sp->last->layout->col + 1 == sp->opts->cols) ||
usr/src/cmd/mandoc/tbl_term.c
521
sp->layout->last->col + 1 == sp->opts->cols) ? 1 : 0;
usr/src/cmd/mandoc/tbl_term.c
525
sp->layout->last->col + 1 < sp->opts->cols)) {
usr/src/cmd/mandoc/tbl_term.c
577
const struct roffcol *col; /* Contains width and spacing. */
usr/src/cmd/mandoc/tbl_term.c
613
col = tp->tbl.cols;
usr/src/cmd/mandoc/tbl_term.c
616
col++;
usr/src/cmd/mandoc/tbl_term.c
618
col = tp->tbl.cols + cp->col;
usr/src/cmd/mandoc/tbl_term.c
628
col->width + col->spacing / 2);
usr/src/cmd/mandoc/tbl_term.c
659
if (col + 1 == tp->tbl.cols + sp->opts->cols)
usr/src/cmd/mandoc/tbl_term.c
679
if (col->spacing)
usr/src/cmd/mandoc/tbl_term.c
689
if (col->spacing > 2)
usr/src/cmd/mandoc/tbl_term.c
695
if (col->spacing > 4)
usr/src/cmd/mandoc/tbl_term.c
697
BHORIZ * rw, (col->spacing - 3) / 2);
usr/src/cmd/mandoc/tbl_term.c
717
const struct roffcol *col)
usr/src/cmd/mandoc/tbl_term.c
721
tbl_fill_border(tp, BHORIZ, col->width);
usr/src/cmd/mandoc/tbl_term.c
724
tbl_fill_border(tp, BHORIZ * 2, col->width);
usr/src/cmd/mandoc/tbl_term.c
738
tbl_fill_border(tp, BHORIZ, col->width);
usr/src/cmd/mandoc/tbl_term.c
742
tbl_fill_border(tp, BHORIZ * 2, col->width);
usr/src/cmd/mandoc/tbl_term.c
753
tbl_literal(tp, dp, col);
usr/src/cmd/mandoc/tbl_term.c
756
tbl_number(tp, opts, dp, col);
usr/src/cmd/mandoc/tbl_term.c
813
const struct roffcol *col)
usr/src/cmd/mandoc/tbl_term.c
820
width = col->width;
usr/src/cmd/mandoc/tbl_term.c
821
ic = dp->layout->col;
usr/src/cmd/mandoc/tbl_term.c
856
const struct roffcol *col)
usr/src/cmd/mandoc/tbl_term.c
900
if (col->decimal > intsz && col->width > totsz) {
usr/src/cmd/mandoc/tbl_term.c
901
padl = col->decimal - intsz;
usr/src/cmd/mandoc/tbl_term.c
902
if (padl + totsz > col->width)
usr/src/cmd/mandoc/tbl_term.c
903
padl = col->width - totsz;
usr/src/cmd/mandoc/tbl_term.c
908
} else if (col->width > totsz)
usr/src/cmd/mandoc/tbl_term.c
909
padl = (col->width - totsz) / 2;
usr/src/cmd/mandoc/tbl_term.c
916
if (col->width > padl + totsz)
usr/src/cmd/mandoc/tbl_term.c
917
tbl_fill_char(tp, ASCII_NBRSP, col->width - padl - totsz);
usr/src/cmd/mandoc/term.c
114
p->tcol->col = 0;
usr/src/cmd/mandoc/term.c
167
for (ic = p->tcol->col; ic < p->tcol->lastcol; ic++) {
usr/src/cmd/mandoc/term.c
193
while (p->tcol->col < p->tcol->lastcol &&
usr/src/cmd/mandoc/term.c
194
p->tcol->buf[p->tcol->col] == ' ')
usr/src/cmd/mandoc/term.c
195
p->tcol->col++;
usr/src/cmd/mandoc/term.c
224
p->col = p->tcol->col = p->tcol->lastcol = 0;
usr/src/cmd/mandoc/term.c
263
for (ic = p->tcol->col; ic < p->tcol->lastcol; ic++) {
usr/src/cmd/mandoc/term.c
358
for (ic = p->tcol->col; ic < nbr; ic++) {
usr/src/cmd/mandoc/term.c
408
p->tcol->col = nbr;
usr/src/cmd/mandoc/term.c
632
uc = -p->col;
usr/src/cmd/mandoc/term.c
641
else if (p->col > (size_t)(-uc))
usr/src/cmd/mandoc/term.c
642
p->col += uc;
usr/src/cmd/mandoc/term.c
644
uc += p->col;
usr/src/cmd/mandoc/term.c
645
p->col = 0;
usr/src/cmd/mandoc/term.c
728
if (p->col > p->tcol->lastcol)
usr/src/cmd/mandoc/term.c
729
p->col = p->tcol->lastcol;
usr/src/cmd/mandoc/term.c
770
if (p->col + 1 >= p->tcol->maxcols)
usr/src/cmd/mandoc/term.c
771
adjbuf(p->tcol, p->col + 1);
usr/src/cmd/mandoc/term.c
772
if (p->tcol->lastcol <= p->col || (c != ' ' && c != ASCII_NBRSP))
usr/src/cmd/mandoc/term.c
773
p->tcol->buf[p->col] = c;
usr/src/cmd/mandoc/term.c
774
if (p->tcol->lastcol < ++p->col)
usr/src/cmd/mandoc/term.c
775
p->tcol->lastcol = p->col;
usr/src/cmd/mandoc/term.c
793
if (p->col + 7 >= p->tcol->maxcols)
usr/src/cmd/mandoc/term.c
794
adjbuf(p->tcol, p->col + 7);
usr/src/cmd/mandoc/term.c
800
if (p->tcol->buf[p->col - 1] == ' ' ||
usr/src/cmd/mandoc/term.c
801
p->tcol->buf[p->col - 1] == '\t')
usr/src/cmd/mandoc/term.c
802
p->col--;
usr/src/cmd/mandoc/term.c
804
p->tcol->buf[p->col++] = '\b';
usr/src/cmd/mandoc/term.c
808
p->tcol->buf[p->col++] = '_';
usr/src/cmd/mandoc/term.c
809
p->tcol->buf[p->col++] = '\b';
usr/src/cmd/mandoc/term.c
813
p->tcol->buf[p->col++] = '-';
usr/src/cmd/mandoc/term.c
815
p->tcol->buf[p->col++] = c;
usr/src/cmd/mandoc/term.c
816
p->tcol->buf[p->col++] = '\b';
usr/src/cmd/mandoc/term.c
818
if (p->tcol->lastcol <= p->col || (c != ' ' && c != ASCII_NBRSP))
usr/src/cmd/mandoc/term.c
819
p->tcol->buf[p->col] = c;
usr/src/cmd/mandoc/term.c
820
if (p->tcol->lastcol < ++p->col)
usr/src/cmd/mandoc/term.c
821
p->tcol->lastcol = p->col;
usr/src/cmd/mandoc/term.c
839
if (p->col + 2 + (sz * 5) >= p->tcol->maxcols)
usr/src/cmd/mandoc/term.c
840
adjbuf(p->tcol, p->col + 2 + (sz * 5));
usr/src/cmd/mandoc/term.c
847
if (p->tcol->lastcol <= p->col ||
usr/src/cmd/mandoc/term.c
849
p->tcol->buf[p->col] = word[i];
usr/src/cmd/mandoc/term.c
850
p->col++;
usr/src/cmd/mandoc/term.c
864
if (p->tcol->lastcol < p->col)
usr/src/cmd/mandoc/term.c
865
p->tcol->lastcol = p->col;
usr/src/cmd/mandoc/term.h
56
size_t col; /* Byte in buf to be written. */
usr/src/cmd/mandoc/term.h
72
size_t col; /* Byte position in buf. */
usr/src/cmd/mandoc/tree.c
472
printf("%d", cp->col);
usr/src/cmd/more/more.c
1523
int row, col;
usr/src/cmd/more/more.c
1528
row = col = -1;
usr/src/cmd/more/more.c
1533
col = w.ws_col;
usr/src/cmd/more/more.c
1539
if (col < 0) {
usr/src/cmd/more/more.c
1541
col = atoi(s);
usr/src/cmd/more/more.c
1550
if (col > 0)
usr/src/cmd/more/more.c
1551
Mcol = col;
usr/src/cmd/more/more.c
213
static void prmpt_erase(register int col);
usr/src/cmd/more/more.c
855
prmpt_erase(register int col)
usr/src/cmd/more/more.c
864
if (col == 0)
usr/src/cmd/more/more.c
869
for (col = promptlen - col; col > 0; col--)
usr/src/cmd/nvmeadm/nvmeadm_phyeye.c
841
for (uint16_t col = 0; col < desc->eld_ncols; col++) {
usr/src/cmd/nvmeadm/nvmeadm_phyeye.c
842
const uint32_t off = row * desc->eld_ncols + col;
usr/src/cmd/pg/pg.c
1721
erase_line(int col)
usr/src/cmd/pg/pg.c
1729
if (col == 0)
usr/src/cmd/pg/pg.c
1737
for (col = promptlen - col; col > 0; col--)
usr/src/cmd/raidz_test/raidz_test.c
232
raidz_col_t *col;
usr/src/cmd/raidz_test/raidz_test.c
235
col = &rm->rm_col[tgts[i]];
usr/src/cmd/raidz_test/raidz_test.c
236
(void) abd_iterate_func(col->rc_abd, 0, col->rc_size,
usr/src/cmd/rcap/rcapstat/rcapstat.c
107
col_remove(col_t *col)
usr/src/cmd/rcap/rcapstat/rcapstat.c
109
if (col->col_prev != NULL)
usr/src/cmd/rcap/rcapstat/rcapstat.c
110
col->col_prev->col_next = col->col_next;
usr/src/cmd/rcap/rcapstat/rcapstat.c
111
if (col->col_next != NULL)
usr/src/cmd/rcap/rcapstat/rcapstat.c
112
col->col_next->col_prev = col->col_prev;
usr/src/cmd/rcap/rcapstat/rcapstat.c
113
if (col_head == col)
usr/src/cmd/rcap/rcapstat/rcapstat.c
114
col_head = col->col_next;
usr/src/cmd/rcap/rcapstat/rcapstat.c
116
free(col);
usr/src/cmd/rcap/rcapstat/rcapstat.c
150
col_t *col, *col_next;
usr/src/cmd/rcap/rcapstat/rcapstat.c
183
for (col = col_head; col != NULL; col = col->col_next) {
usr/src/cmd/rcap/rcapstat/rcapstat.c
184
col->col_fresh = 0;
usr/src/cmd/rcap/rcapstat/rcapstat.c
185
col->col_paged_eff = 0;
usr/src/cmd/rcap/rcapstat/rcapstat.c
186
col->col_paged_att = 0;
usr/src/cmd/rcap/rcapstat/rcapstat.c
193
col = col_find(report.lcol_id);
usr/src/cmd/rcap/rcapstat/rcapstat.c
194
if (col == NULL) {
usr/src/cmd/rcap/rcapstat/rcapstat.c
195
col = col_insert(report.lcol_id);
usr/src/cmd/rcap/rcapstat/rcapstat.c
196
col->col_paged_eff_old = col->col_paged_eff =
usr/src/cmd/rcap/rcapstat/rcapstat.c
198
col->col_paged_att_old = col->col_paged_att =
usr/src/cmd/rcap/rcapstat/rcapstat.c
200
col->col_count = 0;
usr/src/cmd/rcap/rcapstat/rcapstat.c
202
(void) strncpy(col->col_name, report.lcol_name, LC_NAME_LEN);
usr/src/cmd/rcap/rcapstat/rcapstat.c
203
col->col_vmsize = report.lcol_image_size;
usr/src/cmd/rcap/rcapstat/rcapstat.c
204
col->col_rsssize = report.lcol_rss;
usr/src/cmd/rcap/rcapstat/rcapstat.c
205
col->col_rsslimit = report.lcol_rss_cap;
usr/src/cmd/rcap/rcapstat/rcapstat.c
206
col->col_fresh = 1;
usr/src/cmd/rcap/rcapstat/rcapstat.c
207
if (report.lcol_stat.lcols_pg_eff > col->col_paged_eff_old) {
usr/src/cmd/rcap/rcapstat/rcapstat.c
208
col->col_paged_eff =
usr/src/cmd/rcap/rcapstat/rcapstat.c
210
col->col_paged_eff_old;
usr/src/cmd/rcap/rcapstat/rcapstat.c
211
if (report.lcol_stat.lcols_scan_count > col->col_count)
usr/src/cmd/rcap/rcapstat/rcapstat.c
212
col->col_paged_eff_avg =
usr/src/cmd/rcap/rcapstat/rcapstat.c
213
col->col_paged_eff /
usr/src/cmd/rcap/rcapstat/rcapstat.c
215
col->col_count);
usr/src/cmd/rcap/rcapstat/rcapstat.c
217
col->col_paged_eff_avg = 0;
usr/src/cmd/rcap/rcapstat/rcapstat.c
219
if (report.lcol_stat.lcols_pg_att > col->col_paged_att_old) {
usr/src/cmd/rcap/rcapstat/rcapstat.c
220
col->col_paged_att =
usr/src/cmd/rcap/rcapstat/rcapstat.c
222
col->col_paged_att_old;
usr/src/cmd/rcap/rcapstat/rcapstat.c
223
if (report.lcol_stat.lcols_scan_count > col->col_count)
usr/src/cmd/rcap/rcapstat/rcapstat.c
224
col->col_paged_att_avg =
usr/src/cmd/rcap/rcapstat/rcapstat.c
225
col->col_paged_att /
usr/src/cmd/rcap/rcapstat/rcapstat.c
227
col->col_count);
usr/src/cmd/rcap/rcapstat/rcapstat.c
229
col->col_paged_att_avg = 0;
usr/src/cmd/rcap/rcapstat/rcapstat.c
231
col->col_paged_eff_old = report.lcol_stat.lcols_pg_eff;
usr/src/cmd/rcap/rcapstat/rcapstat.c
232
col->col_paged_att_old = report.lcol_stat.lcols_pg_att;
usr/src/cmd/rcap/rcapstat/rcapstat.c
233
col->col_nproc =
usr/src/cmd/rcap/rcapstat/rcapstat.c
236
col->col_count = report.lcol_stat.lcols_scan_count;
usr/src/cmd/rcap/rcapstat/rcapstat.c
237
col->col_src_stat = report.lcol_stat;
usr/src/cmd/rcap/rcapstat/rcapstat.c
243
col = col_head;
usr/src/cmd/rcap/rcapstat/rcapstat.c
244
while (col != NULL) {
usr/src/cmd/rcap/rcapstat/rcapstat.c
245
col_next = col->col_next;
usr/src/cmd/rcap/rcapstat/rcapstat.c
246
if (col->col_fresh == 0)
usr/src/cmd/rcap/rcapstat/rcapstat.c
247
col_remove(col);
usr/src/cmd/rcap/rcapstat/rcapstat.c
248
col = col_next;
usr/src/cmd/rcap/rcapstat/rcapstat.c
261
col_t *col;
usr/src/cmd/rcap/rcapstat/rcapstat.c
264
(col->col_src_stat.field - col->col_old_stat.field)
usr/src/cmd/rcap/rcapstat/rcapstat.c
266
col = col_head;
usr/src/cmd/rcap/rcapstat/rcapstat.c
267
while (col != NULL) {
usr/src/cmd/rcap/rcapstat/rcapstat.c
268
if (bcmp(&col->col_src_stat, &col->col_old_stat,
usr/src/cmd/rcap/rcapstat/rcapstat.c
269
sizeof (col->col_src_stat)) == 0) {
usr/src/cmd/rcap/rcapstat/rcapstat.c
270
col = col->col_next;
usr/src/cmd/rcap/rcapstat/rcapstat.c
277
mode, col->col_name, DELTA(lcols_pg_eff),
usr/src/cmd/rcap/rcapstat/rcapstat.c
280
DELTA(lcols_rss_sample), col->col_src_stat.lcols_min_rss,
usr/src/cmd/rcap/rcapstat/rcapstat.c
281
col->col_src_stat.lcols_max_rss, col->col_rsslimit,
usr/src/cmd/rcap/rcapstat/rcapstat.c
282
(col->col_src_stat.lcols_proc_in -
usr/src/cmd/rcap/rcapstat/rcapstat.c
283
col->col_old_stat.lcols_proc_out), DELTA(lcols_proc_out),
usr/src/cmd/rcap/rcapstat/rcapstat.c
286
col->col_old_stat = col->col_src_stat;
usr/src/cmd/rcap/rcapstat/rcapstat.c
288
col = col->col_next;
usr/src/cmd/rcap/rcapstat/rcapstat.c
301
col_t *col;
usr/src/cmd/rcap/rcapstat/rcapstat.c
325
for (col = col_head; col != NULL; col = col->col_next) {
usr/src/cmd/rcap/rcapstat/rcapstat.c
326
if (col->col_id.rcid_type != stat_type)
usr/src/cmd/rcap/rcapstat/rcapstat.c
329
if (col->col_paged_att == 0)
usr/src/cmd/rcap/rcapstat/rcapstat.c
333
col->col_nproc);
usr/src/cmd/rcap/rcapstat/rcapstat.c
334
format_size(size, col->col_vmsize, 6);
usr/src/cmd/rcap/rcapstat/rcapstat.c
335
format_size(rss, col->col_rsssize, 6);
usr/src/cmd/rcap/rcapstat/rcapstat.c
336
format_size(limit, col->col_rsslimit, 6);
usr/src/cmd/rcap/rcapstat/rcapstat.c
337
format_size(paged_att, col->col_paged_att, 6);
usr/src/cmd/rcap/rcapstat/rcapstat.c
338
format_size(paged_eff, col->col_paged_eff, 6);
usr/src/cmd/rcap/rcapstat/rcapstat.c
339
format_size(paged_att_avg, col->col_paged_att_avg, 6);
usr/src/cmd/rcap/rcapstat/rcapstat.c
340
format_size(paged_eff_avg, col->col_paged_eff_avg, 6);
usr/src/cmd/rcap/rcapstat/rcapstat.c
342
col->col_id.rcid_val, col->col_name,
usr/src/cmd/rcap/rcapstat/rcapstat.c
66
struct col *col_next;
usr/src/cmd/rcap/rcapstat/rcapstat.c
67
struct col *col_prev;
usr/src/cmd/rcap/rcapstat/rcapstat.c
78
col_t *col;
usr/src/cmd/rcap/rcapstat/rcapstat.c
79
for (col = col_head; col != NULL; col = col->col_next)
usr/src/cmd/rcap/rcapstat/rcapstat.c
80
if (col->col_id.rcid_type == id.rcid_type &&
usr/src/cmd/rcap/rcapstat/rcapstat.c
81
col->col_id.rcid_val == id.rcid_val)
usr/src/cmd/rcap/rcapstat/rcapstat.c
82
return (col);
usr/src/cmd/sed/process.c
580
int c, col, width;
usr/src/cmd/sed/process.c
603
col = 0;
usr/src/cmd/sed/process.c
614
if (col + 1 >= termwidth)
usr/src/cmd/sed/process.c
618
col = 0;
usr/src/cmd/sed/process.c
621
if (col + width >= termwidth) {
usr/src/cmd/sed/process.c
623
col = 0;
usr/src/cmd/sed/process.c
626
col += width;
usr/src/cmd/sed/process.c
629
if (col + 2 >= termwidth) {
usr/src/cmd/sed/process.c
631
col = 0;
usr/src/cmd/sed/process.c
635
col += 2;
usr/src/cmd/sed/process.c
637
if (col + 4 * clen >= (unsigned)termwidth) {
usr/src/cmd/sed/process.c
639
col = 0;
usr/src/cmd/sed/process.c
644
col += 4 * clen;
usr/src/cmd/sed/process.c
649
if (col + 1 >= termwidth)
usr/src/cmd/sendmail/src/map.c
2892
# define EN_col(col) zo_data.objdata_u.en_data.en_cols.en_cols_val[(col)].ec_value.ec_value_val
usr/src/cmd/sendmail/src/util.c
2208
get_column(line, col, delim, buf, buflen)
usr/src/cmd/sendmail/src/util.c
2210
int col;
usr/src/cmd/sendmail/src/util.c
2231
if (*p == (char) delim && col == 0)
usr/src/cmd/sendmail/src/util.c
2236
if (col == 0 && (char) delim == '\0')
usr/src/cmd/sendmail/src/util.c
2242
for (i = 0; i < col; i++)
usr/src/cmd/sgs/liblddbg/common/syms.c
436
int col, Sym *osym, Sym *nsym, Sym_desc *sdp, Ifl_desc *ifl)
usr/src/cmd/sgs/liblddbg/common/syms.c
446
Dbg_demangle_name(name), row, col);
usr/src/cmd/stat/iostat/iostat.c
1009
col = 0;
usr/src/cmd/stat/iostat/iostat.c
1017
col += strlen(knp[i].name);
usr/src/cmd/stat/iostat/iostat.c
1027
col += strlen(disk->is_devid);
usr/src/cmd/stat/iostat/iostat.c
1037
col += strnlen(&knp[i].value.c[0], 16);
usr/src/cmd/stat/iostat/iostat.c
1041
col +=
usr/src/cmd/stat/iostat/iostat.c
1048
col += 4;
usr/src/cmd/stat/iostat/iostat.c
1059
col = 0;
usr/src/cmd/stat/iostat/iostat.c
1064
col += 4;
usr/src/cmd/stat/iostat/iostat.c
1067
if ((col >= 62) || (i == 2)) {
usr/src/cmd/stat/iostat/iostat.c
1069
col = 0;
usr/src/cmd/stat/iostat/iostat.c
1072
if (col > 0) {
usr/src/cmd/stat/iostat/iostat.c
986
size_t col;
usr/src/cmd/svc/svcs/svcs.c
3397
add_sort_column(const char *col, int reverse)
usr/src/cmd/svc/svcs/svcs.c
3408
if (strcasecmp(col, columns[i].name) == 0)
usr/src/cmd/svc/svcs/svcs.c
3415
uu_die(gettext("Unrecognized sort column \"%s\".\n"), col);
usr/src/cmd/tbl/t..c
56
struct colstr {char *col, *rcol;};
usr/src/cmd/tbl/t5.c
104
table[nlin][icol].col = "";
usr/src/cmd/tbl/t5.c
162
start = table[is][jcol].col;
usr/src/cmd/tbl/t5.c
166
table[--irow][jcol].col = start;
usr/src/cmd/tbl/t5.c
171
table[is][jcol].col= SPAN;
usr/src/cmd/tbl/t5.c
189
return(vspen(table[ir][ij].col));
usr/src/cmd/tbl/t5.c
72
table[nlin][icol].col = cstore;
usr/src/cmd/tbl/t5.c
77
table[nlin][icol].col =
usr/src/cmd/tbl/t5.c
90
(char *)maknew(table[nlin][icol].col);
usr/src/cmd/tbl/t5.c
93
table[nlin][icol].rcol = table[nlin][icol].col;
usr/src/cmd/tbl/t5.c
94
table[nlin][icol].col = "";
usr/src/cmd/tbl/t5.c
99
table[nlin][++icol].col = "";
usr/src/cmd/tbl/t6.c
113
s=table[ilin][icol-k].col;
usr/src/cmd/tbl/t6.c
116
wide(table[ilin][icol-k].col, FN(ilin,icol-k), SZ(ilin,icol-k));
usr/src/cmd/tbl/t6.c
43
for(il=prev(ilin); il>=0 && vspen(table[il][icol].col); il=prev(il))
usr/src/cmd/tbl/t6.c
46
if (filler(table[ilin][icol].col)) continue;
usr/src/cmd/tbl/t6.c
51
s = table[ilin][icol].col;
usr/src/cmd/tbl/t6.c
66
if (real(s=table[ilin][icol].col) && !vspen(s))
usr/src/cmd/tbl/t6.c
84
if (real(s=table[ilin][icol].col) && !vspen(s))
usr/src/cmd/tbl/t7.c
54
for(lf=prev(lform); lf>=0 && vspen(table[lf][c].col); lf=prev(lf))
usr/src/cmd/tbl/t8.c
101
if (lf>=0 && vspen(table[lf][c].col))
usr/src/cmd/tbl/t8.c
130
for(lf=prev(nl); lf>=0 && vspen(table[lf][c].col); lf=prev(lf))
usr/src/cmd/tbl/t8.c
140
s= table[nl][c].col;
usr/src/cmd/tbl/t8.c
154
if (vspen(table[ip][c].col))
usr/src/cmd/tbl/t8.c
183
if (real(table[nl][c].col))
usr/src/cmd/tbl/t8.c
206
if (vspen(table[ip][c].col))
usr/src/cmd/tbl/t8.c
229
if (vspen(table[ip][c].col))
usr/src/cmd/tbl/t8.c
231
exvspen = (c+1 < ncol) && vspen(table[ip][c+1].col) &&
usr/src/cmd/tbl/t8.c
259
if (vspen(table[nl][c].col) && (nl==0 || (lf=prev(nl))<0 || !vspen(table[lf][c].col)))
usr/src/cmd/tbl/t8.c
290
s = (int)table[lin][c].col;
usr/src/cmd/tbl/t8.c
317
if (stl>0 && pl>=0 && vspen(table[pl][c].col))
usr/src/cmd/tbl/t8.c
48
s = table[nl][c].col;
usr/src/cmd/tbl/t8.c
53
if (!vspen(s=table[ip][c].col)) break;
usr/src/cmd/tbl/t8.c
83
if (vspen(table[nl][c].col)) vspf=1;
usr/src/cmd/tbl/t8.c
85
if (vspen(table[lf][c].col)) vspf=1;
usr/src/cmd/tbl/t8.c
96
s = table[nl][c].col;
usr/src/cmd/tbl/t9.c
59
table[0][icol].col = dataln;
usr/src/cmd/tbl/t9.c
67
table[0][icol].rcol = maknew(table[0][icol].col);
usr/src/cmd/tbl/t9.c
70
table[0][icol].rcol = table[0][icol].col;
usr/src/cmd/tbl/t9.c
71
table[0][icol].col= "";
usr/src/cmd/tbl/t9.c
75
table[0][++icol].col = "";
usr/src/cmd/tbl/t9.c
79
table[0][icol].col = "";
usr/src/cmd/tbl/tb.c
35
used[c] |= real(table[i][c].col);
usr/src/cmd/tbl/tb.c
37
lused[c] |= real(table[i][c].col);
usr/src/cmd/tbl/tb.c
40
used[c] |= real(table[i][c].col);
usr/src/cmd/tbl/tc.c
36
s = table[ilin][icol].col;
usr/src/cmd/tbl/tt.c
108
s = (t=='a' ? pc->rcol : pc->col);
usr/src/cmd/tbl/tu.c
27
shortl = (table[i][c].col[0]=='\\');
usr/src/cmd/tbl/tv.c
145
if (ct=barent(table[i][c].col))
usr/src/cmd/tip/value.c
136
if (col > 0) {
usr/src/cmd/tip/value.c
138
col = 0;
usr/src/cmd/tip/value.c
17
static int col = 0;
usr/src/cmd/tip/value.c
189
if (col > 0 && col < MIDDLE)
usr/src/cmd/tip/value.c
190
while (col++ < MIDDLE)
usr/src/cmd/tip/value.c
192
col += strlen(p->v_name);
usr/src/cmd/tip/value.c
197
col++;
usr/src/cmd/tip/value.c
205
col++;
usr/src/cmd/tip/value.c
208
col += strlen(cp);
usr/src/cmd/tip/value.c
214
col += 6;
usr/src/cmd/tip/value.c
220
col++;
usr/src/cmd/tip/value.c
223
col += strlen(cp);
usr/src/cmd/tip/value.c
228
if (col >= MIDDLE) {
usr/src/cmd/tip/value.c
229
col = 0;
usr/src/cmd/ul/ul.c
176
if (col > 0)
usr/src/cmd/ul/ul.c
177
col--;
usr/src/cmd/ul/ul.c
181
col = (col+8) & ~07;
usr/src/cmd/ul/ul.c
182
if (col > maxcol)
usr/src/cmd/ul/ul.c
183
maxcol = col;
usr/src/cmd/ul/ul.c
187
col = 0;
usr/src/cmd/ul/ul.c
238
if (obuf[col].c_char)
usr/src/cmd/ul/ul.c
239
obuf[col].c_mode |= UNDERL | mode;
usr/src/cmd/ul/ul.c
241
obuf[col].c_char = '_';
usr/src/cmd/ul/ul.c
245
col++;
usr/src/cmd/ul/ul.c
246
if (col > maxcol)
usr/src/cmd/ul/ul.c
247
maxcol = col;
usr/src/cmd/ul/ul.c
257
if (obuf[col].c_char == L'\0') {
usr/src/cmd/ul/ul.c
258
obuf[col].c_char = c;
usr/src/cmd/ul/ul.c
259
obuf[col].c_mode = mode;
usr/src/cmd/ul/ul.c
262
obuf[++col].c_char = CDUMMY;
usr/src/cmd/ul/ul.c
263
} else if (obuf[col].c_char == L'_') {
usr/src/cmd/ul/ul.c
264
obuf[col].c_char = c;
usr/src/cmd/ul/ul.c
265
obuf[col].c_mode |= UNDERL|mode;
usr/src/cmd/ul/ul.c
268
obuf[++col].c_char = CDUMMY;
usr/src/cmd/ul/ul.c
269
} else if (obuf[col].c_char == c)
usr/src/cmd/ul/ul.c
270
obuf[col].c_mode |= BOLD|mode;
usr/src/cmd/ul/ul.c
272
obuf[col].c_char = c;
usr/src/cmd/ul/ul.c
273
obuf[col].c_mode = mode;
usr/src/cmd/ul/ul.c
275
col++;
usr/src/cmd/ul/ul.c
276
if (col > maxcol)
usr/src/cmd/ul/ul.c
277
maxcol = col;
usr/src/cmd/ul/ul.c
488
col = 0;
usr/src/cmd/ul/ul.c
498
oldcol = col;
usr/src/cmd/ul/ul.c
501
col = oldcol;
usr/src/cmd/ul/ul.c
63
int col, maxcol;
usr/src/cmd/vi/port/ex_get.c
258
smunch(int col, unsigned char *ocp)
usr/src/cmd/vi/port/ex_get.c
267
col++;
usr/src/cmd/vi/port/ex_get.c
271
col += value(vi_TABSTOP) - (col % value(vi_TABSTOP));
usr/src/cmd/vi/port/ex_get.c
277
return (col);
usr/src/cmd/vi/port/ex_put.c
521
gotab(int col)
usr/src/cmd/vi/port/ex_put.c
525
destcol = col;
usr/src/cmd/vi/port/ex_subr.c
572
int col;
usr/src/cmd/vi/port/ex_subr.c
594
if ((col = wcwidth(wchar)) < 0)
usr/src/cmd/vi/port/ex_subr.c
595
col = 0;
usr/src/cmd/vi/port/ex_subr.c
596
vcntcol = vcntcol - col + 1;
usr/src/cmd/vi/port/ex_subr.c
839
tabcol(int col, int ts)
usr/src/cmd/vi/port/ex_subr.c
843
if (col >= columns) {
usr/src/cmd/vi/port/ex_subr.c
844
offset = columns * (col/columns);
usr/src/cmd/vi/port/ex_subr.c
845
col -= offset;
usr/src/cmd/vi/port/ex_subr.c
848
result = col + ts - (col % ts) + offset;
usr/src/cmd/vi/port/ex_vput.c
274
int col;
usr/src/cmd/vi/port/ex_vput.c
276
col = column(nc);
usr/src/cmd/vi/port/ex_vput.c
278
col--;
usr/src/cmd/vi/port/ex_vput.c
279
vgotoCL(col);
usr/src/cmd/vi/port/ex_vput.c
393
int col;
usr/src/cmd/vi/port/ex_vput.c
438
if ((col = wcwidth(c)) < 0)
usr/src/cmd/vi/port/ex_vput.c
439
col = 0;
usr/src/cmd/vi/port/ex_vput.c
441
col = 1;
usr/src/cmd/vi/port/ex_vput.c
442
outcol += col;
usr/src/cmd/vi/port/ex_vput.c
805
int col;
usr/src/cmd/vi/port/ex_vput.c
808
for (col = tabend; col < linend; col++)
usr/src/cmd/vi/port/ex_vput.c
811
vgotoCL(col);
usr/src/cmd/zfs/zfs_iter.c
159
zfs_sort_column_t *col;
usr/src/cmd/zfs/zfs_iter.c
166
col = safe_malloc(sizeof (zfs_sort_column_t));
usr/src/cmd/zfs/zfs_iter.c
168
col->sc_prop = prop;
usr/src/cmd/zfs/zfs_iter.c
169
col->sc_reverse = reverse;
usr/src/cmd/zfs/zfs_iter.c
171
col->sc_user_prop = safe_malloc(strlen(name) + 1);
usr/src/cmd/zfs/zfs_iter.c
172
(void) strcpy(col->sc_user_prop, name);
usr/src/cmd/zfs/zfs_iter.c
176
col->sc_last = col;
usr/src/cmd/zfs/zfs_iter.c
177
*sc = col;
usr/src/cmd/zfs/zfs_iter.c
179
(*sc)->sc_last->sc_next = col;
usr/src/cmd/zfs/zfs_iter.c
180
(*sc)->sc_last = col;
usr/src/cmd/zfs/zfs_iter.c
189
zfs_sort_column_t *col;
usr/src/cmd/zfs/zfs_iter.c
192
col = sc->sc_next;
usr/src/cmd/zfs/zfs_iter.c
195
sc = col;
usr/src/cmd/zfs/zfs_main.c
1654
zfs_get_column_t col;
usr/src/cmd/zfs/zfs_main.c
1657
(col = cbp->cb_columns[i]) != GET_COL_NONE; i++)
usr/src/cmd/zfs/zfs_main.c
1658
if (col == GET_COL_RECVD)
usr/src/cmd/zfs/zfs_main.c
2913
const char *col;
usr/src/cmd/zfs/zfs_main.c
2921
col = gettext(us_field_hdr[field]);
usr/src/cmd/zfs/zfs_main.c
2924
width[field], col);
usr/src/cmd/zfs/zfs_main.c
2927
width[field], col);
usr/src/cmd/zfs/zfs_main.c
5945
const char *col;
usr/src/cmd/zfs/zfs_main.c
5949
col = gettext(hdr_cols[i]);
usr/src/cmd/zfs/zfs_main.c
5952
col);
usr/src/cmd/zfs/zfs_main.c
5954
(void) printf("%s\n", col);
usr/src/common/bignum/bignumimpl.c
1338
int tlen, row, col;
usr/src/common/bignum/bignumimpl.c
1359
col = 2;
usr/src/common/bignum/bignumimpl.c
1363
p = (uint64_t)r[col] << 1;
usr/src/common/bignum/bignumimpl.c
1367
r[col] = (uint32_t)t2;
usr/src/common/bignum/bignumimpl.c
1371
p = ((uint64_t)r[col + 1] << 1) + cy;
usr/src/common/bignum/bignumimpl.c
1372
r[col + 1] = (uint32_t)p;
usr/src/common/bignum/bignumimpl.c
1375
col += 2;
usr/src/common/bignum/bignumimpl.c
1377
r[col + 1] = (uint32_t)cy;
usr/src/common/ficl/emu/gfx_fb.c
734
gfx_fb_cons_display(uint32_t row, uint32_t col,
usr/src/common/ficl/emu/gfx_fb.c
742
if (col >= fb.fb_width || row >= fb.fb_height ||
usr/src/common/ficl/emu/gfx_fb.c
743
col + width > fb.fb_width || row + height > fb.fb_height)
usr/src/common/ficl/emu/gfx_fb.c
747
fbp = fb.fb_addr + col * fb.fb_bpp + row * fb.fb_pitch;
usr/src/grub/grub-0.97/stage2/graphics.c
104
static void graphics_setxy(int col, int row);
usr/src/grub/grub-0.97/stage2/graphics.c
578
static void graphics_setxy(int col, int row) {
usr/src/grub/grub-0.97/stage2/graphics.c
579
if (col >= x0 && col < x1) {
usr/src/grub/grub-0.97/stage2/graphics.c
580
fontx = col;
usr/src/grub/grub-0.97/stage2/graphics.c
581
cursorX = col << 3;
usr/src/head/ldap.h
983
struct ldap_tmplitem *col);
usr/src/lib/libc/port/gen/euclen.c
102
return (col);
usr/src/lib/libc/port/gen/euclen.c
78
int col = 0;
usr/src/lib/libc/port/gen/euclen.c
82
col += 1;
usr/src/lib/libc/port/gen/euclen.c
88
col += scrw2;
usr/src/lib/libc/port/gen/euclen.c
92
col += scrw3;
usr/src/lib/libc/port/gen/euclen.c
96
col += scrw1;
usr/src/lib/libc/port/print/doprnt.c
2526
int col;
usr/src/lib/libc/port/print/doprnt.c
2529
col = 0;
usr/src/lib/libc/port/print/doprnt.c
2533
col += i;
usr/src/lib/libc/port/print/doprnt.c
2535
return (col);
usr/src/lib/libctf/common/ctf_dwarf.c
970
uint_t col = 0, mult = 1;
usr/src/lib/libctf/common/ctf_dwarf.c
985
col = 1;
usr/src/lib/libctf/common/ctf_dwarf.c
988
col = 2;
usr/src/lib/libctf/common/ctf_dwarf.c
994
enc->cte_format = ent->cdfe_enc[col];
usr/src/lib/libcurses/screen/V3.upd_old_y.c
50
int row, col, num_cols;
usr/src/lib/libcurses/screen/V3.upd_old_y.c
53
for (num_cols = ncols, col = start_col; num_cols > 0;
usr/src/lib/libcurses/screen/V3.upd_old_y.c
54
num_cols--, col++)
usr/src/lib/libcurses/screen/V3.upd_old_y.c
56
win->_y16[row][col] = _TO_OCHTYPE(win->_y[row][col]);
usr/src/lib/libcurses/screen/tgoto.c
50
tgoto(char *cap, int col, int row)
usr/src/lib/libcurses/screen/tgoto.c
54
cp = tparm_p2(cap, row, col);
usr/src/lib/libeti/form/common/chg_field.c
138
int col = f->fcol;
usr/src/lib/libeti/form/common/chg_field.c
143
while (f->frow == row && f->fcol != col);
usr/src/lib/libeti/form/common/chg_field.c
148
while (f->frow == row && f->fcol > col)
usr/src/lib/libeti/form/common/chg_field.c
162
int col = f->fcol;
usr/src/lib/libeti/form/common/chg_field.c
167
while (f->frow == row && f->fcol != col);
usr/src/lib/libeti/form/common/chg_field.c
172
while (f->frow == row && f->fcol < col)
usr/src/lib/libeti/form/common/utility.c
155
int row, col;
usr/src/lib/libeti/form/common/utility.c
159
col = c->fcol + X(f) - B(f);
usr/src/lib/libeti/form/common/utility.c
162
col = c -> fcol + X(f);
usr/src/lib/libeti/form/common/utility.c
165
(void) wmove(Sub(f), row, col);
usr/src/lib/libldap5/include/ldap/disptmpl.h
323
struct ldap_tmplitem *col );
usr/src/lib/libldap5/sources/ldap/common/disptmpl.c
382
struct ldap_tmplitem *col )
usr/src/lib/libldap5/sources/ldap/common/disptmpl.c
384
return( col == NULLTMPLITEM ? col : col->ti_next_in_row );
usr/src/lib/libnisdb/ldap_map.c
105
myself, NIL(col[i]), NIL(t->objName));
usr/src/lib/libnisdb/ldap_map.c
112
sfree(col[i]);
usr/src/lib/libnisdb/ldap_map.c
114
sfree(col);
usr/src/lib/libnisdb/ldap_map.c
422
findColValue(char *col, __nis_rule_value_t *rv) {
usr/src/lib/libnisdb/ldap_map.c
425
if (col == 0 || rv == 0 || rv->numColumns <= 0)
usr/src/lib/libnisdb/ldap_map.c
429
if (strcmp(col, rv->colName[i]) == 0)
usr/src/lib/libnisdb/ldap_map.c
55
char **col;
usr/src/lib/libnisdb/ldap_map.c
61
col = t->column;
usr/src/lib/libnisdb/ldap_map.c
62
nic = (col != 0) ? t->numColumns : -1;
usr/src/lib/libnisdb/ldap_map.c
90
if (col[i] == 0)
usr/src/lib/libnisdb/ldap_map.c
93
if (isObjAttrString(col[i]))
usr/src/lib/libnisdb/ldap_map.c
96
if (strcmp(col[i], t->column[j]) == 0) {
usr/src/lib/libnisdb/ldap_scheme.c
125
a[na].zattr_ndx = col[index];
usr/src/lib/libnisdb/ldap_scheme.c
78
char **col;
usr/src/lib/libnisdb/ldap_scheme.c
91
col = t->column;
usr/src/lib/libnisdb/ldap_scheme.c
95
col = (char **)&dirCol;
usr/src/lib/libsldap/common/ns_common.c
1763
int i, col, digit, port, dc, tc;
usr/src/lib/libsldap/common/ns_common.c
1771
digit = col = port = 0;
usr/src/lib/libsldap/common/ns_common.c
1807
col = 0;
usr/src/lib/libsldap/common/ns_common.c
1812
if ((col > 1) || (i && !col && !digit))
usr/src/lib/libsldap/common/ns_common.c
1815
col++;
usr/src/lib/libtecla/common/cplmatch.c
1104
int col; /* The index of the list column being output */
usr/src/lib/libtecla/common/cplmatch.c
1120
for(col=0; col < fmt->ncol; col++) {
usr/src/lib/libtecla/common/cplmatch.c
1121
int m = col*fmt->nline + lnum;
usr/src/lib/libtecla/common/cplmatch.c
1147
if(col+1 < fmt->ncol) {
usr/src/lib/libtecla/common/expand.c
1380
int col; /* The index of the list column being output */
usr/src/lib/libtecla/common/expand.c
1396
for(col=0; col < fmt->ncol; col++) {
usr/src/lib/libtecla/common/expand.c
1397
int m = col*fmt->nline + lnum;
usr/src/lib/libtecla/common/expand.c
1417
if(col+1 < fmt->ncol) {
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
236
int col, last, tail, jump, count;
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
250
col = newscr->_first[row];
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
251
if (col < 0)
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
252
col = 0;
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
276
optr = &curscr->_line[row][col];
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
277
nptr = &newscr->_line[row][col];
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
279
for (jump = -1; col < last; ) {
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
286
if (last <= ++col)
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
303
GOTO(row, col);
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
316
col -= count;
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
320
while (col < last
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
324
if (clr_eol != (char *) 0 && tail <= col) {
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
331
curscr->_curx = col;
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
336
++col;
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
341
if (COLS <= col && LINES-1 <= row
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
349
curscr->_curx = col;
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
382
curscr->_curx = col;
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
389
if (ceol_standout_glitch && col < COLS
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
411
if (clr_eol != (char *) 0 && tail <= col && col < last) {
usr/src/lib/libxcurses/src/libc/xcurses/doupdate.c
413
for (tail = col; tail < COLS; ++tail, ++optr)
usr/src/lib/libxcurses/src/libc/xcurses/tgoto.c
45
(tgoto)(const char *cap, int col, int row)
usr/src/lib/libxcurses/src/libc/xcurses/tgoto.c
50
__m_trace("tgoto(%p = \"%s\", %d, %d)", cap, col, row);
usr/src/lib/libxcurses/src/libc/xcurses/tgoto.c
53
str = tparm((char *)cap, (long) row, (long) col, 0L, 0L, 0L, 0L, 0L, 0L, 0L);
usr/src/lib/libxcurses/src/tabs/tabs.c
397
static int col = 0;
usr/src/lib/libxcurses/src/tabs/tabs.c
398
mvcol(col, x);
usr/src/lib/libxcurses/src/tabs/tabs.c
400
col = x;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
218
int col; /* Starting column of region */
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
264
cchar_t *optr = &curscr->_line[row][region.col];
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
265
cchar_t *nptr = &newscr->_line[row][region.col];
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
288
curscr->_curx = region.col + i + 1;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
299
cchar_t *optr = &curscr->_line[row][region.col];
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
308
for (i = region.col; i < COLS - region.size; i++) {
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
364
regions[iRegion].size = regions[iRegion + 1].col -
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
365
regions[iRegion].col;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
367
regions[nRegions - 1].size = COLS - regions[nRegions - 1].col;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
411
int col;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
416
col = 0;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
429
for (col = 0; col < COLS; col++) {
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
430
if (!__m_cc_compare(&optr[col], &nptr[col], 1))
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
433
deletePoint = col;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
437
for (col = deletePoint; col < COLS - deleteCount;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
438
col++) {
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
439
if (__m_cc_compare(&optr[col + deleteCount],
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
440
&nptr[col], 1))
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
452
regions[nRegions].col = deletePoint;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
455
col = deletePoint + bestDeleteCount;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
457
col = 0;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
463
for (old_cmp = -1; col + bestDeleteCount < COLS; col++) {
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
464
cmp = __m_cc_compare(&optr[col + bestDeleteCount],
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
465
&nptr[col], 1);
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
469
regions[nRegions].col = col;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
480
regions[nRegions].col = col;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
505
if (regions[iRegion].col >= blankEolStart) {
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
512
if (regions[iRegion].col + regions[iRegion].size >
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
519
regions[iRegion].col;
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
561
GOTO(row, regions[iRegion].col);
usr/src/lib/libxcurses2/src/libc/xcurses/doupdate.c
568
GOTO(row, regions[iRegion].col);
usr/src/lib/libxcurses2/src/libc/xcurses/tgoto.c
50
tgoto(char *cap, int col, int row)
usr/src/lib/libxcurses2/src/libc/xcurses/tgoto.c
54
str = tparm((char *)cap, (long) row, (long) col,
usr/src/psm/promif/ieee1275/common/prom_fb.c
76
prom_get_tem_pos(uint32_t *row, uint32_t *col)
usr/src/psm/promif/ieee1275/common/prom_fb.c
82
(uintptr_t)row, (uintptr_t)col, 0, 0, 0);
usr/src/ucblib/libcurses/cr_put.c
398
tabcol(int col, int ts)
usr/src/ucblib/libcurses/cr_put.c
402
if (col >= COLS) {
usr/src/ucblib/libcurses/cr_put.c
403
offset = COLS * (col / COLS);
usr/src/ucblib/libcurses/cr_put.c
404
col -= offset;
usr/src/ucblib/libcurses/cr_put.c
408
return (col + ts - (col % ts) + offset);
usr/src/uts/common/fs/smbsrv/smb_common_open.c
161
int col = (ofun & SMB_OFUN_CREATE_MASK) >> 4;
usr/src/uts/common/fs/smbsrv/smb_common_open.c
166
return (ofun_cr_map[row][col]);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1368
raidz_col_t *col = &rm->rm_col[c];
usr/src/uts/common/fs/zfs/vdev_raidz.c
1370
bufs[c] = col->rc_abd;
usr/src/uts/common/fs/zfs/vdev_raidz.c
1371
col->rc_abd = abd_alloc_linear(col->rc_size, B_TRUE);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1372
ASSERT3S(col->rc_abd->abd_size, >=, col->rc_size);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1373
ASSERT3S(bufs[c]->abd_size, >=, col->rc_size);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1374
abd_copy_off(col->rc_abd, bufs[c], 0, 0, col->rc_size);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1468
raidz_col_t *col = &rm->rm_col[c];
usr/src/uts/common/fs/zfs/vdev_raidz.c
1470
ASSERT3S(bufs[c]->abd_size, >=, col->rc_size);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1471
ASSERT3S(col->rc_abd->abd_size, >=, col->rc_size);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1472
abd_copy_off(bufs[c], col->rc_abd, 0, 0, col->rc_size);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1473
abd_free(col->rc_abd);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1474
col->rc_abd = bufs[c];
usr/src/uts/common/fs/zfs/vdev_raidz.c
1797
vdev_raidz_io_verify(zio_t *zio, raidz_map_t *rm, int col)
usr/src/uts/common/fs/zfs/vdev_raidz.c
1808
raidz_col_t *rc = &rm->rm_col[col];
usr/src/uts/common/fs/zfs/vdev_raidz.c
313
raidz_col_t *col = &rm->rm_col[c];
usr/src/uts/common/fs/zfs/vdev_raidz.c
315
col->rc_size);
usr/src/uts/common/fs/zfs/vdev_raidz.c
317
ASSERT3S(tmp->abd_size, >=, col->rc_size);
usr/src/uts/common/fs/zfs/vdev_raidz.c
318
ASSERT3S(col->rc_abd->abd_size, >=, col->rc_size);
usr/src/uts/common/fs/zfs/vdev_raidz.c
319
abd_copy_off(tmp, col->rc_abd, 0, 0, col->rc_size);
usr/src/uts/common/fs/zfs/vdev_raidz.c
320
abd_put(col->rc_abd);
usr/src/uts/common/fs/zfs/vdev_raidz.c
321
col->rc_abd = tmp;
usr/src/uts/common/fs/zfs/vdev_raidz.c
323
offset += col->rc_size;
usr/src/uts/common/fs/zfs/vdev_raidz.c
350
uint64_t q, r, c, bc, col, acols, scols, coff, devidx, asize, tot;
usr/src/uts/common/fs/zfs/vdev_raidz.c
404
col = f + c;
usr/src/uts/common/fs/zfs/vdev_raidz.c
406
if (col >= dcols) {
usr/src/uts/common/fs/zfs/vdev_raidz.c
407
col -= dcols;
usr/src/uts/common/fs/zfs/vdev_raidz.c
410
rm->rm_col[c].rc_devidx = col;
usr/src/uts/common/io/ldterm.c
2217
int col;
usr/src/uts/common/io/ldterm.c
2226
col = tp->t_rocol;
usr/src/uts/common/io/ldterm.c
2242
col |= 07; /* bump up */
usr/src/uts/common/io/ldterm.c
2243
col++;
usr/src/uts/common/io/ldterm.c
2246
if (col)
usr/src/uts/common/io/ldterm.c
2247
col--;
usr/src/uts/common/io/ldterm.c
2251
col = 0;
usr/src/uts/common/io/ldterm.c
2254
col = 0;
usr/src/uts/common/io/ldterm.c
2260
col++;
usr/src/uts/common/io/ldterm.c
2280
col++;
usr/src/uts/common/io/ldterm.c
2293
col += *readp;
usr/src/uts/common/io/ldterm.c
2297
col += *readp;
usr/src/uts/common/io/ldterm.c
2328
col += 2;
usr/src/uts/common/io/ldterm.c
2342
col++;
usr/src/uts/common/io/ldterm.c
2354
if (col != 0)
usr/src/uts/common/io/ldterm.c
2355
col--;
usr/src/uts/common/io/ldterm.c
2361
col = 0;
usr/src/uts/common/io/ldterm.c
2366
col |= 07;
usr/src/uts/common/io/ldterm.c
2367
col++;
usr/src/uts/common/io/ldterm.c
2376
col = 0;
usr/src/uts/common/io/ldterm.c
2389
col = tp->t_col - col;
usr/src/uts/common/io/ldterm.c
2390
if (col > 8)
usr/src/uts/common/io/ldterm.c
2391
col = 8; /* overflow screw */
usr/src/uts/common/io/ldterm.c
2392
return (col);
usr/src/uts/common/io/tem.c
909
uint32_t col = 0;
usr/src/uts/common/io/tem.c
918
plat_tem_get_prom_pos(&row, &col);
usr/src/uts/common/io/tem.c
933
tem->tvs_s_cursor.col = tem->tvs_c_cursor.col = 0;
usr/src/uts/common/io/tem.c
942
for (col = 0; col < tems.ts_c_dimension.width; col++) {
usr/src/uts/common/io/tem.c
943
tem->tvs_screen_rows[row][col].tc_char =
usr/src/uts/common/io/tem_safe.c
1015
tem->tvs_c_cursor.col,
usr/src/uts/common/io/tem_safe.c
1017
tem->tvs_c_cursor.col, credp, called_from);
usr/src/uts/common/io/tem_safe.c
1041
tem->tvs_c_cursor.col + 1,
usr/src/uts/common/io/tem_safe.c
1067
tem->tvs_c_cursor.col),
usr/src/uts/common/io/tem_safe.c
1069
tem->tvs_c_cursor.col,
usr/src/uts/common/io/tem_safe.c
1076
tem->tvs_c_cursor.col + 1,
usr/src/uts/common/io/tem_safe.c
1145
tem->tvs_c_cursor.col,
usr/src/uts/common/io/tem_safe.c
1303
tem->tvs_c_cursor.col++;
usr/src/uts/common/io/tem_safe.c
1304
if (tem->tvs_c_cursor.col >= tems.ts_c_dimension.width) {
usr/src/uts/common/io/tem_safe.c
1306
tem->tvs_c_cursor.col--;
usr/src/uts/common/io/tem_safe.c
1324
tem->tvs_c_cursor.col = 0;
usr/src/uts/common/io/tem_safe.c
1365
tem_safe_mv_cursor(tem, row, tem->tvs_c_cursor.col,
usr/src/uts/common/io/tem_safe.c
1372
tem->tvs_c_cursor.col,
usr/src/uts/common/io/tem_safe.c
1374
tem->tvs_c_cursor.col,
usr/src/uts/common/io/tem_safe.c
1396
tem->tvs_s_cursor.row, tem->tvs_s_cursor.col);
usr/src/uts/common/io/tem_safe.c
1404
tem->tvs_s_cursor.row, tem->tvs_s_cursor.col,
usr/src/uts/common/io/tem_safe.c
141
int count, screen_pos_t row, screen_pos_t col,
usr/src/uts/common/io/tem_safe.c
1423
tem->tvs_s_cursor.col = tem->tvs_c_cursor.col;
usr/src/uts/common/io/tem_safe.c
1491
tem->tvs_r_cursor.col, credp, called_from);
usr/src/uts/common/io/tem_safe.c
1579
tem->tvs_r_cursor.col = tem->tvs_c_cursor.col;
usr/src/uts/common/io/tem_safe.c
1583
tem->tvs_r_cursor.col, credp, called_from);
usr/src/uts/common/io/tem_safe.c
1758
screen_pos_t col, cred_t *credp, enum called_from called_from)
usr/src/uts/common/io/tem_safe.c
1764
col < 0 || col >= tems.ts_c_dimension.width ||
usr/src/uts/common/io/tem_safe.c
1773
col + count > tems.ts_c_dimension.width)
usr/src/uts/common/io/tem_safe.c
1774
count = tems.ts_c_dimension.width - col;
usr/src/uts/common/io/tem_safe.c
1776
tem_safe_virtual_cls(tem, count, row, col);
usr/src/uts/common/io/tem_safe.c
1781
tem_safe_callback_cls(tem, count, row, col, credp, called_from);
usr/src/uts/common/io/tem_safe.c
1787
int count, screen_pos_t row, screen_pos_t col,
usr/src/uts/common/io/tem_safe.c
1801
da.col = col;
usr/src/uts/common/io/tem_safe.c
1809
da.col++;
usr/src/uts/common/io/tem_safe.c
1827
int height, int width, screen_pos_t row, screen_pos_t col,
usr/src/uts/common/io/tem_safe.c
1839
da.col = col;
usr/src/uts/common/io/tem_safe.c
1873
int count, screen_pos_t row, screen_pos_t col, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
1888
col + count > tems.ts_c_dimension.width)
usr/src/uts/common/io/tem_safe.c
1889
count = tems.ts_c_dimension.width - col;
usr/src/uts/common/io/tem_safe.c
1894
tem_safe_text_display(tem, tems.ts_blank_line, count, row, col,
usr/src/uts/common/io/tem_safe.c
1901
screen_pos_t row, screen_pos_t col,
usr/src/uts/common/io/tem_safe.c
1914
da.col = (col * da.width) + tems.ts_p_offset.x;
usr/src/uts/common/io/tem_safe.c
1922
da.col += da.width;
usr/src/uts/common/io/tem_safe.c
2030
screen_pos_t row, screen_pos_t col, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
2037
col, count, tems.ts_p_offset.x, B_FALSE, credp, called_from);
usr/src/uts/common/io/tem_safe.c
2148
tem->tvs_c_cursor.col = 0;
usr/src/uts/common/io/tem_safe.c
2159
tem->tvs_c_cursor.col = 0;
usr/src/uts/common/io/tem_safe.c
2181
if (tem->tvs_tabs[i] < tem->tvs_c_cursor.col) {
usr/src/uts/common/io/tem_safe.c
2204
if (tem->tvs_tabs[i] > tem->tvs_c_cursor.col) {
usr/src/uts/common/io/tem_safe.c
2222
tem->tvs_tabs[tem->tvs_ntabs] < tem->tvs_c_cursor.col) {
usr/src/uts/common/io/tem_safe.c
2223
tem->tvs_tabs[tem->tvs_ntabs++] = tem->tvs_c_cursor.col;
usr/src/uts/common/io/tem_safe.c
2227
if (tem->tvs_tabs[i] == tem->tvs_c_cursor.col)
usr/src/uts/common/io/tem_safe.c
2229
if (tem->tvs_tabs[i] > tem->tvs_c_cursor.col) {
usr/src/uts/common/io/tem_safe.c
2232
tem->tvs_tabs[i] = tem->tvs_c_cursor.col;
usr/src/uts/common/io/tem_safe.c
2251
if (tem->tvs_tabs[i] == tem->tvs_c_cursor.col) {
usr/src/uts/common/io/tem_safe.c
2263
tem_safe_mv_cursor(struct tem_vt_state *tem, int row, int col,
usr/src/uts/common/io/tem_safe.c
2278
if (col < 0)
usr/src/uts/common/io/tem_safe.c
2279
col = 0;
usr/src/uts/common/io/tem_safe.c
2280
if (col >= tems.ts_c_dimension.width) {
usr/src/uts/common/io/tem_safe.c
2282
col = tems.ts_c_dimension.width - 1;
usr/src/uts/common/io/tem_safe.c
2289
tem->tvs_c_cursor.col = (screen_pos_t)col;
usr/src/uts/common/io/tem_safe.c
2305
tem->tvs_c_cursor.col = 0;
usr/src/uts/common/io/tem_safe.c
2307
tem->tvs_r_cursor.col = 0;
usr/src/uts/common/io/tem_safe.c
2309
tem->tvs_s_cursor.col = 0;
usr/src/uts/common/io/tem_safe.c
2371
rest_of_line = tems.ts_c_dimension.width - tem->tvs_c_cursor.col;
usr/src/uts/common/io/tem_safe.c
2382
tem->tvs_c_cursor.col + count,
usr/src/uts/common/io/tem_safe.c
2386
tem->tvs_c_cursor.col,
usr/src/uts/common/io/tem_safe.c
2398
tem->tvs_c_cursor.col,
usr/src/uts/common/io/tem_safe.c
2402
tem->tvs_c_cursor.col + count,
usr/src/uts/common/io/tem_safe.c
2408
tem->tvs_c_cursor.col, credp, called_from);
usr/src/uts/common/io/tem_safe.c
2423
ca.col = tem->tvs_c_cursor.col;
usr/src/uts/common/io/tem_safe.c
2430
tem->tvs_c_cursor.col = ca.col;
usr/src/uts/common/io/tem_safe.c
2448
ca.col = tem->tvs_c_cursor.col * tems.ts_font.vf_width +
usr/src/uts/common/io/tem_safe.c
2467
tem->tvs_c_cursor.col = 0;
usr/src/uts/common/io/tem_safe.c
2473
if (ca.col != 0) {
usr/src/uts/common/io/tem_safe.c
2474
tem->tvs_c_cursor.col = (ca.col - tems.ts_p_offset.x) /
usr/src/uts/common/io/tem_safe.c
2663
screen_pos_t col, int ncols, int offset_x,
usr/src/uts/common/io/tem_safe.c
2692
da.col = col * da.width + offset_x;
usr/src/uts/common/io/tem_safe.c
2695
da.col += da.width;
usr/src/uts/common/io/tem_safe.c
2705
int count, screen_pos_t row, screen_pos_t col)
usr/src/uts/common/io/tem_safe.c
2711
col < 0 || col >= tems.ts_c_dimension.width ||
usr/src/uts/common/io/tem_safe.c
2712
col + count > tems.ts_c_dimension.width)
usr/src/uts/common/io/tem_safe.c
2716
addr = tem->tvs_screen_buf + (row * width + col);
usr/src/uts/common/io/tem_safe.c
2806
int count, screen_pos_t row, screen_pos_t col)
usr/src/uts/common/io/tem_safe.c
2819
tem_safe_virtual_display(tem, tems.ts_blank_line, count, row, col);
usr/src/uts/common/io/tem_safe.c
464
tem->tvs_c_cursor.col - 1,
usr/src/uts/common/io/tem_safe.c
911
int col;
usr/src/uts/common/io/tem_safe.c
917
col = tem->tvs_c_cursor.col;
usr/src/uts/common/io/tem_safe.c
934
tem_safe_mv_cursor(tem, row - tem->tvs_params[0], col,
usr/src/uts/common/io/tem_safe.c
940
tem_safe_mv_cursor(tem, tem->tvs_params[0] - 1, col,
usr/src/uts/common/io/tem_safe.c
947
tem_safe_mv_cursor(tem, row + tem->tvs_params[0], col,
usr/src/uts/common/io/tem_safe.c
954
tem_safe_mv_cursor(tem, row, col + tem->tvs_params[0],
usr/src/uts/common/io/tem_safe.c
966
tem_safe_mv_cursor(tem, row, col - tem->tvs_params[0],
usr/src/uts/common/sys/stermio.h
57
char col;
usr/src/uts/common/sys/tem_impl.h
174
screen_pos_t col;
usr/src/uts/common/sys/tem_impl.h
329
int count, screen_pos_t row, screen_pos_t col,
usr/src/uts/common/sys/visual_io.h
246
screen_pos_t col; /* Col to display data at */
usr/src/uts/common/sys/visual_io.h
265
screen_pos_t col; /* Col to display cursor at */
usr/src/uts/i86pc/boot/boot_fb.c
47
uint16_t col; /* Col to display data at */
usr/src/uts/i86pc/boot/boot_fb.c
497
if (rect->col >= fb_info.screen.x ||
usr/src/uts/i86pc/boot/boot_fb.c
499
rect->col + rect->width >= fb_info.screen.x ||
usr/src/uts/i86pc/boot/boot_fb.c
504
offset = rect->col * fb_info.bpp + rect->row * fb_info.pitch;
usr/src/uts/i86pc/boot/boot_fb.c
782
boot_fb_setpos(int row, int col)
usr/src/uts/i86pc/boot/boot_fb.c
788
if (col < 0)
usr/src/uts/i86pc/boot/boot_fb.c
789
col = 0;
usr/src/uts/i86pc/boot/boot_fb.c
790
if (col >= fb_info.terminal.x)
usr/src/uts/i86pc/boot/boot_fb.c
791
col = fb_info.terminal.x - 1;
usr/src/uts/i86pc/boot/boot_fb.c
793
fb_info.cursor.pos.x = col;
usr/src/uts/i86pc/boot/boot_fb.c
796
fb_info.cursor.origin.x += col * boot_fb_font.vf_width;
usr/src/uts/i86pc/boot/boot_fb.c
819
display.col = fb_info.cursor.origin.x;
usr/src/uts/i86pc/boot/boot_vga.c
247
int col;
usr/src/uts/i86pc/boot/boot_vga.c
249
vga_getpos(&row, &col);
usr/src/uts/i86pc/boot/boot_vga.c
253
vga_setpos(row + 1, col);
usr/src/uts/i86pc/boot/boot_vga.c
263
VGA_SCREEN[row * VGA_TEXT_COLS + col] = (cons_color << 8) | c;
usr/src/uts/i86pc/boot/boot_vga.c
265
if (col < VGA_TEXT_COLS - 1)
usr/src/uts/i86pc/boot/boot_vga.c
266
vga_setpos(row, col + 1);
usr/src/uts/i86pc/boot/boot_vga.c
287
vga_setpos(int row, int col)
usr/src/uts/i86pc/boot/boot_vga.c
295
if (col < 0)
usr/src/uts/i86pc/boot/boot_vga.c
296
col = 0;
usr/src/uts/i86pc/boot/boot_vga.c
297
if (col >= fb_info.terminal.x)
usr/src/uts/i86pc/boot/boot_vga.c
298
col = fb_info.terminal.x - 1;
usr/src/uts/i86pc/boot/boot_vga.c
300
off = row * VGA_TEXT_COLS + col;
usr/src/uts/i86pc/boot/boot_vga.c
305
fb_info.cursor.pos.x = col;
usr/src/uts/i86pc/boot/boot_vga.c
309
vga_getpos(int *row, int *col)
usr/src/uts/i86pc/boot/boot_vga.c
315
*col = off % VGA_TEXT_COLS;
usr/src/uts/i86pc/io/consplat.c
603
plat_tem_get_prom_pos(uint32_t *row, uint32_t *col)
usr/src/uts/i86pc/io/consplat.c
606
*col = fb_info.cursor.pos.x;
usr/src/uts/i86pc/io/gfx_private/gfxp_bitmap.c
413
if (da->col >= console->fb.screen.x ||
usr/src/uts/i86pc/io/gfx_private/gfxp_bitmap.c
415
da->col + da->width > console->fb.screen.x ||
usr/src/uts/i86pc/io/gfx_private/gfxp_bitmap.c
420
fbp = console->fb.fb + da->col * console->fb.bpp +
usr/src/uts/i86pc/io/gfx_private/gfxp_bitmap.c
422
sfbp = console->fb.shadow_fb + da->col * console->fb.bpp +
usr/src/uts/i86pc/io/gfx_private/gfxp_bitmap.c
535
offset = ca->col * bpp + ca->row * pitch;
usr/src/uts/i86pc/io/gfx_private/gfxp_bitmap.c
627
(ca->col - console->fb.terminal_origin.x) /
usr/src/uts/i86pc/io/gfx_private/gfxp_bitmap.c
632
console->fb.cursor.origin.x = ca->col;
usr/src/uts/i86pc/io/gfx_private/gfxp_bitmap.c
640
ca->col = console->fb.cursor.origin.x;
usr/src/uts/i86pc/io/gfx_private/gfxp_fb.h
72
int col;
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
105
screen_pos_t *row, screen_pos_t *col);
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
106
static void vgatext_set_cursor(struct gfxp_fb_softc *softc, int row, int col);
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
247
vga->cursor.col = fb_info.cursor.pos.x;
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
375
console->vga.cursor.col);
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
609
da->col < 0 || da->col >= VGA_TEXT_COLS ||
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
610
da->col + da->width > VGA_TEXT_COLS)
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
623
+ (da->row * VGA_TEXT_COLS + da->col);
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
762
if (ca->col < 0 || ca->col >= VGA_TEXT_COLS ||
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
767
softc->console->vga.cursor.col = ca->col;
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
771
vgatext_set_cursor(softc, ca->row, ca->col);
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
776
vgatext_get_cursor(softc, &ca->row, &ca->col);
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
809
vgatext_set_cursor(struct gfxp_fb_softc *softc, int row, int col)
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
821
addr = row * VGA_TEXT_COLS + col;
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
833
screen_pos_t *row, screen_pos_t *col)
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
842
*col = addr % VGA_TEXT_COLS;
usr/src/uts/intel/io/intel_nhm/mem_addr.c
706
uint64_t row, bank, col;
usr/src/uts/intel/io/intel_nhm/mem_addr.c
768
col = TCODE_OFFSET_CAS(offset);
usr/src/uts/intel/io/intel_nhm/mem_addr.c
770
bank, col, &log_chan);
usr/src/uts/intel/sys/promif.h
103
extern void prom_framebuffer_getpos(int *row, int *col);
usr/src/uts/sparc/io/consplat.c
247
plat_tem_get_prom_pos(uint32_t *row, uint32_t *col)
usr/src/uts/sparc/io/consplat.c
249
prom_get_tem_pos(row, col);
usr/src/uts/sun4u/opl/io/oplmsu/oplmsu_cmn_func.c
1764
ulong_t col;
usr/src/uts/sun4u/opl/io/oplmsu/oplmsu_cmn_func.c
1803
for (col = 0; col < line; col++) {