/src/games/boggle/boggle/ |
timer.c | 73 int col, remaining, row; local in function:timerch 75 getyx(stdscr, row, col); 91 move(row, col);
|
prtable.c | 72 int col, row; local in function:prtable 108 getyx(stdscr, row, col); 109 __USE(col);
|
/src/sys/dev/raidframe/ |
rf_callback.h | 58 RF_RowCol_t col; /* column IDs to give to the callback func */ member in struct:RF_CallbackValueDesc_s
|
rf_chaindecluster.c | 127 RF_RowCol_t *col, RF_SectorNum_t *diskSector, 142 *col = col_before_remap; 153 *col = index_within_disk; 156 *col = (col_before_remap + raidPtr->numCol - 1) % raidPtr->numCol; 159 *col = (index_within_disk + 2) % raidPtr->numCol; 171 RF_RowCol_t *col, RF_SectorNum_t *diskSector, 181 *col = SUID % raidPtr->numCol; 182 *col = (*col + 1) % raidPtr->numCol; 196 *col = index_within_disk 213 RF_RowCol_t col; local in function:rf_IdentifyStripeChainDecluster [all...] |
/src/usr.bin/systat/ |
keyboard.c | 57 int ch, rch, col; local in function:keyboard 71 col = 0; 74 while (col == 0 || (ch != '\r' && ch != '\n')) { 92 if (col == 0) { 121 col++; 127 if (col > 0) 128 col--; 131 if (ch == CTRL('w') && col > 0) { 132 while (--col >= 0 && 133 isspace((unsigned char)line[col])) [all...] |
globalcmds.c | 80 int col, len; local in function:global_help 84 move(CMDLINE, col = 0); 95 if (col + len > COLS) 98 col += len + 1; 99 if (col + 1 < COLS) 106 if (col == 0 && args) {
|
swap.c | 162 int col, blk_div, i, avail, used, xsize, swp_free; local in function:showswap 174 col = 5; 175 mvwprintw(wnd, i + 1, col, "%*d", hlen, sep->se_nblks / blk_div); 177 col += hlen; 182 mvwprintw(wnd, i + 1, col, "%9d ", used / blk_div);
|
/src/usr.bin/cut/ |
x_cut.c | 65 int col; local in function:CUT_FN 71 for (col = maxval; col; --col) {
|
/src/sys/arch/cobalt/stand/boot/ |
devopen.c | 49 const char *col; local in function:devparse 59 if ((col = strchr(fname, ':')) != NULL) { 65 devlen = col - fname; 116 fname = ++col;
|
/src/sys/arch/mmeye/stand/boot/ |
devopen.c | 49 const char *col; local in function:devparse 59 if ((col = strchr(fname, ':')) != NULL) { 65 devlen = col - fname; 108 fname = ++col;
|
/src/tests/lib/libc/regex/ |
debug.c | 96 int col = 0; local in function:s_print 99 if (col > 40) { \ 101 col = 0; \ 104 col++; \ 107 col++; \
|
/src/sys/arch/hp300/stand/common/ |
machdep.c | 149 static int col = 0, row = 0; local in function:romputchar 158 for (i = col; i < COLS-1; i++) 162 col = 0; 170 } while (col & 7); 174 buf[col] = c; 175 if (++col == COLS-1)
|
/src/bin/stty/ |
print.c | 196 static int col; variable in typeref:typename:int 203 if (col) { 205 col = 0; 214 if (col == 0) { 215 col = printf("%s: %s", label, s); 218 if ((col + strlen(s)) > LINELENGTH) { 220 col = printf("%s", s) + 8; 223 col += printf(" %s", s);
|
/src/sys/arch/powerpc/tools/chrpicon/ppmtochrpicon/ |
ppmtochrpicon.c | 129 int row, col; local in function:CHRPI_putbitmap 139 for (col = 0; col < img->width; col++) { 152 if ((col+1)%16 == 0)
|
/src/usr.bin/fold/ |
fold.c | 136 int col, indx, i; local in function:fold 138 col = indx = 0; 146 col = indx = 0; 150 col = new_column_position (col, ch); 151 if (col > width) { 172 col = 0; 174 col = new_column_position (col, buf[i]); 179 col = indx = 0 [all...] |
/src/usr.bin/tip/ |
value.c | 44 static int col = 0; variable in typeref:typename:int 154 if (col > 0) { 156 col = 0; 203 if (col > 0 && col < MIDDLE) 204 while (col++ < MIDDLE) 206 col += strlen(p->v_name); 211 col++; 219 col++; 222 col += strlen(cp) [all...] |
/src/games/gomoku/ |
bdinit.c | 45 init_spot_flags_and_fval(struct spotstr *sp, int col, int row) 76 if (col > BSZ - 4) { 83 } else if (col == BSZ - 4) { 93 if (col < 5) { 97 } else if (col == 5 && !is_blocked(sp, DIR_DL)) { 143 for (int col = 1; col <= BSZ; col++, sp++) { local in function:init_board 146 init_spot_flags_and_fval(sp, col, row);
|
bdisp.c | 101 for (int col = 1; col <= BSZ; col++) { local in function:bdisp_init 102 mvaddch(scr_y(BSZ + 1), scr_x(col), letters[col]); 103 mvaddch(scr_y(0), scr_x(col), letters[col]); 173 for (int col = 1; col <= BSZ; col++) local in function:bdisp 214 for (int col = 1; col <= BSZ; col++) { local in function:bdump [all...] |
/src/games/rogue/ |
trap.c | 78 trap_at(int row, int col) 83 if ((traps[i].trap_row == row) && (traps[i].trap_col == col)) { 91 trap_player(short row, short col) 95 if ((t = trap_at(row, col)) == NO_TRAP) { 98 dungeon[row][col] &= (~HIDDEN); 113 mvaddch(rogue.row, rogue.col, '^'); 146 short row, col; local in function:add_traps 170 col = get_rand((rooms[party_room].left_col+1), 173 } while (((dungeon[row][col] & (OBJECT|STAIRS|TRAP|TUNNEL)) || 174 (dungeon[row][col] == NOTHING)) && (tries < 15)) 190 short dir, row, col, d, t; local in function:id_trap 232 short s, i, j, row, col, t; local in function:search [all...] |
/src/games/testpat/ |
testpat.c | 54 int i, col, colour, line, x_limit, y_limit, colourOK, spacing; local in function:main 152 for (col = 1; col < x_limit; col = col + grid_x) { 153 xpos = col; 154 while ((xpos < col + grid_x - 1) && (xpos < 166 for (col = grid_x - 1; col < x_limit; col += grid_x) [all...] |
/src/sys/arch/powerpc/tools/chrpicon/chrpicontoppm/ |
chrpicontoppm.c | 70 int row, col; local in function:main 108 for (col = 0; col < img->width; col++) {
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_symbolize.cc | 45 int *col) { 96 int line, col; local in function:__tsan::SymbolizeCode 99 sizeof(file_buf), &line, &col)) { 103 frame->info.column = col;
|
/src/usr.bin/sort/ |
init.c | 154 struct column *col; local in function:setcolumn 157 col = cur_fld->icol.num ? (&cur_fld->tcol) : (&cur_fld->icol); 158 col->num = (int) strtol(pos, &npos, 10); 160 if (col->num <= 0 && !(col->num == 0 && col == &(cur_fld->tcol))) 163 if (!col->num) 166 col->indent = (int) strtol(pos, &npos, 10); 168 if (&cur_fld->icol == col) 169 col->indent-- 289 int col, indent; local in function:fixit [all...] |
/src/usr.bin/vis/ |
vis.c | 170 static int col = 0; local in function:process 266 (void)printf("<%02d,", col); 268 col = foldit(cp, col, foldwidth, eflags); 271 (void)printf("%02d>", col);
|
/src/usr.sbin/lpr/filters/ |
lpf.c | 80 int i, col; local in function:main 123 col = indent; 148 if (--col < indent) 149 col = indent; 153 col = indent; 157 col = ((col - indent) | 07) + indent + 1; 177 if (col >= width || (!literal && ch < ' ')) { 178 col++; 181 cp = &buf[0][col]; [all...] |