/freebsd/tools/tools/fixwhite/ |
H A D | fixwhite.c | 35 static off_t column = 0; variable 53 column = 0; in savebyte() 56 column++; in savebyte() 59 column = (column / 8 + 1) * 8; in savebyte() 81 column = 0; in savewhite() 97 ncolumn = (column / 8 + 1) * 8; in savewhite() 100 column--; in savewhite() 102 while (column < ncolumn) in savewhite() 114 if ((column % 8) == 0) { in printwhite() 115 for (i = 0; i < column; i++) in printwhite() [all …]
|
/freebsd/usr.bin/expand/ |
H A D | expand.c | 55 int c, column; in main() local 96 column = 0; in main() 103 column++; in main() 104 } while (column & 07); in main() 110 column++; in main() 111 } while (((column - 1) % tabstops[0]) != (tabstops[0] - 1)); in main() 115 if (tabstops[n] > column) in main() 119 column++; in main() 122 while (column < tabstops[n]) { in main() 124 column++; in main() [all …]
|
/freebsd/contrib/kyua/store/ |
H A D | dbtypes.cpp | 145 store::column_bool(sqlite::statement& stmt, const char* column) in column_bool() argument 147 const int id = stmt.column_id(column); in column_bool() 150 "string") % column); in column_bool() 170 store::column_delta(sqlite::statement& stmt, const char* column) in column_delta() argument 172 const int id = stmt.column_id(column); in column_delta() 175 "integer") % column); in column_delta() 189 store::column_optional_string(sqlite::statement& stmt, const char* column) in column_optional_string() argument 191 const int id = stmt.column_id(column); in column_optional_string() 198 throw integrity_error(F("Invalid string type in column %s") % column); in column_optional_string() 212 store::column_test_result_type(sqlite::statement& stmt, const char* column) in column_test_result_type() argument [all …]
|
/freebsd/contrib/kyua/utils/text/ |
H A D | table.cpp | 172 const text::table_row::size_type column, in refill_cell() argument 175 const std::vector< std::string > rows = text::refill(row[column], in refill_cell() 176 widths[column]); in refill_cell() 184 if (j == column) in refill_cell() 212 for (text::table_row::size_type column = 0; column < row.size(); ++column) { in format_row() local 213 if (widths[column] > row[column].length()) in format_row() 214 textual_rows[0][column] = pad_cell(row[column], widths[column], in format_row() 215 column == row.size() - 1); in format_row() 217 refill_cell(row, widths, column, textual_rows); in format_row() 262 text::table::column_width(const widths_vector::size_type column) const in column_width() [all …]
|
/freebsd/usr.bin/colrm/ |
H A D | colrm.c | 53 u_long column, start, stop; in main() local 93 for (column = 0;;) { in main() 99 if (column) in main() 100 --column; in main() 103 column = 0; in main() 106 column = (column + TAB) & ~(TAB - 1); in main() 110 column += width; in main() 114 if ((!start || column < start || (stop && column > stop)) && in main()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | CoverageReport.cpp | 81 Column column(StringRef Str, unsigned Width) { return Column(Str, Width); } in column() function 84 Column column(StringRef Str, unsigned Width, const T &Value) { in column() function 236 OS << column(FileName, FileReportColumns[0], Column::NoTrim); in render() 251 OS << column("-", FileReportColumns[3], Column::RightAlignment); in render() 265 OS << column("-", FileReportColumns[6], Column::RightAlignment); in render() 279 OS << column("-", FileReportColumns[9], Column::RightAlignment); in render() 293 OS << column("-", FileReportColumns[12], Column::RightAlignment); in render() 308 OS << column("-", FileReportColumns[15], Column::RightAlignment); in render() 324 OS << column("-", FileReportColumns[18], Column::RightAlignment); in render() 337 OS << column(DC.demangle(Function.Name), FunctionReportColumns[0], in render() [all …]
|
/freebsd/contrib/kyua/utils/sqlite/ |
H A D | statement.cpp | 373 const int column = column_id(name); in safe_column_blob() local 374 if (column_type(column) != sqlite::type_blob) in safe_column_blob() 377 return column_blob(column); in safe_column_blob() 392 const int column = column_id(name); in safe_column_double() local 393 if (column_type(column) != sqlite::type_float) in safe_column_double() 396 return column_double(column); in safe_column_double() 411 const int column = column_id(name); in safe_column_int() local 412 if (column_type(column) != sqlite::type_integer) in safe_column_int() 415 return column_int(column); in safe_column_int() 430 const int column = column_id(name); in safe_column_int64() local [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | LineTable.h | 71 void InsertLineEntry(lldb::addr_t file_addr, uint32_t line, uint16_t column, 82 uint32_t line, uint16_t column, 224 is_terminal_entry(_is_terminal_entry), column(_column), in Entry() 232 column = 0; in Clear() 250 SCALAR_COMPARE(lhs.column, rhs.column); in Compare() 299 uint16_t column = 0; member 354 const uint16_t column = in FindLineEntryIndexByFileIndexImpl() local 372 if (column == LLDB_INVALID_COLUMN_NUMBER) { in FindLineEntryIndexByFileIndexImpl() 387 m_entries[idx].column == column) { in FindLineEntryIndexByFileIndexImpl() 396 if (m_entries[idx].column && in FindLineEntryIndexByFileIndexImpl() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | LineEntry.cpp | 27 column = 0; in Clear() 52 if (column) { in DumpStopContext() 54 s->Printf("%u", column); in DumpStopContext() 76 if (column) in Dump() 77 s->Printf(", column = %u", column); in Dump() 113 if (column) in GetDescription() 114 s->Printf(":%u", column); in GetDescription() 174 if (a.column < b.column) in Compare() 176 if (a.column > b.column) in Compare()
|
/freebsd/sys/contrib/device-tree/src/arm/samsung/ |
H A D | exynos4412-smdk4412.dts | 80 keypad,column = <3>; 86 keypad,column = <4>; 92 keypad,column = <5>; 98 keypad,column = <6>; 104 keypad,column = <7>; 110 keypad,column = <6>; 116 keypad,column = <7>; 122 keypad,column = <5>; 128 keypad,column = <5>; 134 keypad,column = <7>;
|
H A D | exynos4210-smdkv310.dts | 99 keypad,column = <3>; 105 keypad,column = <4>; 111 keypad,column = <5>; 117 keypad,column = <6>; 123 keypad,column = <7>; 129 keypad,column = <3>; 135 keypad,column = <4>; 141 keypad,column = <5>; 147 keypad,column = <6>; 153 keypad,column = <7>;
|
H A D | s5pv210-smdkv210.dts | 89 keypad,column = <3>; 95 keypad,column = <4>; 101 keypad,column = <5>; 107 keypad,column = <6>; 114 keypad,column = <7>; 120 keypad,column = <3>; 125 keypad,column = <4>; 131 keypad,column = <5>; 137 keypad,column = <6>; 143 keypad,column [all...] |
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBSourceManager.cpp | 38 uint32_t line, uint32_t column, in DisplaySourceLinesWithLineNumbers() 49 file, line, column, context_before, context_after, current_line_cstr, in DisplaySourceLinesWithLineNumbers() 55 .DisplaySourceLinesWithLineNumbers(file, line, column, in DisplaySourceLinesWithLineNumbers() 109 const uint32_t column = 0; in DisplaySourceLinesWithLineNumbers() 111 file.ref(), line, column, context_before, context_after, in DisplaySourceLinesWithLineNumbers() 116 const SBFileSpec &file, uint32_t line, uint32_t column, in DisplaySourceLinesWithLineNumbersAndColumn() 119 LLDB_INSTRUMENT_VA(this, file, line, column, context_before, context_after, in DisplaySourceLinesWithLineNumbersAndColumn() 126 file.ref(), line, column, context_before, context_after, in DisplaySourceLinesWithLineNumbersAndColumn() 39 DisplaySourceLinesWithLineNumbers(const lldb_private::FileSpec & file,uint32_t line,uint32_t column,uint32_t context_before,uint32_t context_after,const char * current_line_cstr,lldb_private::Stream * s) DisplaySourceLinesWithLineNumbers() argument 110 const uint32_t column = 0; DisplaySourceLinesWithLineNumbers() local 117 DisplaySourceLinesWithLineNumbersAndColumn(const SBFileSpec & file,uint32_t line,uint32_t column,uint32_t context_before,uint32_t context_after,const char * current_line_cstr,SBStream & s) DisplaySourceLinesWithLineNumbersAndColumn() argument
|
/freebsd/contrib/diff/src/ |
H A D | io.c | 277 size_t column = 0; in find_and_hash_each_line() local 285 column -= 0 < column; in find_and_hash_each_line() 290 repetitions = tabsize - column % tabsize; in find_and_hash_each_line() 291 column = (column + repetitions < column in find_and_hash_each_line() 293 : column + repetitions); in find_and_hash_each_line() 297 column = 0; in find_and_hash_each_line() 302 column++; in find_and_hash_each_line() 347 size_t column = 0; in find_and_hash_each_line() local 355 column -= 0 < column; in find_and_hash_each_line() 360 repetitions = tabsize - column % tabsize; in find_and_hash_each_line() [all …]
|
H A D | util.c | 326 size_t column = 0; in lines_differ() local 404 size_t column2 = column; in lines_differ() 408 column++; in lines_differ() 410 column += tabsize - column % tabsize; in lines_differ() 423 if (column != column2) in lines_differ() 446 column += c1 == '\t' ? tabsize - column % tabsize : 1; in lines_differ() 552 register size_t column = 0; in output_1_line() local 560 size_t spaces = tab_size - column % tab_size; in output_1_line() 561 column += spaces; in output_1_line() 572 column = 0; in output_1_line() [all …]
|
/freebsd/crypto/heimdal/lib/roken/ |
H A D | rtbl.c | 91 rtbl_get_column (rtbl_t table, const char *column) in rtbl_get_column() argument 95 if(strcmp(table->columns[i]->header, column) == 0) in rtbl_get_column() 184 column_compute_width (rtbl_t table, struct column_data *column) in column_compute_width() argument 189 column->width = 0; in column_compute_width() 191 column->width = strlen (column->header); in column_compute_width() 192 for (i = 0; i < column->num_rows; i++) in column_compute_width() 193 column->width = max (column->width, (int) strlen (column->rows[i].data)); in column_compute_width() 220 rtbl_set_column_prefix (rtbl_t table, const char *column, in rtbl_set_column_prefix() argument 223 struct column_data *c = rtbl_get_column (table, column); in rtbl_set_column_prefix() 334 rtbl_add_column_entry (rtbl_t table, const char *column, const char *data) in rtbl_add_column_entry() argument [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/input/ |
H A D | samsung-keypad.txt | 4 keypad device. The keypad controller supports multiple row and column lines. 5 A key can be placed at each intersection of a unique row and a unique column. 25 - samsung,keypad-num-columns: Number of column lines connected to the 32 - keypad,column: the column number to which the key is connected. 62 keypad,column = <3>; 68 keypad,column = <4>; 74 keypad,column = <5>;
|
/freebsd/contrib/llvm-project/clang/include/clang-c/ |
H A D | CXSourceLocation.h | 137 unsigned *column, 182 unsigned *line, unsigned *column); 194 unsigned *column, 221 unsigned *column, 249 unsigned *column, unsigned *offset);
|
/freebsd/sbin/bectl/ |
H A D | bectl_list.c | 413 char *column; in bectl_cmd_list() local 416 column = NULL; in bectl_cmd_list() 436 if (column != NULL) in bectl_cmd_list() 437 free(column); in bectl_cmd_list() 438 column = strdup(optarg); in bectl_cmd_list() 442 if (column != NULL) in bectl_cmd_list() 443 free(column); in bectl_cmd_list() 444 column = strdup(optarg); in bectl_cmd_list() 472 if (column == NULL) in bectl_cmd_list() 473 column = strdup("name"); in bectl_cmd_list() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointResolver.cpp | 183 uint16_t column; member 185 : line(l), column(c ? *c : LLDB_INVALID_COLUMN_NUMBER) {} in SourceLoc() 188 column(sc.line_entry.column ? sc.line_entry.column in SourceLoc() 199 return lhs.column < rhs.column; in operator <() 205 llvm::StringRef log_ident, uint32_t line, std::optional<uint16_t> column) { in SetSCMatchesByLine() argument 238 if (column) { in SetSCMatchesByLine() 242 SourceLoc requested(line, *column); in SetSCMatchesByLine()
|
H A D | BreakpointResolverFileLine.cpp | 37 uint16_t column; in CreateFromStructuredData() local 60 options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Column), column); in CreateFromStructuredData() 63 column = 0; in CreateFromStructuredData() 87 SourceLocationSpec location_spec(FileSpec(filename), line, column, in CreateFromStructuredData() 291 const std::optional<uint16_t> column = m_location_spec.GetColumn(); in SearchCallback() local 313 column); in SearchCallback() 326 auto column = m_location_spec.GetColumn(); in GetDescription() local 327 if (column) in GetDescription() 328 s->Printf("column = %u, ", *column); in GetDescription()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | SourceLocationSpec.cpp | 18 std::optional<uint16_t> column, in SourceLocationSpec() argument 21 column.value_or(LLDB_INVALID_COLUMN_NUMBER)), in SourceLocationSpec() 79 uint16_t column = m_declaration.GetColumn(); in GetColumn() local 80 if (column == LLDB_INVALID_COLUMN_NUMBER) in GetColumn() 82 return column; in GetColumn()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_stacktrace_printer.cpp | 222 buffer->AppendF("%d", info->column); in RenderFrame() 236 RenderSourceLocation(buffer, info->file, info->line, info->column, in RenderFrame() 242 RenderSourceLocation(buffer, info->file, info->line, info->column, in RenderFrame() 336 int column, bool vs_style, in RenderSourceLocation() argument 340 if (column > 0) in RenderSourceLocation() 341 buffer->AppendF(",%d", column); in RenderSourceLocation() 349 if (column > 0) in RenderSourceLocation() 350 buffer->AppendF(":%d", column); in RenderSourceLocation()
|
/freebsd/contrib/netbsd-tests/bin/ps/ |
H A D | keywords | 5 # The first column (keyword) is the name of a keyword. 7 # The second column (header) is the default column header associated 9 # second column is the name of another keyword. 11 # The third column (flag) may be blank, "LJUST", or "ALIAS". "ALIAS" 13 # should be displayed in a left-justified column. The default is that 14 # the keyword should be displayed in a right-justified column.
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Declaration.h | 43 uint16_t column = LLDB_INVALID_COLUMN_NUMBER) 44 : m_file(file_spec), m_line(line), m_column(column) {} in m_file() 175 void SetColumn(uint16_t column) { m_column = column; } in SetColumn() argument
|