/src/usr.bin/column/ |
Makefile | 4 PROG= column
|
/src/usr.bin/expand/ |
expand.c | 64 size_t n, column; local in function:main 95 column = 0; 102 column++; 103 } while (column & 07); 109 column++; 110 } while (((column - 1) % tabstops[0]) 115 if (tabstops[n] > column) 119 column++; 122 while (column < tabstops[n]) { 124 column++ [all...] |
/src/usr.bin/colrm/ |
colrm.c | 63 u_long column, start, stop; local in function:main 81 errx(1, "illegal column -- %s", argv[1]); 86 errx(1, "illegal column -- %s", argv[0]); 97 for (column = 0;;) { 103 if (column) 104 --column; 107 column = 0; 110 column = (column + TAB) & ~(TAB - 1); 113 ++column; [all...] |
/src/distrib/utils/more/ |
output.c | 62 int column; local in function:put_line 76 column = 0; 83 column += ul_width +1; 87 column += ue_width; 91 column += bo_width +1; 95 column += be_width; 101 column++; 102 } while ((column % tabstop) != 0); 106 column--; 118 column += 2 [all...] |
line.c | 57 static int column; /* Printable length, accounting for variable in typeref:typename:int 105 column = 0; 114 if (column + addon + (ln_state ? ue_width : 0) > sc_width) \ 117 column += addon 172 column -= 2; 185 column--; 186 if (column + bo_width + be_width + 1 >= sc_width) 201 column += bo_width-1; 205 column += bo_width; 215 column-- [all...] |
/src/games/fortune/tools/ |
Do_spell | 10 sort $F $1.sp.ok | uniq -u | column
|
/src/games/battlestar/ |
fly.c | 49 static int row, column; variable in typeref:typename:int 90 column = rnd(COLS - 2) + 1; 154 if (row == MIDR && column < MIDC + 2 && 155 column > MIDC - 2) { 257 oldc = column; 261 if (column + dc < COLS - 1 && column + dc > 0) 262 column += dc; 268 d = (double) ((row - MIDR) * (row - MIDR) + (column - MIDC) * 269 (column - MIDC)) [all...] |
/src/sys/arch/epoc32/dev/ |
epockbd.c | 188 int column, row; local in function:epockbd_cngetc 200 for (column = 0; column < sc->sc_kbd_ncolumn; column++) { 204 cmd |= (EPOCKBD_COLUMN0 + column); 208 if (sc->sc_state[column] != key) { 209 row = sc->sc_state[column] ^ key; 210 sc->sc_state[column] = key; 214 column == sc->sc_kbd_ncolumn - 1)) 223 *data = EPOC2WS_KBD_DATA(row, column); [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
exynos4412-smdk4412.dts | 76 keypad,column = <3>; 82 keypad,column = <4>; 88 keypad,column = <5>; 94 keypad,column = <6>; 100 keypad,column = <7>; 106 keypad,column = <6>; 112 keypad,column = <7>; 118 keypad,column = <5>; 124 keypad,column = <5>; 130 keypad,column = <7> [all...] |
exynos4210-smdkv310.dts | 95 keypad,column = <3>; 101 keypad,column = <4>; 107 keypad,column = <5>; 113 keypad,column = <6>; 119 keypad,column = <7>; 125 keypad,column = <3>; 131 keypad,column = <4>; 137 keypad,column = <5>; 143 keypad,column = <6>; 149 keypad,column = <7> [all...] |
s5pv210-smdkv210.dts | 81 keypad,column = <3>; 87 keypad,column = <4>; 93 keypad,column = <5>; 99 keypad,column = <6>; 106 keypad,column = <7>; 112 keypad,column = <3>; 117 keypad,column = <4>; 123 keypad,column = <5>; 129 keypad,column = <6>; 135 keypad,column = <7> [all...] |
s5pv210-aquila.dts | 282 keypad,column = <1>; 288 keypad,column = <2>; 294 keypad,column = <1>; 300 keypad,column = <2>; 306 keypad,column = <1>; 312 keypad,column = <2>;
|
s5pv210-goni.dts | 264 keypad,column = <1>; 270 keypad,column = <2>; 276 keypad,column = <1>; 282 keypad,column = <2>; 288 keypad,column = <1>; 294 keypad,column = <2>;
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_stacktrace_printer.h | 42 // %c - column in the source file; 46 // %S - prints file/line/column information; 47 // %L - prints location information: file/line/column, if it is known, or 56 int line, int column, bool vs_style,
|
sanitizer_stacktrace_printer.cc | 155 buffer->append("%d", info.column); 170 RenderSourceLocation(buffer, info.file, info.line, info.column, vs_style, 176 RenderSourceLocation(buffer, info.file, info.line, info.column, 236 int line, int column, bool vs_style, 240 if (column > 0) 241 buffer->append(",%d", column); 249 if (column > 0) 250 buffer->append(":%d", column);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_symbolize.cc | 64 int line, int column) { 80 info->column = column; 103 frame->info.column = col;
|
/src/sys/arch/hpcsh/dev/ |
pfckbd.c | 218 pfckbd_input(struct pfckbd_core *pc, int column, uint16_t data) 223 edge = data ^ pc->pc_column[column]; 225 return; /* no changes in this column */ 227 pc->pc_column[column] = data; 232 DPRINTF("(%2d, %2d) %d \n", row, column, type); 234 val = row * 8 + column; 298 int column; local in function:pfckbd_callout_hp 308 for (column = 0; column < 8; column++) [all...] |
/src/sys/net/ |
toeplitz.c | 137 * The Toeplitz hash of a 16-bit number considered as a column vector over 150 uint16_t column[NBBY]; local in function:stoeplitz_cache_init 153 bzero(column, sizeof(column)); 157 column[b] = skey << b | skey >> (NBSK - b); 166 res ^= column[b];
|
/src/usr.bin/sort/ |
sort.h | 124 /* This is the column as seen by struct field. It is used by enterfield. 127 struct column { struct 134 * corresponding column in the current line. This is determined in enterkey. 142 /* A field has an initial and final column; an omitted final column 151 struct column icol; 152 struct column tcol;
|
/src/tests/bin/ps/ |
t_ps.sh | 203 "the pid column" 306 atf_set "descr" "Tests simple uses of null column headings" \ 334 # We choose "holdcnt" as a column whose width is likely to be 349 "null heading for every column). The heading" \ 377 "same column more than once"
|
/src/sys/dtb/ |
Makefile | 37 ${MAKE} MACHINE_ARCH=${_arch} dtblist | grep '^[\.#]' | column -t | \
|
/src/distrib/sets/ |
fmt-list | 205 -- Calculate the column on which the field should be aligned. 206 local function column(entries, get_width_before, colname) function 249 assert_equals(column(entries, width_before_category, "category_col"), 8) 252 -- to the minimum required column. 258 assert_equals(column(entries, width_before_category, "category_col"), 24) 267 assert_equals(column(entries, width_before_category, "category_col"), 24) 276 assert_equals(column(entries, width_before_flags, "flags_col"), 32) 294 column(entries, width_before_category, "category_col") 295 local flags_col = column(entries, width_before_flags, "flags_col") 297 -- To avoid horizontal jumps for the category column, the minimum column i [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_stacktrace_printer_test.cc | 79 info.column = 5; 85 "Column:%c", 89 "Column:5", 135 info.column = 5; 144 info.column = 0;
|
/src/sys/dev/raidframe/ |
rf_netbsdkintf.c | 1221 /* bad column */ 1414 printf("raid%d: Column: %d\n", raidid, clabel->column); 1420 int column = clabel->column; local in function:rf_set_component_label 1422 if ((column < 0) || (column >= raidPtr->numCol)) { 1430 memcpy(raidget_component_label(raidPtr, column), 1432 raidflush_component_label(raidPtr, column); 1449 for (int column = 0; column < raidPtr->numCol; column++) local in function:rf_init_component_label 1487 int column = component.column; local in function:rf_rebuild_in_place 1584 int column; local in function:raidioctl 3531 int column; local in function:rf_set_autoconfig 3559 int column; local in function:rf_set_rootpartition 4014 int column = clabel->column; local in function:rf_get_component_label [all...] |
/src/sys/external/isc/atheros_hal/dist/ar5212/ |
ar5212_rfgain.c | 92 ar5212GetRfField(uint32_t *rfBuf, uint32_t numBits, uint32_t firstBit, uint32_t column) 98 HALASSERT(column <= 3); 110 (column * 8); 111 reg32 |= (((rfBuf[arrayEntry] & mask) >> (column * 8)) >>
|