Searched refs:format (Results 251 - 275 of 1169) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.h23 namespace format { namespace in namespace:clang
40 unsigned format(const SmallVectorImpl<AnnotatedLine *> &Lines,
72 } // end namespace format
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-diff/
H A DDiffConsumer.cpp165 StringRef format = Log.getFormat(); local
167 size_t percent = format.find('%');
169 out << format; local
172 assert(format[percent] == '%');
174 if (percent > 0) out << format.substr(0, percent);
176 switch (format[percent+1]) {
180 default: llvm_unreachable("unknown format character");
183 format = format.substr(percent+2);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBError.h46 int SetErrorStringWithFormat(const char *format, ...)
47 __attribute__((format(printf, 2, 3)));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStream.h123 /// Format a C string from a printf style format and variable arguments and
126 /// \param[in] format
127 /// A printf style format string.
130 /// Any additional arguments needed for the printf format string.
134 size_t PrintfAsRawHex8(const char *format, ...)
137 /// Append an uint8_t value in the hexadecimal format to the stream.
286 /// Put an offset \a uval out to the stream using the printf format in \a
287 /// format.
292 /// \param[in] format
293 /// The printf style format t
310 Format(const char *format, Args &&... args) argument
[all...]
H A DAnsiTerminal.h62 inline std::string FormatAnsiTerminalCodes(llvm::StringRef format, argument
110 while (!format.empty()) {
112 std::tie(left, right) = format.split(tok_hdr);
116 if (left == format && right.empty()) {
131 format = right;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/
H A Dfs.c493 *fs_format = bfd->format;
501 switch (bfd->format)
585 /* Where the format number is stored. */
586 #define FORMAT_FILE "format" argument
593 int format,
701 if (format >= SVN_FS_BASE__MIN_NODE_ORIGINS_FORMAT)
711 if (format >= SVN_FS_BASE__MIN_MISCELLANY_FORMAT)
721 if (format >= SVN_FS_BASE__MIN_REP_SHARING_FORMAT)
751 int format = SVN_FS_BASE__FORMAT_NUMBER;
761 /* select format numbe
746 int format = SVN_FS_BASE__FORMAT_NUMBER; local
821 check_format(int format) argument
841 int format; local
1316 int format; local
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_tparm.c67 * format. Often more complex operations are necessary.
233 parse_format(const char *s, char *format, int *len) argument
236 if (format != 0) {
241 char *fmt = format;
247 *format++ = '%';
256 *format++ = *s;
260 *format++ = *s++;
270 *format++ = *s++;
273 *format++ = *s++;
281 *format
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DELFDump.cpp111 : "+") << format("0x%" PRIx64,
171 outs() << format(" %-21s", Str.c_str());
187 outs() << format(Fmt, (uint64_t)Dyn.d_un.d_val);
243 outs() << "off " << format(Fmt, (uint64_t)Phdr.p_offset) << "vaddr "
244 << format(Fmt, (uint64_t)Phdr.p_vaddr) << "paddr "
245 << format(Fmt, (uint64_t)Phdr.p_paddr)
246 << format("align 2**%u\n",
248 << " filesz " << format(Fmt, (uint64_t)Phdr.p_filesz)
249 << "memsz " << format(Fmt, (uint64_t)Phdr.p_memsz) << "flags "
272 << format("
[all...]
H A DMachODump.cpp85 cl::desc("Display only the first format specific file "
336 outs() << "\t.byte " << format("%3u", Value) << "\t@ KIND_JUMP_TABLE8\n";
343 outs() << "\t.short " << format("%5u", Value & 0xffff)
458 Fmt << format("0x%x", Val);
467 Fmt << format("0x%0" PRIx64, Val);
701 outs() << format("0x%016" PRIx64, addr + j * stride) << " ";
703 outs() << format("0x%08" PRIx32, (uint32_t)addr + j * stride) << " ";
719 outs() << format("%5u ", indirect_symbol);
819 outs() << format("%-7u", r_type) << " ";
837 outs() << format("
[all...]
/freebsd-11-stable/contrib/atf/atf-c/
H A Derror.c60 void (*format)(const atf_error_t, char *, size_t))
69 err->m_format = (format == NULL) ? error_format : format;
91 void (*format)(const atf_error_t, char *, size_t))
103 if (!error_init(err, type, data, datalen, format)) {
/freebsd-11-stable/contrib/ldns/
H A Dbuffer.c99 ldns_buffer_printf(ldns_buffer *buffer, const char *format, ...) argument
110 va_start(args, format);
112 format, args);
122 va_start(args, format);
124 ldns_buffer_remaining(buffer), format, args);
/freebsd-11-stable/contrib/unbound/compat/
H A Dstrptime.c104 * using the format specified by format
107 unbound_strptime(const char *s, const char *format, struct tm *tm) argument
112 while ((c = *format) != '\0') {
113 /* whitespace, literal or format */
121 else if (c == '%') { /* format */
122 format++;
123 c = *format;
288 case 'x': /* date format */
293 case 'X': /* time format */
[all...]
/freebsd-11-stable/contrib/netbsd-tests/ipf/
H A Dt_nat_exec.sh44 format="-xF $infmt"
46 format="-F $infmt"
49 format="$format"
55 "echo \"$rule\" | ipftest $format -RDbN - -i in $args"
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatVariadicDetails.h29 virtual void format(raw_ostream &S, StringRef Options) = 0;
38 void format(llvm::raw_ostream &S, StringRef Options) override {
39 format_provider<typename std::decay<T>::type>::format(Item, S, Options);
51 void format(llvm::raw_ostream &S, StringRef Options) override { S << Item; }
58 // static void format(const T&, raw_stream &, StringRef);
67 static char test(SameType<Signature_format, &U::format> *);
93 // based format() invocation.
102 // based format() invocation. The member function takes priority, so this test
103 // will only be true if there is not ALSO a format member.
111 // based format() invocatio
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Dbucomm.c73 report (const char * format, va_list args)
76 vfprintf (stderr, format, args);
81 fatal VPARAMS ((const char *format, ...))
83 VA_OPEN (args, format);
84 VA_FIXEDARG (args, const char *, format);
86 report (format, args);
92 non_fatal VPARAMS ((const char *format, ...))
94 VA_OPEN (args, format);
95 VA_FIXEDARG (args, const char *, format);
97 report (format, arg
71 report(const char * format, va_list args) argument
79 fatal(const char *format, ...) argument
90 non_fatal(const char *format, ...) argument
[all...]
/freebsd-11-stable/contrib/sendmail/libsm/
H A Dexc.c58 char format; local
78 format = '\0';
81 format = *p++;
86 format);
107 format == 'o' ? "%o"
108 : format == 'x' ? "%x"
115 format == 'o' ? "%lo"
116 : format == 'x' ? "%lx"
128 if (format)
129 (void) sm_io_putc(stream, SM_TIME_DEFAULT, format);
[all...]
/freebsd-11-stable/contrib/jemalloc/src/
H A Dutil.c335 malloc_vsnprintf(char *str, size_t size, const char *format, va_list ap) argument
415 f = format;
614 malloc_snprintf(char *str, size_t size, const char *format, ...) argument
619 va_start(ap, format);
620 ret = malloc_vsnprintf(str, size, format, ap);
628 const char *format, va_list ap)
643 malloc_vsnprintf(buf, sizeof(buf), format, ap);
654 const char *format, ...)
658 va_start(ap, format);
659 malloc_vcprintf(write_cb, cbopaque, format, a
627 malloc_vcprintf(void (*write_cb)(void *, const char *), void *cbopaque, const char *format, va_list ap) argument
653 malloc_cprintf(void (*write_cb)(void *, const char *), void *cbopaque, const char *format, ...) argument
666 malloc_printf(const char *format, ...) argument
[all...]
/freebsd-11-stable/sys/dev/pms/freebsd/driver/common/
H A Dlxcommon.h509 #define AGTIAPI_FLOW(format, a...) printf(format, ## a)
511 #define AGTIAPI_FLOW(format, a...)
515 #define AGTIAPI_PRINTK(format, a...) printf(format, ## a)
517 #define AGTIAPI_PRINTK(format, a...)
521 #define AGTIAPI_INIT(format, a...) printf(format, ## a)
525 #define AGTIAPI_INIT(format, a...)
530 #define AGTIAPI_INIT2(format,
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp187 OS << format("%*u", FileReportColumns[1],
190 << format("%*u", FileReportColumns[2],
195 << format("%*.2f", FileReportColumns[3] - 1,
202 OS << format("%*u", FileReportColumns[4],
204 OS << format("%*u", FileReportColumns[5],
209 << format("%*.2f", FileReportColumns[6] - 1,
216 OS << format("%*u", FileReportColumns[7],
218 OS << format("%*u", FileReportColumns[8],
223 << format("%*.2f", FileReportColumns[9] - 1,
230 OS << format("
[all...]
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dstrptime.c241 strptime (const char *buf, const char *format, struct tm *timeptr) argument
245 for (; (c = *format) != '\0'; ++format) {
252 } else if (c == '%' && format[1] != '\0') {
253 c = *++format;
255 c = *++format;
426 --format;
/freebsd-11-stable/bin/date/
H A Ddate.c81 const char *format; local
115 case 'R': /* RFC 2822 datetime format */
157 format = "%+";
160 format = rfc2822_format;
164 format = *argv + 1;
175 format = *argv + 1;
189 if (format == rfc2822_format)
191 * When using RFC 2822 datetime format, don't honor the
196 (void)strftime(buf, sizeof(buf), format, lt);
223 " using format ``
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Dhtmxlintrin.h250 if (tdb->format != 1)
262 if (tdb->format != 1)
273 if (tdb->format != 1)
289 return (tdb->format == 1
299 return (tdb->format == 1
309 return tdb->format == 1 && tdb->abort_code == 13; /* depth exceeded */
317 return (tdb->format == 1
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp378 s.Printf("lldb-format = %s, ", FormatManager::GetFormatAsCString(fmt));
600 uint32_t reg_num, Format format)
615 DumpRegisterValue(reg_value, &s, reg_info, false, false, format);
996 Format format) {
1005 DumpRegisterValue(reg_value, &s, reg_info, false, false, format);
1072 bool FormatEntity::FormatCString(const char *format, Stream &s, argument
1077 if (format && format[0]) {
1079 llvm::StringRef format_str(format);
1160 const char *format local
599 DumpRegister(Stream &s, StackFrame *frame, RegisterKind reg_kind, uint32_t reg_num, Format format) argument
995 DumpRegister(Stream &s, StackFrame *frame, const char *reg_name, Format format) argument
1195 const char *format = "0x%4.4" PRIx64; local
1226 const char *format = "0x%4.4" PRIx64; local
1239 const char *format = "%" PRIu32; local
1407 const char *format = "%" PRIu32; local
1834 const char *format = "%" PRIu32; local
1844 const char *format = "%" PRIu32; local
2017 ParseInternal(llvm::StringRef &format, Entry &parent_entry, uint32_t depth) argument
[all...]
/freebsd-11-stable/libexec/rtld-elf/
H A Ddebug.c47 debug_printf(const char *format, ...) argument
51 va_start(ap, format);
53 rtld_vfdprintf(STDERR_FILENO, format, ap);
/freebsd-11-stable/contrib/elftoolchain/cxxfilt/
H A Dcxxfilt.c44 static int format = 0; variable
54 {"format", required_argument, NULL, 's'},
80 -s SCHEME | --format=SCHEME Select the encoding scheme to use.\n\
125 if (elftc_demangle(name, dem, sizeof(dem), (unsigned) format) < 0)
151 if ((format = find_format(optarg)) < 0)
152 errx(EXIT_FAILURE, "unsupported format: %s",

Completed in 242 milliseconds

<<11121314151617181920>>