Home
last modified time | relevance | path

Searched full:binary (Results 1 – 25 of 9249) sorted by relevance

12345678910>>...370

/freebsd/share/doc/usd/07.mail/
H A Dmail9.nr4 .\" Redistribution and use in source and binary forms, with or without
9 .\" 2. Redistributions in binary form must reproduce the above copyright
33 commands, binary and valued options, and tilde escapes.
82 set Set binary or valued options
100 shown as being either a binary or valued option.
111 append binary Always append messages to end of \fImbox\fP
112 ask binary Prompt user for Subject: field when sending
113 askcc binary Prompt user for additional Cc's at end of message
114 autoprint binary Print next message after \fBdelete\fP
116 debug binary Print out debugging information
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DBinary.cpp1 //===- Binary.cpp - A generic binary file ---------------------------------===//
9 // This file defines the Binary class.
13 #include "llvm/Object/Binary.h"
34 Binary::~Binary() = default;
36 Binary::Binary(unsigned int Type, MemoryBufferRef Source) in Binary() function in Binary
39 StringRef Binary::getData() const { return Data.getBuffer(); } in getData()
41 StringRef Binary
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DOffloadBinary.h9 // This file contains the binary format used for budingling device metadata with
11 // file to create a fat binary and read by the linker. This is intended to be a
13 // complex it should be moved to a standard binary format like msgpack or ELF.
23 #include "llvm/Object/Binary.h"
52 /// A simple binary serialization of an offloading file. We use this format to
61 class OffloadBinary : public Binary {
66 /// The current version of the binary used for backwards compatibility.
78 /// Attempt to parse the offloading binary stored in \p Data.
81 /// Serialize the contents of \p File to a binary buffer to be read later.
98 // Iterator over all the key and value pairs in the binary
160 OffloadFile(std::unique_ptr<OffloadBinary> Binary,std::unique_ptr<MemoryBuffer> Buffer) OffloadFile() argument
[all...]
H A DBinary.h1 //===- Binary.h - A generic binary file -------------------------*- C++ -*-===//
9 // This file declares the Binary class.
32 class Binary {
39 Binary(unsigned int Type, MemoryBufferRef Source);
53 ID_Offload, // Offloading binary file.
93 Binary() = delete;
94 Binary(const Binary &other) = delete;
95 virtual ~Binary();
187 DEFINE_ISA_CONVERSION_FUNCTIONS(Binary, LLVMBinaryRef)
189 /// Create a Binary from Source, autodetecting the file type.
[all …]
/freebsd/share/man/man5/
H A Da.out.57 .\" Redistribution and use in source and binary forms, with or without
12 .\" 2. Redistributions in binary form must reproduce the above copyright
36 .Nd format of executable binary files
48 A binary file consists of up to 7 sections.
53 to load a binary file into memory and execute it,
56 to combine a binary file with other binary files.
66 to update pointers in the text segment when combining binary files.
73 between binary files.
78 Every binary file begins with an
131 This indicates which machine(s) the binary is intended to run on.
[all …]
/freebsd/contrib/file/tests/
H A DMakefile.am93 pgp-binary-key-v2-phil.result \
94 pgp-binary-key-v2-phil.testfile \
95 pgp-binary-key-v3-lutz.result \
96 pgp-binary-key-v3-lutz.testfile \
97 pgp-binary-key-v4-dsa.result \
98 pgp-binary-key-v4-dsa.testfile \
99 pgp-binary-key-v4-ecc-no-userid-secret.result \
100 pgp-binary-key-v4-ecc-no-userid-secret.testfile \
101 pgp-binary-key-v4-ecc-secret-key.result \
102 pgp-binary-key-v4-ecc-secret-key.testfile \
[all …]
/freebsd/usr.sbin/uefisign/
H A Duefisign.86 .\" Redistribution and use in source and binary forms, with or without
11 .\" 2. Redistributions in binary form must reproduce the above copyright
47 utility signs PE binary files using Authenticode scheme, as required by
57 Name of file containing the private key used to sign the binary.
59 Name of file containing the certificate used to sign the binary.
61 Name of file to write the signed binary to.
70 Generate self-signed certificate and use it to sign a binary:
72 .Dl uefisign -c testcert.pem -k testcert.key -o signed-binary binary
75 .Dl uefisign -Vv binary
/freebsd/contrib/wireguard-tools/
H A Dipc-freebsd.h61 const void *binary; in kernel_get_device() local
102 binary = nvlist_get_binary(nvl_device, "public-key", &size); in kernel_get_device()
103 if (binary && size == sizeof(dev->public_key)) { in kernel_get_device()
104 memcpy(dev->public_key, binary, sizeof(dev->public_key)); in kernel_get_device()
109 binary = nvlist_get_binary(nvl_device, "private-key", &size); in kernel_get_device()
110 if (binary && size == sizeof(dev->private_key)) { in kernel_get_device()
111 memcpy(dev->private_key, binary, sizeof(dev->private_key)); in kernel_get_device()
130 binary = nvlist_get_binary(nvl_peers[i], "public-key", &size); in kernel_get_device()
131 if (binary && size == sizeof(peer->public_key)) { in kernel_get_device()
132 memcpy(peer->public_key, binary, sizeof(peer->public_key)); in kernel_get_device()
[all …]
/freebsd/contrib/elftoolchain/libelftc/
H A Delftc.33 .\" Redistribution and use in source and binary forms, with or without
8 .\" 2. Redistributions in binary form must reproduce the above copyright
48 .It "Binary Object Handling"
51 Locate a binary object descriptor.
53 Query the ELF class for a binary object descriptor.
55 Query the byte order for a binary object descriptor.
57 Query the object format for a binary object descriptor.
59 Query the target machine for a binary object descriptor.
61 Query the target osabi for a binary object descriptor.
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DOffloadYAML.h1 //===- OffloadYAML.h - Offload Binary YAMLIO implementation -----*- C++ -*-===//
26 struct Binary {
50 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::OffloadYAML::Binary::Member)
51 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::OffloadYAML::Binary::StringEntry) argument
64 template <> struct MappingTraits<OffloadYAML::Binary> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
65 static void mapping(IO &IO, OffloadYAML::Binary &O); in LLVM_YAML_IS_SEQUENCE_VECTOR()
68 template <> struct MappingTraits<OffloadYAML::Binary::StringEntry> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
69 static void mapping(IO &IO, OffloadYAML::Binary::StringEntry &M); in LLVM_YAML_IS_SEQUENCE_VECTOR()
72 template <> struct MappingTraits<OffloadYAML::Binary::Member> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
73 static void mapping(IO &IO, OffloadYAML::Binary in LLVM_YAML_IS_SEQUENCE_VECTOR()
27 struct Binary { global() struct
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCCodeEmitter.h52 // binary encoding for an instruction.
57 // getJumpTargetOpValue - Return binary encoding of the jump
64 // getBranchJumpOpValueMM - Return binary encoding of the microMIPS jump
71 // getUImm5Lsl2Encoding - Return binary encoding of the microMIPS jump
85 // getSImm9AddiuspValue - Return binary encoding of the microMIPS addiusp
91 // getBranchTargetOpValue - Return binary encoding of the branch
98 // getBranchTargetOpValue1SImm16 - Return binary encoding of the branch
105 // getBranchTargetOpValueMMR6 - Return binary encoding of the branch
112 // getBranchTargetOpValueLsl2MMR6 - Return binary encoding of the branch
119 // getBranchTarget7OpValue - Return binary encodin
[all...]
/freebsd/usr.sbin/crunch/crunchgen/
H A Dcrunchgen.131 .Nd generates build environment for a crunched binary
44 A crunched binary is a program made up of many other programs linked
46 The crunched binary
58 for a crunched binary, and generates a
102 is run, the crunched binary can be built by running
124 Set crunched binary executable file name to
133 Lists the names this binary will respond to.
172 that describe the components of the crunched binary.
201 A list of programs that make up the crunched binary.
206 A list of library specifications to be included in the crunched binary link.
[all …]
/freebsd/libexec/rtld-elf/tests/
H A Dld_library_pathfds.c5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
33 int binary; member
50 expect_missing_library(files.binary, NULL); in ATF_TC_BODY()
64 expect_missing_library(files.binary, pathfds); in ATF_TC_BODY()
77 expect_missing_library(files.binary, pathfds); in ATF_TC_BODY()
91 expect_success(files.binary, pathfds); in ATF_TC_BODY()
106 expect_success(files.binary, pathfds); in ATF_TC_BODY()
121 expect_success(files.binary, pathfds); in ATF_TC_BODY()
136 expect_success(files.binary, pathfds); in ATF_TC_BODY()
[all …]
H A Dcommon.c6 * Redistribution and use in source and binary forms, with or without
11 * 2. Redistributions in binary form must reproduce the above copyright
34 expect_success(int binary, char *senv) in expect_success() argument
38 try_to_run(binary, 0, env, "the hypotenuse of 3 and 4 is 5\n", ""); in expect_success()
42 expect_missing_library(int binary, char *senv) in expect_missing_library() argument
46 try_to_run(binary, 1, env, "", in expect_missing_library()
52 try_to_run(int binary, int exit_status, char * const *env, in try_to_run() argument
60 fexecve(binary, args, env); in try_to_run()
/freebsd/usr.sbin/efidp/
H A Defidp.84 .\" Redistribution and use in source and binary forms, with or without
9 .\" 2. Redistributions in binary form must reproduce the above copyright
40 Device Paths, as defined in the UEFI standard, to and from binary form.
41 Binary and textual forms are defined in Chapter 9 of the UEFI
46 Formats a binary UEFI Device Path into its canonical UTF-8 textual form.
47 A binary Device Path can be no longer than 65536 bytes.
49 Multiple binary device paths may be specified.
51 Parses a UEFI Device Path UTF-8 specification and outputs the binary
56 The resulting binary Device Path can be no longer than 65536 bytes.
/freebsd/contrib/file/magic/Magdir/
H A Dxdelta6 0 string %XDELTA% XDelta binary patch file 0.14
7 0 string %XDZ000% XDelta binary patch file 0.18
8 0 string %XDZ001% XDelta binary patch file 0.20
9 0 string %XDZ002% XDelta binary patch file 1.0
10 0 string %XDZ003% XDelta binary patch file 1.0.4
11 0 string %XDZ004% XDelta binary patch file 1.1
13 0 string \xD6\xC3\xC4\x00 VCDIFF binary diff
H A Dlammps10 # Binary restart file for the LAMMPS MD code
11 0 string LammpS\ RestartT LAMMPS binary restart file
17 # Atom style binary dump file for the LAMMPS MD code
20 >0x08 string DUMPATOM LAMMPS atom style binary dump
27 >0x08 string DUMPATOM LAMMPS atom style binary dump
32 # Atom style binary dump file for the LAMMPS MD code
35 >0x08 string DUMPCUSTOM LAMMPS custom style binary dump
42 >0x08 string DUMPCUSTOM LAMMPS custom style binary dump
/freebsd/lib/libc/stdlib/
H A Dtsearch.35 .\" Redistribution and use in source and binary forms, with or without
10 .\" 2. Redistributions in binary form must reproduce the above copyright
34 .Nd manipulate binary search trees
52 functions manage binary search trees.
67 in the binary tree rooted at
82 points to a NULL value a new binary search tree is created.
87 deletes a node from the specified binary search tree and returns
93 If the node to be deleted is the root of the binary search tree,
100 walks the binary search tree rooted in
146 is used to return and display the resulting binary search tree.
/freebsd/contrib/dialog/package/debian/
H A Drules119 binary-indep: build install
120 # No binary-indep target.
123 binary-arch: build install
139 binary: binary-indep binary-arch target
140 .PHONY: build clean binary-indep binary-arch binary install install-stamp
/freebsd/contrib/gdtoa/
H A DREADME1 This directory contains source for a library of binary -> decimal
2 and decimal -> binary conversion routines, for single-, double-,
3 and extended-precision IEEE binary floating-point arithmetic, and
4 other IEEE-like binary floating-point, including "double double",
18 David M. Gay, "Correctly Rounded Binary-Decimal and
19 Decimal-Binary Conversions", Numerical Analysis Manuscript
26 The present conversion routines should be able to use any of IEEE binary,
31 The core conversion routines are strtodg for decimal -> binary conversions
32 and gdtoa for binary -> decimal conversions. These routines operate
42 that know details of the particular binary arithmetic of interest and
[all …]
/freebsd/share/man/man9/
H A Dfirmware.94 .\" Redistribution and use in source and binary forms, with or without
9 .\" 2. Redistributions in binary form must reproduce the above copyright
95 Firmware binary files may also be loaded directly rather than embedded into
267 # NB: ld encodes the path in the binary symbols generated for the
279 but this is no longer required; the binary firmware file should be committed
287 .Sh LOADING BINARY FIRMWARE FILES
288 .Ss Binary Firmware Format
289 Binary firmware files can also be loaded, either from
294 Binary firmware files are raw binary files that the creator of the firmware
300 Binary firmware files only hold one set of firmware.
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYMCCodeEmitter.cpp74 uint32_t Binary; in expandJBTF()
80 Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); in expandJBTF()
81 writeData(Binary, 2, CB); in expandJBTF()
89 Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); in expandJBTF()
91 writeData(Binary, 4, CB); in expandJBTF()
99 uint32_t Binary; in expandNEG()
105 Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); in expandNEG()
106 writeData(Binary, Size, CB); in expandNEG()
112 Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); in expandNEG()
113 writeData(Binary, Siz in expandNEG()
76 uint32_t Binary; expandJBTF() local
101 uint32_t Binary; expandNEG() local
123 uint32_t Binary; expandRSUBI() local
283 unsigned Binary = ((Reg1 & 0x1f) << 5) | (Reg2 - Reg1); getRegisterSeqOpValue() local
[all...]
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_hdmi.c99 * hdmi_avi_infoframe_pack_only() - write HDMI AVI infoframe to binary buffer
104 * Packs the information contained in the @frame structure into a binary
109 * Returns the number of bytes packed into the binary buffer or a negative
188 * and write it to binary buffer
195 * contained in the @frame structure into a binary representation that
200 * Returns the number of bytes packed into the binary buffer or a negative
270 * hdmi_spd_infoframe_pack_only() - write HDMI SPD infoframe to binary buffer
275 * Packs the information contained in the @frame structure into a binary
280 * Returns the number of bytes packed into the binary buffer or a negative
322 * and write it to binary buffer
[all …]
/freebsd/contrib/libarchive/libarchive/
H A Dcpio.54 .\" Redistribution and use in source and binary forms, with or without
9 .\" 2. Redistributions in binary form must reproduce the above copyright
49 (binary, octal, or hexadecimal).
57 The PWB binary
61 stores numbers as 2-byte and 4-byte binary values.
170 .Ss New Binary Format
171 The new binary
174 It is exactly like the PWB binary format, described above, except for
223 Note that there is no obvious way to tell which of the two binary
243 It stores the same numeric fields as the old binary forma
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DSymbolize.h20 #include "llvm/Object/Binary.h"
117 // Evict entries from the binary cache until it is under the maximum size
195 /// architecture (e.g. if path refers to a Mach-O universal binary, only one
200 /// Update the LRU cache order when a binary is accessed.
211 /// Contains parsed binary for each path, or parsing error.
220 /// to Mach-O universal binary.
229 // A binary intrusively linked into a LRU cache list. If the binary is empty,
235 CachedBinary(OwningBinary<Binary> Bin) : Bin(std::move(Bin)) {} in evict()
237 OwningBinary<Binary> in evict()
[all...]

12345678910>>...370