Home
last modified time | relevance | path

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

12345678910>>...639

/freebsd-src/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-src/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::getFileName() const { return Data.getBufferIdentifier(); } in getFileName()
43 MemoryBufferRef Binary::getMemoryBufferRef() const { return Data; } in getMemoryBufferRef()
45 Expected<std::unique_ptr<Binary>> object::createBinary(MemoryBufferRef Buffer, in createBinary()
84 // PDB does not support the Binary interface. in createBinary()
[all …]
/freebsd-src/lib/libnv/tests/
H A Dnvlist_exists_test.c7 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
167 CHECK(!nvlist_exists(nvl, "nvlist/binary")); in main()
168 CHECK(!nvlist_exists_null(nvl, "nvlist/binary")); in main()
169 CHECK(!nvlist_exists_bool(nvl, "nvlist/binary")); in main()
170 CHECK(!nvlist_exists_number(nvl, "nvlist/binary")); in main()
171 CHECK(!nvlist_exists_string(nvl, "nvlist/binary")); in main()
172 CHECK(!nvlist_exists_nvlist(nvl, "nvlist/binary")); in main()
173 CHECK(!nvlist_exists_descriptor(nvl, "nvlist/binary")); in main()
174 CHECK(!nvlist_exists_binary(nvl, "nvlist/binary")); in main()
[all...]
H A Dnvlist_free_test.c7 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
59 nvlist_add_binary(nvl, "nvlist/binary", "test", 4); in main()
67 CHECK(nvlist_exists_binary(nvl, "nvlist/binary")); in main()
76 CHECK(nvlist_exists_binary(nvl, "nvlist/binary")); in main()
85 CHECK(nvlist_exists_binary(nvl, "nvlist/binary")); in main()
94 CHECK(nvlist_exists_binary(nvl, "nvlist/binary")); in main()
103 CHECK(nvlist_exists_binary(nvl, "nvlist/binary")); in main()
112 CHECK(nvlist_exists_binary(nvl, "nvlist/binary")); in main()
121 CHECK(nvlist_exists_binary(nvl, "nvlist/binary")); in main()
[all...]
H A Dnvlist_move_test.c7 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
98 CHECK(!nvlist_exists_binary(nvl, "nvlist/binary/x")); in main()
102 nvlist_move_binary(nvl, "nvlist/binary/x", ptr, 1); in main()
104 CHECK(nvlist_exists_binary(nvl, "nvlist/binary/x")); in main()
105 CHECK(ptr == nvlist_get_binary(nvl, "nvlist/binary/x", NULL)); in main()
106 CHECK(ptr == nvlist_get_binary(nvl, "nvlist/binary/x", &size)); in main()
110 "nvlist/binary/abcdefghijklmnopqrstuvwxyz")); in main()
115 nvlist_move_binary(nvl, "nvlist/binary/abcdefghijklmnopqrstuvwxyz", in main()
119 "nvlist/binary/abcdefghijklmnopqrstuvwxy in main()
[all...]
H A Dnvlist_get_test.c7 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
119 CHECK(!nvlist_exists_binary(nvl, "nvlist/binary/x")); in main()
120 nvlist_add_binary(nvl, "nvlist/binary/x", "x", 1); in main()
122 CHECK(memcmp(nvlist_get_binary(nvl, "nvlist/binary/x", NULL), "x", 1) == 0); in main()
123 CHECK(memcmp(nvlist_get_binary(nvl, "nvlist/binary/x", &size), "x", 1) == 0); in main()
126 CHECK(!nvlist_exists_binary(nvl, "nvlist/binary/abcdefghijklmnopqrstuvwxyz")); in main()
127 nvlist_add_binary(nvl, "nvlist/binary/abcdefghijklmnopqrstuvwxyz", "abcdefghijklmnopqrstuvwxyz", sizeof("abcdefghijklmnopqrstuvwxyz")); in main()
129 CHECK(memcmp(nvlist_get_binary(nvl, "nvlist/binary/abcdefghijklmnopqrstuvwxyz", NULL), "abcdefghijklmnopqrstuvwxyz", sizeof("abcdefghijklmnopqrstuvwxyz")) == 0); in main()
130 CHECK(memcmp(nvlist_get_binary(nvl, "nvlist/binary/abcdefghijklmnopqrstuvwxy in main()
[all...]
/freebsd-src/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.
[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-src/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-src/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
[all...]
/freebsd-src/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-src/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-src/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-src/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DOffloadYAML.h1 //===- OffloadYAML.h - Offload Binary YAMLIO implementation -----*- C++ -*-===//
26 struct Binary { struct
50 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::OffloadYAML::Binary::Member) argument
51 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::OffloadYAML::Binary::StringEntry) in LLVM_YAML_IS_SEQUENCE_VECTOR()
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::Member &M); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd-src/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-src/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-src/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-src/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-src/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 encoding of the microMIPS branch
[all …]
/freebsd-src/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-src/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-src/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-src/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 file
[all...]

12345678910>>...639