distrib/utils/more/line.c
105
column = 0;
distrib/utils/more/line.c
114
if (column + addon + (ln_state ? ue_width : 0) > sc_width) \
distrib/utils/more/line.c
117
column += addon
distrib/utils/more/line.c
172
column -= 2;
distrib/utils/more/line.c
185
column--;
distrib/utils/more/line.c
186
if (column + bo_width + be_width + 1 >= sc_width)
distrib/utils/more/line.c
201
column += bo_width-1;
distrib/utils/more/line.c
205
column += bo_width;
distrib/utils/more/line.c
215
column--;
distrib/utils/more/line.c
216
if (column + ul_width + ue_width + 1 >= sc_width)
distrib/utils/more/line.c
232
column += ul_width-1;
distrib/utils/more/line.c
237
column += ul_width;
distrib/utils/more/line.c
289
if (column + ue_width + bo_width + 1 + be_width >= sc_width)
distrib/utils/more/line.c
304
if (column + be_width + ul_width + 1 + ue_width >= sc_width)
distrib/utils/more/line.c
325
column += ue_width;
distrib/utils/more/line.c
333
column--;
distrib/utils/more/line.c
351
column += be_width;
distrib/utils/more/line.c
359
column--;
distrib/utils/more/line.c
374
} while ((column % tabstop) != 0);
distrib/utils/more/line.c
383
column--;
distrib/utils/more/line.c
57
static int column; /* Printable length, accounting for
distrib/utils/more/output.c
101
column++;
distrib/utils/more/output.c
102
} while ((column % tabstop) != 0);
distrib/utils/more/output.c
106
column--;
distrib/utils/more/output.c
118
column += 2;
distrib/utils/more/output.c
122
column++;
distrib/utils/more/output.c
126
if (column < sc_width || !auto_wrap || ignaw)
distrib/utils/more/output.c
62
int column;
distrib/utils/more/output.c
76
column = 0;
distrib/utils/more/output.c
83
column += ul_width +1;
distrib/utils/more/output.c
87
column += ue_width;
distrib/utils/more/output.c
91
column += bo_width +1;
distrib/utils/more/output.c
95
column += be_width;
games/battlestar/fly.c
154
if (row == MIDR && column < MIDC + 2 &&
games/battlestar/fly.c
155
column > MIDC - 2) {
games/battlestar/fly.c
257
oldc = column;
games/battlestar/fly.c
261
if (column + dc < COLS - 1 && column + dc > 0)
games/battlestar/fly.c
262
column += dc;
games/battlestar/fly.c
268
d = (double) ((row - MIDR) * (row - MIDR) + (column - MIDC) *
games/battlestar/fly.c
269
(column - MIDC));
games/battlestar/fly.c
272
column += (rnd(9) - 4) % (4 - abs(column - MIDC));
games/battlestar/fly.c
278
mvaddstr(row, column - 1, "/-\\");
games/battlestar/fly.c
49
static int row, column;
games/battlestar/fly.c
90
column = rnd(COLS - 2) + 1;
games/canfield/canfield/canfield.c
638
fndbase(struct cardtype **cp, int column, int row)
games/canfield/canfield/canfield.c
661
printcard(column, row, *cp);
games/canfield/canfield/canfield.c
664
removecard(column, row);
sbin/raidctl/raidctl.c
715
component_label.column = component_num % num_cols;
sbin/raidctl/raidctl.c
817
component_label.column = component_num % num_cols;
sbin/raidctl/raidctl.c
826
component_label.row, component_label.column,
sbin/raidctl/raidctl.c
863
component_label.column = component_num % num_cols;
sbin/raidctl/raidctl.c
883
component_label.column = 0;
sbin/raidctl/raidctl.c
936
hot_spare.column = 0;
sbin/raidctl/raidctl.c
954
comp.column = component_num % num_cols;
sbin/raidctl/raidctl.c
973
comp.column = component_num;
sys/arch/epoc32/dev/epockbd.c
188
int column, row;
sys/arch/epoc32/dev/epockbd.c
200
for (column = 0; column < sc->sc_kbd_ncolumn; column++) {
sys/arch/epoc32/dev/epockbd.c
204
cmd |= (EPOCKBD_COLUMN0 + column);
sys/arch/epoc32/dev/epockbd.c
208
if (sc->sc_state[column] != key) {
sys/arch/epoc32/dev/epockbd.c
209
row = sc->sc_state[column] ^ key;
sys/arch/epoc32/dev/epockbd.c
210
sc->sc_state[column] = key;
sys/arch/epoc32/dev/epockbd.c
214
column == sc->sc_kbd_ncolumn - 1))
sys/arch/epoc32/dev/epockbd.c
223
*data = EPOC2WS_KBD_DATA(row, column);
sys/arch/epoc32/dev/epockbd.c
225
pc = column;
sys/arch/hpcsh/dev/pfckbd.c
218
pfckbd_input(struct pfckbd_core *pc, int column, uint16_t data)
sys/arch/hpcsh/dev/pfckbd.c
223
edge = data ^ pc->pc_column[column];
sys/arch/hpcsh/dev/pfckbd.c
227
pc->pc_column[column] = data;
sys/arch/hpcsh/dev/pfckbd.c
232
DPRINTF("(%2d, %2d) %d \n", row, column, type);
sys/arch/hpcsh/dev/pfckbd.c
234
val = row * 8 + column;
sys/arch/hpcsh/dev/pfckbd.c
298
int column;
sys/arch/hpcsh/dev/pfckbd.c
308
for (column = 0; column < 8; column++) {
sys/arch/hpcsh/dev/pfckbd.c
310
_reg_write_2(SH7709_PDCR, dc | scan[column].dc);
sys/arch/hpcsh/dev/pfckbd.c
311
_reg_write_2(SH7709_PECR, ec | scan[column].ec);
sys/arch/hpcsh/dev/pfckbd.c
315
_reg_write_1(SH7709_PDDR, scan[column].d);
sys/arch/hpcsh/dev/pfckbd.c
316
_reg_write_1(SH7709_PEDR, scan[column].e);
sys/arch/hpcsh/dev/pfckbd.c
323
pfckbd_input(pc, column, data);
sys/dev/nand/nand.c
611
nand_address_column(device_t self, size_t row, size_t column)
sys/dev/nand/nand.c
618
(uintmax_t )row, column));
sys/dev/nand/nand.c
625
column >>= 1;
sys/dev/nand/nand.c
626
for (i = 0; i < chip->nc_addr_cycles_column; i++, column >>= 8)
sys/dev/nand/nand.c
627
nand_address(self, column & 0xff);
sys/dev/nand/nand.c
671
nand_prepare_read(device_t self, flash_off_t row, flash_off_t column)
sys/dev/nand/nand.c
674
nand_address_column(self, row, column);
sys/dev/raidframe/raidframevar.h
416
int column; /* the column number of this component */
sys/dev/raidframe/raidframevar.h
431
int column; /* the column number of this component */
sys/dev/raidframe/raidframevar.h
515
int column;
sys/dev/raidframe/rf_disks.c
1117
spare_number = sparePtr->column - raidPtr->numCol;
sys/dev/raidframe/rf_disks.c
1184
RF_RowCol_t col = component->column;
sys/dev/raidframe/rf_disks.c
1236
RF_RowCol_t col = component->column;
sys/dev/raidframe/rf_disks.c
419
if ((ac->clabel->column == c) &&
sys/dev/raidframe/rf_disks.c
449
if (ac->clabel->column == c) {
sys/dev/raidframe/rf_disks.c
657
rf_print_label_status(RF_Raid_t *raidPtr, int column, char *dev_name,
sys/dev/raidframe/rf_disks.c
662
raidPtr->raidid, dev_name, column );
sys/dev/raidframe/rf_disks.c
664
ci_label->column,
sys/dev/raidframe/rf_disks.c
673
static int rf_check_label_vitals(RF_Raid_t *raidPtr, int row, int column,
sys/dev/raidframe/rf_disks.c
693
if (column != ci_label->column) {
sys/dev/raidframe/rf_netbsdkintf.c
1414
printf("raid%d: Column: %d\n", raidid, clabel->column);
sys/dev/raidframe/rf_netbsdkintf.c
1420
int column = clabel->column;
sys/dev/raidframe/rf_netbsdkintf.c
1422
if ((column < 0) || (column >= raidPtr->numCol)) {
sys/dev/raidframe/rf_netbsdkintf.c
1430
memcpy(raidget_component_label(raidPtr, column),
sys/dev/raidframe/rf_netbsdkintf.c
1432
raidflush_component_label(raidPtr, column);
sys/dev/raidframe/rf_netbsdkintf.c
1449
for (int column = 0; column < raidPtr->numCol; column++) {
sys/dev/raidframe/rf_netbsdkintf.c
1450
RF_RaidDisk_t *diskPtr = &raidPtr->Disks[column];
sys/dev/raidframe/rf_netbsdkintf.c
1454
raidPtr, column);
sys/dev/raidframe/rf_netbsdkintf.c
1462
ci_label->column = column;
sys/dev/raidframe/rf_netbsdkintf.c
1463
raidflush_component_label(raidPtr, column);
sys/dev/raidframe/rf_netbsdkintf.c
1487
int column = component.column;
sys/dev/raidframe/rf_netbsdkintf.c
1489
if ((column < 0) || (column >= raidPtr->numCol)) {
sys/dev/raidframe/rf_netbsdkintf.c
1494
if ((raidPtr->Disks[column].status == rf_ds_optimal) &&
sys/dev/raidframe/rf_netbsdkintf.c
1503
raidPtr->raidid, column);
sys/dev/raidframe/rf_netbsdkintf.c
1508
if (raidPtr->Disks[column].status == rf_ds_reconstructing) {
sys/dev/raidframe/rf_netbsdkintf.c
1513
raidPtr->raidid, column);
sys/dev/raidframe/rf_netbsdkintf.c
1519
if (raidPtr->Disks[column].status == rf_ds_spared) {
sys/dev/raidframe/rf_netbsdkintf.c
1531
rrint->col = column;
sys/dev/raidframe/rf_netbsdkintf.c
1584
int column;
sys/dev/raidframe/rf_netbsdkintf.c
1806
for (column = 0; column < raidPtr->numCol; column++)
sys/dev/raidframe/rf_netbsdkintf.c
1807
if (raidPtr->Disks[column].status != rf_ds_optimal)
sys/dev/raidframe/rf_netbsdkintf.c
1810
for (column = 0; column < raidPtr->numCol; column++) {
sys/dev/raidframe/rf_netbsdkintf.c
1811
clabel = raidget_component_label(raidPtr, column);
sys/dev/raidframe/rf_netbsdkintf.c
1813
raidflush_component_label(raidPtr, column);
sys/dev/raidframe/rf_netbsdkintf.c
2683
clabel->column = scol;
sys/dev/raidframe/rf_netbsdkintf.c
2758
clabel->column = scol;
sys/dev/raidframe/rf_netbsdkintf.c
3185
clabel->column >= 0 &&
sys/dev/raidframe/rf_netbsdkintf.c
3189
clabel->column < clabel->num_columns &&
sys/dev/raidframe/rf_netbsdkintf.c
3253
clabel->row, clabel->column,
sys/dev/raidframe/rf_netbsdkintf.c
3437
if ((ac->clabel->column == c) &&
sys/dev/raidframe/rf_netbsdkintf.c
3517
strcpy(config->devnames[0][ac->clabel->column],
sys/dev/raidframe/rf_netbsdkintf.c
3531
int column;
sys/dev/raidframe/rf_netbsdkintf.c
3536
for(column=0; column<raidPtr->numCol; column++) {
sys/dev/raidframe/rf_netbsdkintf.c
3537
if (raidPtr->Disks[column].status == rf_ds_optimal) {
sys/dev/raidframe/rf_netbsdkintf.c
3538
clabel = raidget_component_label(raidPtr, column);
sys/dev/raidframe/rf_netbsdkintf.c
3540
raidflush_component_label(raidPtr, column);
sys/dev/raidframe/rf_netbsdkintf.c
3543
for(column = 0; column < raidPtr->numSpare ; column++) {
sys/dev/raidframe/rf_netbsdkintf.c
3544
sparecol = raidPtr->numCol + column;
sys/dev/raidframe/rf_netbsdkintf.c
3559
int column;
sys/dev/raidframe/rf_netbsdkintf.c
3563
for(column=0; column<raidPtr->numCol; column++) {
sys/dev/raidframe/rf_netbsdkintf.c
3564
if (raidPtr->Disks[column].status == rf_ds_optimal) {
sys/dev/raidframe/rf_netbsdkintf.c
3565
clabel = raidget_component_label(raidPtr, column);
sys/dev/raidframe/rf_netbsdkintf.c
3567
raidflush_component_label(raidPtr, column);
sys/dev/raidframe/rf_netbsdkintf.c
3570
for (column = 0; column < raidPtr->numSpare ; column++) {
sys/dev/raidframe/rf_netbsdkintf.c
3571
sparecol = raidPtr->numCol + column;
sys/dev/raidframe/rf_netbsdkintf.c
4014
int column = clabel->column;
sys/dev/raidframe/rf_netbsdkintf.c
4016
if ((column < 0) || (column >= raidPtr->numCol + raidPtr->numSpare))
sys/dev/raidframe/rf_netbsdkintf.c
4018
raid_clabel = raidget_component_label(raidPtr, column);
sys/dev/raidframe/rf_reconstruct.c
305
c_label->column = col;
sys/dev/raidframe/rf_reconstruct.c
530
c_label->column = col;
sys/net/toeplitz.c
150
uint16_t column[NBBY];
sys/net/toeplitz.c
153
bzero(column, sizeof(column));
sys/net/toeplitz.c
157
column[b] = skey << b | skey >> (NBSK - b);
sys/net/toeplitz.c
166
res ^= column[b];
usr.bin/colrm/colrm.c
103
if (column)
usr.bin/colrm/colrm.c
104
--column;
usr.bin/colrm/colrm.c
107
column = 0;
usr.bin/colrm/colrm.c
110
column = (column + TAB) & ~(TAB - 1);
usr.bin/colrm/colrm.c
113
++column;
usr.bin/colrm/colrm.c
117
if ((!start || column < start || (stop && column > stop)) &&
usr.bin/colrm/colrm.c
63
u_long column, start, stop;
usr.bin/colrm/colrm.c
97
for (column = 0;;) {
usr.bin/expand/expand.c
102
column++;
usr.bin/expand/expand.c
103
} while (column & 07);
usr.bin/expand/expand.c
109
column++;
usr.bin/expand/expand.c
110
} while (((column - 1) % tabstops[0])
usr.bin/expand/expand.c
115
if (tabstops[n] > column)
usr.bin/expand/expand.c
119
column++;
usr.bin/expand/expand.c
122
while (column < tabstops[n]) {
usr.bin/expand/expand.c
124
column++;
usr.bin/expand/expand.c
129
if (column)
usr.bin/expand/expand.c
130
column--;
usr.bin/expand/expand.c
136
column++;
usr.bin/expand/expand.c
141
column = 0;
usr.bin/expand/expand.c
64
size_t n, column;
usr.bin/expand/expand.c
95
column = 0;
usr.bin/sort/fields.c
178
struct column icol, tcol;
usr.bin/sort/init.c
154
struct column *col;
usr.bin/sort/sort.h
151
struct column icol;
usr.bin/sort/sort.h
152
struct column tcol;