Searched refs:column (Results 1 - 25 of 141) sorted by relevance

123456

/freebsd-11-stable/usr.bin/column/
H A DMakefile4 PROG= column
/freebsd-11-stable/tools/tools/fixwhite/
H A Dfixwhite.c37 static off_t column = 0; variable
55 column = 0;
58 column++;
61 column = (column / 8 + 1) * 8;
83 column = 0;
99 ncolumn = (column / 8 + 1) * 8;
102 column--;
104 while (column < ncolumn)
116 if ((column
[all...]
/freebsd-11-stable/usr.bin/expand/
H A Dexpand.c67 int c, column; local
108 column = 0;
115 column++;
116 } while (column & 07);
122 column++;
123 } while (((column - 1) % tabstops[0]) != (tabstops[0] - 1));
127 if (tabstops[n] > column)
131 column++;
134 while (column < tabstops[n]) {
136 column
[all...]
/freebsd-11-stable/usr.bin/colrm/
H A Dcolrm.c64 u_long column, start, stop; local
84 errx(1, "illegal column -- %s", argv[1]);
89 errx(1, "illegal column -- %s", argv[0]);
100 for (column = 0;;) {
106 if (column)
107 --column;
110 column = 0;
113 column = (column + TAB) & ~(TAB - 1);
117 column
[all...]
/freebsd-11-stable/usr.bin/fortune/tools/
H A DDo_spell9 sort $F $1.sp.ok | uniq -u | column
/freebsd-11-stable/contrib/binutils/gas/
H A Ddepend.c35 /* Current column in output file. */
36 static int column = 0; variable
152 if (column
156 < column + len))
159 column = 0;
167 ++column;
171 column += len;
176 ++column;
198 column = 0;
H A Ddwarf2dbg.h34 unsigned int column; member in struct:dwarf2_line_info
46 the column of the source code that the following instruction
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBDeclaration.i12 "Specifies an association with a line and column for a variable."
48 SetColumn (uint32_t column);
62 column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
H A DSBLineEntry.i79 SetColumn (uint32_t column);
93 column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLineEntry.cpp17 : range(), file(), line(LLDB_INVALID_LINE_NUMBER), column(0),
28 original_file(_file), line(_line), column(_column),
39 column = 0;
63 if (column) {
65 s->Printf("%u", column);
87 if (column)
88 s->Printf(", column = %u", column);
124 if (column)
125 s->Printf(":%u", column);
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_sqlite.h258 value will be NULL if the column is null.
266 svn_sqlite__column_blob(svn_sqlite__stmt_t *stmt, int column,
269 /* Wrapper around sqlite3_column_text. If the column is null, then the
278 svn_sqlite__column_text(svn_sqlite__stmt_t *stmt, int column,
281 /* Wrapper around sqlite3_column_int64. If the column is null, then the
284 svn_sqlite__column_revnum(svn_sqlite__stmt_t *stmt, int column);
286 /* Wrapper around sqlite3_column_int64. If the column is null, then the
289 svn_sqlite__column_boolean(svn_sqlite__stmt_t *stmt, int column);
291 /* Wrapper around sqlite3_column_int. If the column is null, then the
294 svn_sqlite__column_int(svn_sqlite__stmt_t *stmt, int column);
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBSourceManager.cpp40 uint32_t line, uint32_t column,
51 file, line, column, context_before, context_after, current_line_cstr,
57 .DisplaySourceLinesWithLineNumbers(file, line, column,
118 const uint32_t column = 0; local
120 file.ref(), line, column, context_before, context_after,
125 const SBFileSpec &file, uint32_t line, uint32_t column,
132 file, line, column, context_before, context_after, current_line_cstr, s);
138 file.ref(), line, column, context_before, context_after,
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) argument
124 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) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.h41 // %c - column in the source file;
45 // %S - prints file/line/column information;
46 // %L - prints location information: file/line/column, if it is known, or
55 int line, int column, bool vs_style,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DHighlighter.cpp43 size_t column = *cursor_pos; local
45 s << line.substr(0, column);
47 options.selected.Apply(s, line.substr(column, 1));
49 s << line.substr(column + 1U);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DStreamString.cpp53 void StreamString::FillLastLineToColumn(uint32_t column, char fill_char) { argument
63 if (column > line_columns) {
64 m_packet.append(column - line_columns, fill_char);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDeclaration.h22 /// column info and can help track where functions, blocks, inlined functions,
36 /// Construct with file specification, and optional line and column.
46 /// \param[in] column
47 /// The column number that describes where this was declared.
48 /// Set to zero if there is no column number information.
49 Declaration(const FileSpec &file_spec, uint32_t line = 0, uint32_t column = 0)
53 m_column(column)
72 /// Sets the file specification to be empty, and the line and column to
86 /// column numbers respectively.
121 /// Get accessor for the declaration column numbe
170 SetColumn(uint32_t column) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp81 Column column(StringRef Str, unsigned Width) { return Column(Str, Width); } function in namespace:__anon3292
84 Column column(StringRef Str, unsigned Width, const T &Value) { function in namespace:__anon3292
88 // Specify the default column widths.
93 /// Adjust column widths to fit long file paths and function names.
103 /// Prints a horizontal divider long enough to cover the given column
184 OS << column(FileName, FileReportColumns[0], Column::NoTrim);
199 OS << column("-", FileReportColumns[3], Column::RightAlignment);
213 OS << column("-", FileReportColumns[6], Column::RightAlignment);
227 OS << column("-", FileReportColumns[9], Column::RightAlignment);
241 OS << column("
[all...]
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Dcolumn.cpp43 class column : public output_file { class in inherits:output_file
59 column();
60 ~column();
71 column *the_column = 0;
88 friend class column;
280 column::column() function in class:column
285 column::~column()
288 error("automatically outputting column befor
[all...]
/freebsd-11-stable/sys/dev/mca/
H A Dmca_bus.c318 mca_reg_print (dev, string, separator, column)
322 int * column;
328 if (((*column) + length) >= MAX_COL) {
330 (*column) = 0;
331 } else if ((*column) != 0) {
334 (*column)++;
337 (*column)++;
340 if ((*column) == 0) {
341 (*column) += device_printf(dev, "%s", string);
343 (*column)
357 int column = 0; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp183 uint32_t column; member in struct:__anon1185::SourceLoc
184 SourceLoc(uint32_t l, uint32_t c) : line(l), column(c ? c : UINT32_MAX) {}
187 column(sc.line_entry.column ? sc.line_entry.column : UINT32_MAX) {}
195 uint32_t a_col = a.column ? a.column : UINT32_MAX;
196 uint32_t b_col = b.column ? b.column : UINT32_MAX;
205 uint32_t line, uint32_t column) {
201 SetSCMatchesByLine(SearchFilter &filter, SymbolContextList &sc_list, bool skip_prologue, llvm::StringRef log_ident, uint32_t line, uint32_t column) argument
[all...]
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Drtbl.c91 rtbl_get_column (rtbl_t table, const char *column) argument
95 if(strcmp(table->columns[i]->header, column) == 0)
184 column_compute_width (rtbl_t table, struct column_data *column) argument
189 column->width = 0;
191 column->width = strlen (column->header);
192 for (i = 0; i < column->num_rows; i++)
193 column->width = max (column->width, (int) strlen (column
220 rtbl_set_column_prefix(rtbl_t table, const char *column, const char *prefix) argument
334 rtbl_add_column_entry(rtbl_t table, const char *column, const char *data) argument
345 rtbl_add_column_entryv(rtbl_t table, const char *column, const char *fmt, ...) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStreamString.h45 void FillLastLineToColumn(uint32_t column, char fill_char);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cpp63 int line, int column) {
79 info->column = column;
102 frame->info.column = col;
62 AddFrame(void *ctx, const char *function_name, const char *file, int line, int column) argument
/freebsd-11-stable/contrib/diff/src/
H A Dutil.c330 size_t column = 0;
408 size_t column2 = column;
412 column++;
414 column += tabsize - column % tabsize;
427 if (column != column2)
450 column += c1 == '\t' ? tabsize - column % tabsize : 1;
559 register size_t column = 0;
567 size_t spaces = tab_size - column
326 size_t column = 0; local
552 register size_t column = 0; local
[all...]
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dmkdeps.c291 unsigned int size, i, column; local
293 column = 0;
300 column += size;
301 if (colmax && column > colmax)
304 column = 1 + size;
309 column++;
316 column += 2;
321 column += size;
322 if (colmax && column > colmax)
325 column
[all...]

Completed in 204 milliseconds

123456