Home
last modified time | relevance | path

Searched full:format (Results 1 – 25 of 5273) sorted by relevance

12345678910>>...211

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFormats.td10 // X86 Instruction Format Definitions.
13 // Format specifies the encoding used by the instruction. This is part of the
16 class Format<bits<7> val> {
20 def Pseudo : Format<0>;
21 def RawFrm : Format<1>;
22 def AddRegFrm : Format<2>;
23 def RawFrmMemOffs : Format<3>;
24 def RawFrmSrc : Format<4>;
25 def RawFrmDst : Format<5>;
26 def RawFrmDstSrc : Format<6>;
[all …]
/freebsd/usr.sbin/syslogd/tests/
H A Dsyslogd_forwarded_format_test.sh16 local format="$1"
29 syslogd_start_on_port "${SERVER_1_PORT}" -O "${format}"
34 syslogd_start_on_port "${SERVER_2_PORT}" -O "${format}"
46 atf_set descr "bsd format test on a forwarded syslog message"
51 local format="bsd"
52 local logfile="${PWD}/${format}_forwarded.log"
53 local pcapfile="${PWD}/${format}_forwarded.pcap"
55 setup_forwarded_format_test "${format}" "${logfile}" "${pcapfile}"
73 atf_set descr "rfc3164 format test on a forwarded syslog message"
78 local format="rfc3164"
[all …]
H A Dsyslogd_relayed_format_test.sh17 local format="$1"
31 syslogd_start_on_port "${SERVER_1_PORT}" -O "${format}"
36 syslogd_start_on_port "${SERVER_2_PORT}" -O "${format}"
41 syslogd_start_on_port "${SERVER_3_PORT}" -O "${format}"
53 atf_set descr "bsd format test on a relayed syslog message"
58 local format="bsd"
59 local logfile="${PWD}/${format}_relayed.log"
60 local pcapfile="${PWD}/${format}_relayed.pcap"
62 setup_relayed_format_test "${format}" "${logfile}" "${pcapfile}"
64 atf_expect_fail "PR 220246 issue with the legacy bsd format"
[all …]
H A Dsyslogd_basic_format_test.sh9 # Basic format tests
13 local format="$1"
19 -O "${format}" \
31 atf_set descr "bsd format test on local syslog message"
35 local format="bsd"
36 local logfile="${PWD}/O_flag_${format}_basic.log"
38 setup_basic_format_test "${format}" "${logfile}"
50 atf_set descr "rfc3164 format test on local syslog message"
54 local format="rfc3164"
55 local logfile="${PWD}/O_flag_${format}_basic.log"
[all …]
/freebsd/contrib/libarchive/libarchive/
H A Dlibarchive-formats.540 The following provides a brief description of each format supported
43 Note that just because a format is supported by libarchive does not
44 imply that a program that uses libarchive will support that format.
56 formats as well as v7 tar format and a subset of the legacy GNU tar format.
70 library can read most GNU-format tar archives.
74 archives, nor the old GNU long filename format.
80 library can write GNU tar format, including long filename
85 library can read and write POSIX-compliant pax interchange format
87 Pax interchange format archive
[all...]
H A Dcpio.530 .Nd format of cpio archive files
34 archive format collects any number of files, directories, and other
37 .Ss General Format
56 .Ss PWB format
59 format is the original format, when cpio was introduced as part of the
62 Each entry begins with a header in the following format:
86 are in PDP-endian format, which has little-endian shorts, and
104 it also holds a couple of bits that are irrelevant to the cpio format,
155 The size of the file. Note that this archive format i
[all...]
/freebsd/contrib/kyua/utils/format/
H A Dformatter.cpp29 #include "utils/format/formatter.hpp"
35 #include "utils/format/exceptions.hpp"
40 namespace format = utils::format;
49 /// \param format The original format string provided by the user; needed for
65 find_next_placeholder(const std::string& format, in find_next_placeholder() argument
75 throw format::bad_format_error(format, "Trailing %"); in find_next_placeholder()
83 throw format::bad_format_error(format, "Unterminated placeholder '" + in find_next_placeholder()
91 /// \param format The format string; for error reporting purposes only.
98 to_int(const std::string& format, const std::string& str, const char* what) in to_int() argument
103 throw format::bad_format_error(format, "Invalid " + std::string(what) + in to_int()
[all …]
H A DMakefile.am.inc29 libutils_a_SOURCES += utils/format/containers.hpp
30 libutils_a_SOURCES += utils/format/containers.ipp
31 libutils_a_SOURCES += utils/format/exceptions.cpp
32 libutils_a_SOURCES += utils/format/exceptions.hpp
33 libutils_a_SOURCES += utils/format/formatter.cpp
34 libutils_a_SOURCES += utils/format/formatter.hpp
35 libutils_a_SOURCES += utils/format/formatter_fwd.hpp
36 libutils_a_SOURCES += utils/format/formatter.ipp
37 libutils_a_SOURCES += utils/format/macros.hpp
40 tests_utils_formatdir = $(pkgtestsdir)/utils/format
[all …]
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupFormat.cpp20 {LLDB_OPT_SET_1, false, "format", 'f', OptionParser::eRequiredArgument,
22 "Specify a format to be used for display."},
23 {LLDB_OPT_SET_2, false, "gdb-format", 'G', OptionParser::eRequiredArgument,
25 "Specify a format using a GDB format specifier string."},
28 "The size in bytes to use when displaying with the selected format."},
35 lldb::Format default_format, uint64_t default_byte_size, in OptionGroupFormat()
109 Format format = eFormatDefault; in SetOptionValue() local
113 ParserGDBFormatLetter(execution_context, gdb_format_str[0], format, in SetOptionValue()
120 // something is wrong. Also, if none of the format, size or count was in SetOptionValue()
123 (format == eFormatInvalid && byte_size == 0 && count == 0)) { in SetOptionValue()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dformat16 // [format.context], class template basic_format_context
21 // [format.args], class template basic_format_args
26 // [format.fmt.string], class template basic_format_string
34 basic_format_string(runtime-format-string<charT> s) noexcept : str(s.str) {} // since C++26
45 template<class charT> struct runtime-format-string { // since C++26, exposition-only
50 runtime-format-string(basic_string_view<charT> s) noexcept : str(s) {}
52 runtime-format-string(const runtime-format-string&) = delete;
53 runtime-format-string& operator=(const runtime-format-string&) = delete;
56 runtime-format-string<char> runtime_format(string_view fmt) noexcept {
59 runtime-format-string<wchar_t> runtime_format(wstring_view fmt) noexcept {
[all …]
/freebsd/sys/dev/vmm/
H A Dvmm_ktr.h39 #define VCPU_CTR0(vm, vcpuid, format) \ argument
40 CTR2(KTR_VMM, "vm %s[%d]: " format, vm_name((vm)), (vcpuid))
42 #define VCPU_CTR1(vm, vcpuid, format, p1) \ argument
43 CTR3(KTR_VMM, "vm %s[%d]: " format, vm_name((vm)), (vcpuid), (p1))
45 #define VCPU_CTR2(vm, vcpuid, format, p1, p2) \ argument
46 CTR4(KTR_VMM, "vm %s[%d]: " format, vm_name((vm)), (vcpuid), (p1), (p2))
48 #define VCPU_CTR3(vm, vcpuid, format, p1, p2, p3) \ argument
49 CTR5(KTR_VMM, "vm %s[%d]: " format, vm_name((vm)), (vcpuid), (p1), (p2), (p3))
51 #define VCPU_CTR4(vm, vcpuid, format, p1, p2, p3, p4) \ argument
52 CTR6(KTR_VMM, "vm %s[%d]: " format, vm_name((vm)), (vcpuid), \
[all …]
/freebsd/usr.bin/hexdump/
H A Dhexdump.158 format.
76 same sixteen bytes in %_p format enclosed in ``|'' characters.
87 Specify a format string to be used for displaying data.
89 Specify a file that contains one or more newline separated format strings.
152 data according to the format strings specified by the
158 A format string contains any number of format units, separated by
160 A format unit contains up to three items: an iteration count, a byte
161 count, and a format.
165 Each format is applied iteration count times.
169 each iteration of the format.
[all …]
/freebsd/contrib/ldns/ldns/
H A Dhost2str.h79 * Output format specifier
98 * Output format struct with additional data for flags that use them.
110 * Standard output format record that disables commenting in the textual
115 * Standard output format record that annotated only DNSKEY RR's with comment
120 * The default output format record. Same as ldns_output_format_onlykeyids.
124 * Standard output format record that shows all DNSKEY related information in
131 * Initialize output format storage to the default value.
144 * Set an output format flag.
151 * Clear an output format flag.
158 * Makes sure the LDNS_FMT_RFC3597 is set in the output format.
[all …]
/freebsd/secure/usr.bin/openssl/man/
H A Dopenssl-format-options.1133 .IX Title "OPENSSL-FORMAT-OPTIONS 1ossl"
134 .TH OPENSSL-FORMAT-OPTIONS 1ossl "2023-09-19" "3.0.11" "OpenSSL"
140 openssl\-format\-options \- OpenSSL command input and output format options
154 format is no more needed and the openssl commands will automatically try all
155 the possible formats. However if the \fB\s-1DER\s0\fR or \fB\s-1PEM\s0\fR input format is specified
158 In order to access a key via an engine the input format \fB\s-1ENGINE\s0\fR may be used;
164 .SS "Format Options"
165 .IX Subsection "Format Options"
166 The options to specify the format are as follows.
168 .IP "\fB\-inform\fR \fIformat\fR, \fB\-outform\fR \fIformat\fR" 4
[all …]
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-format-options.pod5 openssl-format-options - OpenSSL command input and output format options
21 format is no more needed and the openssl commands will automatically try all
22 the possible formats. However if the B<DER> or B<PEM> input format is specified
25 In order to access a key via an engine the input format B<ENGINE> may be used;
32 =head2 Format Options
34 The options to specify the format are as follows.
39 =item B<-inform> I<format>, B<-outform> I<format>
41 The format of the input or output streams.
43 =item B<-keyform> I<format>
45 Format of a private key input source.
[all …]
/freebsd/contrib/unbound/util/
H A Dlog.h72 * @param format: printf-style format string. Arguments follow.
75 const char* format, ...) ATTR_FORMAT(printf, 2, 3);
142 * Set if the time value is printed in ISO8601 format.
143 * @param use_iso: if true, ascii timestamps are formatted in iso format.
153 * @param format: printf-style format string. Arguments follow.
155 void log_info(const char* format, ...) ATTR_FORMAT(printf, 1, 2);
160 * @param format: printf-style format string. Arguments follow.
162 void log_err(const char* format, ...) ATTR_FORMAT(printf, 1, 2);
167 * @param format: printf-style format string. Arguments follow.
169 void log_warn(const char* format, ...) ATTR_FORMAT(printf, 1, 2);
[all …]
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dformat.cppm
/freebsd/sys/contrib/libsodium/packaging/dotnet-core/
H A Dprepare.py53 self.projfile = os.path.join(self.builddir, '{0}.{1}.pkgproj'.format(PACKAGE, package_version))
54 self.propsfile = os.path.join(self.builddir, '{0}.props'.format(PACKAGE))
55 self.pkgfile = os.path.join(BUILDDIR, '{0}.{1}.nupkg'.format(PACKAGE, package_version))
60 …self.url = 'https://download.libsodium.org/libsodium/releases/libsodium-{0}-msvc.zip'.format(versi…
63 self.itemfile = '{0}/Release/v140/dynamic/libsodium.dll'.format(platform)
69 f.write('{0}: {1}\n'.format(self.packfile, self.tempfile))
73 f.write('{0}: {1}\n'.format(self.tempfile, self.cachefile))
75 f.write('\tcd {0} && unzip -q -DD -o {1} \'{2}\'\n'.format(
84 …omebrew/bottles/download_file?file_path=libsodium-{0}.{1}.bottle.tar.gz'.format(version.libsodium_…
87 self.itemfile = 'libsodium/{0}/lib/libsodium.dylib'.format(version.libsodium_version)
[all …]
/freebsd/contrib/libxo/doc/
H A Dformat-strings.rst2 .. index:: Format Strings
5 Format Strings
8 libxo uses format strings to control the rendering of data into the
9 various output styles. Each format string contains a set of zero or
12 zero, one, or two format descriptors. The modifiers tell libxo what
13 the field is and how to treat it, while the format descriptors are
14 formatting instructions using printf-style format strings, telling
15 libxo how to format the field. The field description is placed inside
17 ("/") before each format descriptors. Text may be intermixed with
18 field descriptions within the format string.
[all …]
/freebsd/usr.bin/clang/llvm-size/
H A Dllvm-size.150 Equivalent to \fI\%\-\-format\fP with a value of \fBsysv\fP\&.
60 Equivalent to \fI\%\-\-format\fP with a value of \fBberkeley\fP\&.
65 Include ELF common symbol sizes in bss size for \fBberkeley\fP output format, or
78 Mach\-O files in \fBdarwin\fP format.
82 .B \-\-format=<format>
83 Set the output format to the \fB<format>\fP specified. Available \fB<format>\fP
93 $ llvm\-size \-\-format=berkeley test.o test2.o
102 For Mach\-O files, the output format is slightly different:
108 $ llvm\-size \-\-format=berkeley macho.obj macho2.obj
124 $ llvm\-size \-\-format=sysv test.elf test2.o
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkFormat.cpp20 Expected<Format> llvm::remarks::parseFormat(StringRef FormatStr) { in parseFormat()
21 auto Result = StringSwitch<Format>(FormatStr) in parseFormat()
22 .Cases("", "yaml", Format::YAML) in parseFormat()
23 .Case("yaml-strtab", Format::YAMLStrTab) in parseFormat()
24 .Case("bitstream", Format::Bitstream) in parseFormat()
25 .Default(Format::Unknown); in parseFormat()
27 if (Result == Format::Unknown) in parseFormat()
29 "Unknown remark format: '%s'", in parseFormat()
35 Expected<Format> llvm::remarks::magicToFormat(StringRef MagicStr) { in magicToFormat()
37 StringSwitch<Format>(MagicStr) in magicToFormat()
[all …]
H A DRemarkParser.cpp52 llvm::remarks::createRemarkParser(Format ParserFormat, StringRef Buf) { in createRemarkParser()
54 case Format::YAML: in createRemarkParser()
56 case Format::YAMLStrTab: in createRemarkParser()
59 "The YAML with string table format requires a parsed string table."); in createRemarkParser()
60 case Format::Bitstream: in createRemarkParser()
62 case Format::Unknown: in createRemarkParser()
64 "Unknown remark parser format."); in createRemarkParser()
70 llvm::remarks::createRemarkParser(Format ParserFormat, StringRef Buf, in createRemarkParser()
73 case Format::YAML: in createRemarkParser()
75 "The YAML format can't be used with a string " in createRemarkParser()
[all …]
/freebsd/crypto/openssl/util/
H A Dcheck-format-commit.sh9 # This script is a wrapper around check-format.pl. It accepts a commit sha
11 # changed in that commit, filtering check-format.pl output only to lines that
16 # List of Regexes to use when running check-format.pl.
35 # used to locate the check-format.pl script
62 # given commit. It produces output of the format
93 # to $TEMPDIR/check-format. This give us the full file to run
94 # check-format.pl on with line numbers matching the ranges in the
99 mkdir -p $TEMPDIR/check-format/$FDIR
100 git show $COMMIT:$j > $TEMPDIR/check-format/$j
103 # Now for each file in $TEMPDIR/check-format run check-format.pl
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DARMEHABI.h40 // Format: 00xxxxxx
44 // Format: 01xxxxxx
48 // Format: 10000000 00000000
52 // Format: 1000xxxx xxxxxxxx
57 // Format: 1001xxxx
62 // Format: 10100xxx
66 // Format: 10101xxx
70 // Format: 10110000
74 // Format: 10110100
78 // Format: 10110001 0000xxxx
[all …]
H A DCompression.h24 // compression::Format, which is used for compressed debug sections in some
26 // compression::Format members for non-debugging purposes.
76 enum class Format { enum
81 inline Format formatFor(DebugCompressionType Type) { in formatFor()
86 return Format::Zlib; in formatFor()
88 return Format::Zstd; in formatFor()
94 constexpr Params(Format F) in Params()
95 : format(F), level(F == Format::Zlib ? zlib::DefaultCompression in Params()
97 constexpr Params(Format F, int L, bool Ldm = false)
98 : format(F), level(L), zstdEnableLdm(Ldm) {} in format() function
[all …]

12345678910>>...211