| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| H A D | get_window_size.c | 63 get_window_size(int fd, int *lines, int *columns) in get_window_size() argument 75 if (columns) in get_window_size() 76 *columns = ws.ws_col; in get_window_size() 88 if (columns) in get_window_size() 89 *columns = ts.ts_cols; in get_window_size() 100 if (columns) in get_window_size() 101 *columns = dst[0]; in get_window_size() 114 if (columns) in get_window_size() 115 *columns = 1 + sb_info.srWindow.Right - sb_info.srWindow.Left; in get_window_size() 121 if (columns) { in get_window_size() [all …]
|
| H A D | rtbl.c | 60 struct column_data **columns; member 88 if(table->columns[i]->column_id == id) in rtbl_get_column_by_id() 89 return table->columns[i]; in rtbl_get_column_by_id() 98 if(strcmp(table->columns[i]->header, column) == 0) in rtbl_get_column() 99 return table->columns[i]; in rtbl_get_column() 109 struct column_data *c = table->columns[i]; in rtbl_destroy() 121 free (table->columns); in rtbl_destroy() 131 tmp = realloc (table->columns, (table->num_columns + 1) * sizeof (*tmp)); in rtbl_add_column_by_id() 134 table->columns = tmp; in rtbl_add_column_by_id() 150 table->columns[table->num_columns++] = col; in rtbl_add_column_by_id() [all …]
|
| H A D | getarg.c | 196 check_column(FILE *f, int col, int len, int columns) in check_column() argument 198 if(col + len > columns) { in check_column() 231 int col = 0, columns; in arg_printusage_i18n() local 243 if(get_window_size(2, NULL, &columns) == -1) in arg_printusage_i18n() 244 columns = 80; in arg_printusage_i18n() 260 col = check_column(stderr, col, strlen(buf) + 1, columns); in arg_printusage_i18n() 282 col = check_column(stderr, col, strlen(buf) + 1, columns); in arg_printusage_i18n() 293 col = check_column(stderr, col, strlen(buf) + 1, columns); in arg_printusage_i18n() 301 check_column(stderr, col, strlen(extra_string) + 1, columns); in arg_printusage_i18n()
|
| /netbsd-src/external/gpl2/groff/dist/src/devices/grohtml/ |
| H A D | html-table.cpp | 244 : out(op), columns(NULL), linelength(linelen), last_col(NULL), start_space(FALSE) in html_table() 255 c = columns; in ~html_table() 256 while (columns != NULL) { in ~html_table() 257 columns = columns->next; in ~html_table() 259 c = columns; in ~html_table() 290 for (c = columns; c != NULL; c = c->next) { in set_linelength() 309 if (columns != NULL) in get_effective_linelength() 310 return linelength - columns->left; in get_effective_linelength() 321 if (columns != NULL && columns->left > indent) in add_indent() 322 add_column(0, indent, columns->left, 'L'); in add_indent() [all …]
|
| /netbsd-src/usr.bin/crunch/crunchgen/ |
| H A D | crunched_main.c | 88 size_t columns, len; in crunched_usage() local 93 columns = 0; in crunched_usage() 96 if (columns + len < 80) in crunched_usage() 97 columns += len; in crunched_usage() 100 columns = len; in crunched_usage()
|
| /netbsd-src/usr.sbin/timed/timedc/ |
| H A D | timedc.c | 216 int columns, width = 0, lines; in help() local 227 columns = 80 / width; in help() 228 if (columns == 0) in help() 229 columns = 1; in help() 230 lines = (NCMDS + columns - 1) / columns; in help() 232 for (j = 0; j < columns; j++) { in help()
|
| /netbsd-src/external/apache2/llvm/dist/clang/docs/ |
| H A D | MatrixTypes.rst | 24 number of *rows*, and a constant number of *columns*. Matrix types with the same 25 element type, rows, and columns are the same type. A value of a matrix type 26 includes storage for ``rows * columns`` values of the *element type*. The 29 The maximum of the product of the number of rows and columns is 50 number of rows, and the second specifies the number of columns. The underlying 56 same element type, number of rows, and number of columns. 67 rows and columns are the same and the value's elements can be converted to the 75 If the number of rows or columns differ between the original and resulting 96 of ``M``, and let ``R`` and ``C`` be the number of rows and columns in ``M`` 111 ``postfix-expression [expression]`` to access columns of a matrix. We think [all …]
|
| /netbsd-src/external/bsd/openldap/dist/doc/guide/admin/ |
| H A D | glossary.sdf | 7 !catalog terms ''; headings; columns="Term,Definition" 10 !catalog organisations ''; headings; columns="ORG:Name,Long,URL:Jump" 13 !catalog products ''; headings; columns="PRD:Name,URL:Jump" 16 !catalog references ''; headings; columns="REF:Reference,Document,Status,URL:Jump"
|
| /netbsd-src/usr.sbin/lpr/lpc/ |
| H A D | lpc.c | 270 size_t columns, width = 0, lines; in help() local 280 columns = 80 / width; in help() 281 if (columns == 0) in help() 282 columns = 1; in help() 283 lines = (NCMDS + columns - 1) / columns; in help() 285 for (j = 0; j < columns; j++) { in help()
|
| /netbsd-src/external/bsd/nvi/dist/cl/ |
| H A D | cl_read.c | 44 #undef columns 62 size_t lines, columns; in cl_event() local 92 if (cl_ssize(sp, 1, &lines, &columns, &changed)) in cl_event() 95 (void)cl_resize(sp, lines, columns); in cl_event() 308 cl_resize(SCR *sp, size_t lines, size_t columns) in cl_resize() argument 313 if (api_opts_set(sp, L("columns"), NULL, columns, 0)) in cl_resize()
|
| /netbsd-src/external/bsd/kyua-cli/dist/utils/sqlite/ |
| H A D | test_utils.hpp | 136 int rows, columns; in verify_test_table() local 138 "SELECT * FROM test ORDER BY prime", &result, &rows, &columns, NULL)); in verify_test_table() 140 ATF_REQUIRE_EQ(1, columns); in verify_test_table()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| H A D | TextDiagnostic.cpp | 208 int columns = 0; in byteToColumn() local 211 out[i] = columns; in byteToColumn() 214 columns += llvm::sys::locale::columnWidth(res.first); in byteToColumn() 216 out.back() = columns; in byteToColumn() 240 int columns = 0; in columnToByte() local 243 out.resize(columns+1, -1); in columnToByte() 247 columns += llvm::sys::locale::columnWidth(res.first); in columnToByte() 249 out.resize(columns+1, -1); in columnToByte() 268 int columns() const { return m_byteToColumn.back(); } in columns() function 328 unsigned MaxColumns = std::max(static_cast<unsigned>(map.columns()), in selectInterestingSourceRegion() [all …]
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/ |
| H A D | tcl_flowtime_example.txt | 181 You can see the output is in six columns. 185 and sixth columns represent the action. The Tcl command or procedure name is 190 As each action is taken, the fifth and sixth columns are indented by 2 spaces. 193 If the output looks shuffled, check the CPU "C" and "TIME" columns, and
|
| H A D | tcl_flow_example.txt | 180 You can see the output is in five columns. 183 microseconds since the previous action. The fourth and fifth columns 188 As each action is taken, the fourth and fifth columns are indented by 2 spaces. 191 If the output looks shuffled, check the CPU "C" and "TIME" columns, and
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Examples/ |
| H A D | tcl_flow_example.txt | 180 You can see the output is in five columns. 183 microseconds since the previous action. The fourth and fifth columns 188 As each action is taken, the fourth and fifth columns are indented by 2 spaces. 191 If the output looks shuffled, check the CPU "C" and "TIME" columns, and
|
| H A D | tcl_flowtime_example.txt | 181 You can see the output is in six columns. 185 and sixth columns represent the action. The Tcl command or procedure name is 190 As each action is taken, the fifth and sixth columns are indented by 2 spaces. 193 If the output looks shuffled, check the CPU "C" and "TIME" columns, and
|
| /netbsd-src/external/bsd/kyua-cli/dist/utils/cmdline/ |
| H A D | ui.cpp | 127 const optional< std::string > columns = utils::getenv("COLUMNS"); in screen_width() local 128 if (columns) { in screen_width() 129 if (columns.get().length() > 0) { in screen_width() 132 utils::text::to_type< std::size_t >(columns.get())); in screen_width()
|
| /netbsd-src/bin/csh/ |
| H A D | file.c | 307 size_t c, columns, i, maxwidth, r, rows; in print_by_column() local 316 columns = win.ws_col / maxwidth; in print_by_column() 317 if (columns == 0) in print_by_column() 318 columns = 1; in print_by_column() 319 rows = (count + (columns - 1)) / columns; in print_by_column() 321 for (c = 0; c < columns; c++) { in print_by_column() 328 if (c < columns - 1) { /* last column? */ in print_by_column()
|
| /netbsd-src/external/gpl3/binutils/dist/gprofng/examples/mxv-pthreads/experiments/ |
| H A D | profile.sh | 30 columns=2000 58 gprofng collect app -O $exp_directory $exe -m $rows -n $columns -t $threads
|
| /netbsd-src/sbin/restore/ |
| H A D | interactive.c | 658 int i, j, precision, columns, lines; in formatf() local 686 columns = 81 / width; in formatf() 687 if (columns == 0) in formatf() 688 columns = 1; in formatf() 689 lines = (nentry + columns - 1) / columns; in formatf() 691 for (j = 0; j < columns; j++) { in formatf()
|
| /netbsd-src/external/gpl3/gcc.old/dist/contrib/ |
| H A D | texi2pod.pl | 320 @columns = (); 326 push @columns, $column; 328 $_ = "\n=item ".join (" : ", @columns)."\n";
|
| /netbsd-src/external/gpl3/binutils/dist/etc/ |
| H A D | texi2pod.pl | 313 @columns = (); 317 push @columns, $column; 319 $_ = "\n=item ".join (" : ", @columns)."\n";
|
| /netbsd-src/external/gpl3/gcc/dist/contrib/ |
| H A D | texi2pod.pl | 320 @columns = (); 326 push @columns, $column; 328 $_ = "\n=item ".join (" : ", @columns)."\n";
|
| /netbsd-src/external/gpl3/binutils.old/dist/etc/ |
| H A D | texi2pod.pl | 313 @columns = (); 317 push @columns, $column; 319 $_ = "\n=item ".join (" : ", @columns)."\n";
|
| /netbsd-src/sbin/disklabel/ |
| H A D | interact.c | 675 int columns, width; in dumpnames() local 699 columns = ttywidth / width; in dumpnames() 701 if (columns == 0) in dumpnames() 702 columns = 1; in dumpnames() 703 lines = (numentries + columns - 1) / columns; in dumpnames()
|