Home
last modified time | relevance | path

Searched +full:- +full:- +full:format (Results 1 – 25 of 1115) sorted by relevance

12345678910>>...45

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFormats.td1 //===-- X86InstrFormats.td - X86 Instruction Formats -------*- tablegen -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 //===----------------------------------------------------------------------===//
10 // X86 Instruction Format Definitions.
13 // Format specifies the encoding used by the instruction. This is part of the
14 // ad-hoc solution used to emit machine instruction encodings by our machine
16 class Format<bits<7> val> {
20 def Pseudo : Format<0>;
21 def RawFrm : Format<1>;
[all …]
/freebsd/usr.sbin/syslogd/tests/
H A Dsyslogd_forwarded_format_test.sh1 #-
2 # SPDX-License-Identifier: BSD-2-Clause
16 local format="$1"
23 tcpdump --immediate-mode -c 1 -i lo0 -w "${pcapfile}" \
29 syslogd_start_on_port "${SERVER_1_PORT}" -O "${format}"
34 syslogd_start_on_port "${SERVER_2_PORT}" -O "${format}"
37 syslogd_log -4 -p user.debug -t "${TAG}" -h 127.0.0.1 \
38 -P "${SERVER_2_PORT}" -H "${HOSTNAME}" "${MSG}"
46 atf_set descr "bsd format test on a forwarded syslog message"
51 local format="bsd"
[all …]
H A Dsyslogd_relayed_format_test.sh1 #-
2 # SPDX-License-Identifier: BSD-2-Clause
14 # [Host] ---UDP--> [Relay] ---UDP--> [Central]
17 local format="$1"
24 tcpdump --immediate-mode -c 1 -i lo0 -w "${pcapfile}" dst port \
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}"
44 syslogd_log -4 -p user.debug -t "${TAG}" -h 127.0.0.1 \
45 -P "${SERVER_3_PORT}" -H "${HOSTNAME}" "${MSG}"
[all …]
H A Dsyslogd_basic_format_test.sh1 #-
2 # SPDX-License-Identifier: BSD-2-Clause
9 # Basic format tests
13 local format="$1"
19 -O "${format}" \
20 -N \
21 -ss
23 syslogd_log -p user.debug -t "${TAG}" \
24 -h "${SYSLOGD_LOCAL_SOCKET}" \
25 -H "${HOSTNAME}" "${MSG}"
[all …]
/freebsd/contrib/libarchive/libarchive/
H A Dlibarchive-formats.51 .\" Copyright (c) 2003-2009 Tim Kientzle
26 .Dt LIBARCHIVE-FORMATS 5
29 .Nm libarchive-formats
40 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.
52 It can write POSIX-standard
56 formats as well as v7 tar format and a subset of the legacy GNU tar format.
58 All tar formats store each entry in one or more 512-byt
[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
61 stores numbers as 2-byte and 4-byte binary values.
62 Each entry begins with a header in the following format:
64 .Bd -litera
[all...]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dformat1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
16 // [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
47 basic_string_view<charT> str; // exposition-only
[all …]
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupFormat.cpp1 //===-- OptionGroupFormat.cpp ---------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
20 {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()
84 error.SetErrorString("--count option is disabled"); in SetOptionValue()
[all …]
/freebsd/usr.bin/hexdump/
H A Dhexdump.140 .Bk -words
49 .Bk -words
58 format.
61 .Bl -tag -width indent
63 .Em One-byte octal display .
65 space-separated, three column, zero-filled, bytes of input data,
68 .Em One-byte character display .
70 space-separated, three column, space-filled, characters of input
75 space-separated, two column, hexadecimal bytes, followed by the
76 same sixteen bytes in %_p format enclosed in ``|'' characters.
[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
74 if (begin == expansion.length() - 1) in find_next_placeholder()
75 throw format::bad_format_error(format, "Trailing %"); in find_next_placeholder()
80 const std::string placeholder = expansion.substr(begin, end - begin + 1); 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.
[all …]
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dformat.cppm
/freebsd/secure/usr.bin/openssl/man/
H A Dopenssl-format-options.118 .\" Set up some character translations and predefined strings. \*(-- will
24 .tr \(*W-
27 . ds -- \(*W-
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
37 . ds -- \|\(em\|
71 .\" Fear. Run. Save yourself. No user-serviceable parts.
81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
[all …]
/freebsd/sys/contrib/libsodium/packaging/dotnet-core/
H A Dprepare.py8 # --------------------- ----------------- #
10 # --------------------- ----------------- #
11 ( 'win-x64', 'x64' ),
12 ( 'win-x86', 'Win32' ),
13 # --------------------- ----------------- #
17 # --------------------- ----------------- #
19 # --------------------- ----------------- #
20 ( 'osx-x64', 'sierra' ),
21 # --------------------- ----------------- #
25 # --------------------- ----------------- #
[all …]
/freebsd/contrib/ldns/ldns/
H A Dhost2str.h2 * host2str.h - txt presentation of RRs
6 * (c) NLnet Labs, 2005-2006
47 ---------------------------------------------------------------------*/
79 * 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.
[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/usr.bin/clang/llvm-size/
H A Dllvm-size.14 .nr rst2man-indent-level 0
7 \\$1 \\n[an-margin]
8 level \\n[rst2man-indent-level]
9 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
10 -
11 \\n[rst2man-indent0]
12 \\n[rst2man-indent1]
13 \\n[rst2man-indent2]
18 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
19 . nr rst2man-indent-level +1
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkFormat.cpp1 //===- RemarkFormat.cpp --------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
20 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()
[all …]
H A DRemarkParser.cpp1 //===- RemarkParser.cpp --------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
17 #include "llvm-c/Remarks.h"
31 Offsets.push_back(Split.first.data() - Buffer.data()); in ParsedStringTable()
47 (Index == Offsets.size() - 1) ? Buffer.size() : Offsets[Index + 1]; in operator []()
48 return StringRef(Buffer.data() + Offset, NextOffset - Offset - 1); in operator []()
52 llvm::remarks::createRemarkParser(Format ParserFormat, StringRef Buf) { in createRemarkParser()
54 case Format::YAML: in createRemarkParser()
[all …]
/freebsd/contrib/libxo/doc/
H A Dformat-strings.rst2 .. index:: Format Strings
3 .. _format-strings:
5 Format Strings
6 --------------
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
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DARMEHABI.h1 //===--- ARMEHABI.h - ARM Exception Handling ABI ----------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 // Exception Handling ABI for the ARM Architecture r2.09 - November 30, 2012
19 //===----------------------------------------------------------------------===//
38 /// ARM-defined frame unwinding opcodes
40 // Format: 00xxxxxx
44 // Format: 01xxxxxx
45 // Purpose: vsp = vsp - ((x << 2) + 4)
48 // Format: 10000000 00000000
[all …]
H A DCompression.h1 //===-- llvm/Support/Compression.h ---Compression----------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
24 // compression::Format, which is used for compressed debug sections in some
26 // compression::Format members for non-debugging purposes.
57 constexpr int NoCompression = -5;
76 enum class Format { enum
81 inline Format formatFor(DebugCompressionType Type) { in formatFor()
86 return Format::Zlib; in formatFor()
[all …]
/freebsd/crypto/openssl/util/
H A Dcheck-format-commit.sh2 # Copyright 2020-2024 The OpenSSL Project Authors. All Rights Reserved.
9 # 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.
32 TEMPDIR=$(mktemp -d /tmp/checkformat.XXXXXX)
35 # used to locate the check-format.pl script
36 TOPDIR=$(git rev-parse --show-toplevel)
42 rm -rf $TEMPDIR
51 COMMIT=$(git rev-parse $1)
53 # Fail gracefully if git rev-parse doesn't produce a valid
[all …]
/freebsd/contrib/ntp/libparse/
H A Dclk_meinberg.c2 * /src/NTP/REPOSITORY/ntp4-dev/libparse/clk_meinberg.c,v 4.12.2.1 2005/09/25 10:22:35 kardel RELEASE_20050925_A
8 * Copyright (c) 1995-2015 by Frank Kardel <kardel <AT> ntp.org>
9 * Copyright (c) 1989-1994 by Frank Kardel, Friedrich-Alexander Universitaet Erlangen-Nuernberg, Germany
67 * (Standard Format)
90 * Extended data format (PZFUERL for PZF type clocks)
113 * For very old devices you must get the Uni-Erlangen firmware for the GPS receiver support
115 * With newer GPS receiver types the Uni Erlangen string format can be configured at the device.
117 * <STX><dd>.<mm>.<yy>; <w>; <hh>:<mm>:<ss>; <+/-><0
278 struct format *format; cvt_meinberg() local
471 cvt_mgps(unsigned char * buffer,int size,struct format * format,clocktime_t * clock_time,void * local) cvt_mgps() argument
[all...]
/freebsd/contrib/unbound/util/
H A Dlog.h2 * util/log.h - logging service
50 /** 0 - no verbose messages */
52 /** 1 - operational information */
54 /** 2 - detailed information */
56 /** 3 - query level information */
58 /** 4 - algorithm level information */
60 /** 5 - querier client information */
72 * @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.
[all …]
/freebsd/sys/dev/vmm/
H A Dvmm_ktr.h1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
39 #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))
[all …]

12345678910>>...45