Home
last modified time | relevance | path

Searched refs:Raw (Results 1 – 25 of 63) sorted by relevance

123

/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devppkey_ecx.txt44 #Raw versions of the same keys as above
46 PrivateKeyRaw=Alice-25519-Raw:X25519:77076d0a7318a57d3c16c17251b26645df4c2f87ebc0992ab177fba51db92c…
48 PublicKeyRaw=Alice-25519-PUBLIC-Raw:X25519:8520f0098930a754748b7ddcb43ef75a0dbf3a0d26381af4eba4a98e…
50 PrivPubKeyPair = Alice-25519-Raw:Alice-25519-PUBLIC-Raw
52 PrivateKeyRaw=Bob-25519-Raw:X25519:5dab087e624a8a4b79e17f8b83800ee66f3bb1292618b6fd1c2f8b27ff88e0eb
54 PublicKeyRaw=Bob-25519-PUBLIC-Raw:X25519:de9edb7d7b7dc1b4d35b61c2ece435373f8343c85b78674dadfc7e146f…
58 PrivPubKeyPair = Bob-25519-Raw:Bob-25519-PUBLIC-Raw
79 Derive=Alice-25519-Raw
80 PeerKey=Bob-25519-PUBLIC-Raw
84 Derive=Bob-25519-Raw
[all …]
H A Devppkey_ecx_sigalg.txt68 #Raw versions of the ED25519-1 keys
69 PrivateKeyRaw=ED25519-1-Raw:ED25519:9d61b19deffd5a60ba844af492ec2cc44449c5697b326919703bac031cae7f60
71 PublicKeyRaw=ED25519-1-PUBLIC-Raw:ED25519:d75a980182b10ab7d54bfed3c964073a0ee172f3daa62325af021a68f…
75 PrivPubKeyPair = ED25519-1-Raw:ED25519-1-PUBLIC-Raw
133 # Raw tests
136 Sign-Message = ED25519:ED25519-1-Raw
141 Verify-Message = ED25519:ED25519-1-PUBLIC-Raw
148 Verify-Message = ED25519:ED25519-1-PUBLIC-Raw
251 #Raw versions of the ED448-1 keys
252 PrivateKeyRaw=ED448-1-Raw:ED448:6c82a562cb808d10d632be89c8513ebf6c929f34ddfa8c9f63c9960ef6e348a3528…
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DLazyAtomicPointer.h43 uintptr_t Raw = Value ? reinterpret_cast<uintptr_t>(Value) : getNull(); in makeRaw() local
44 assert(Raw != getBusy()); in makeRaw()
45 return Raw; in makeRaw()
111 uintptr_t Raw = Storage.load(); in loadOrGenerate() local
112 if (Raw != getNull() && Raw != getBusy()) in loadOrGenerate()
113 return *makePointer(Raw); in loadOrGenerate()
116 if (LLVM_LIKELY(Raw == getNull() && in loadOrGenerate()
117 Storage.compare_exchange_strong(Raw, getBusy()))) { in loadOrGenerate()
118 Raw = makeRaw(Generator()); in loadOrGenerate()
119 assert(Raw != getNull() && "Expected non-null from generator"); in loadOrGenerate()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DSourceLocationEncoding.h48 static UIntTy encodeRaw(UIntTy Raw) { in encodeRaw() argument
49 return (Raw << 1) | (Raw >> (UIntBits - 1)); in encodeRaw()
51 static UIntTy decodeRaw(UIntTy Raw) { in decodeRaw() argument
52 return (Raw >> 1) | (Raw << (UIntBits - 1)); in decodeRaw()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h60 StringRef Raw; member
125 return Raw; in getString()
130 return MemoryBufferRef(Raw, ""); in getBinary()
179 return Lhs.Raw < Rhs.Raw;
368 N.Raw = V;
381 auto Raw = V.getBuffer();
383 Raw = addString(Raw);
385 N.Raw = Raw;
H A DMsgPackReader.h94 StringRef Raw; member
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp224 RawContentStream &Raw = cast<RawContentStream>(S); in layout() local
225 File.allocateCallback(Raw.Size, [&Raw](raw_ostream &OS) { in layout()
226 Raw.Content.writeAsBinary(OS); in layout()
227 assert(Raw.Content.binary_size() <= Raw.Size); in layout()
228 OS << std::string(Raw.Size - Raw.Content.binary_size(), '\0'); in layout()
/freebsd/tests/sys/netpfil/pf/
H A DCVE-2019-5597.py52 / sp.Raw('XXXX' * 199) \
56 pkt0 = sp.Ether() / ipv6_main / frag_0 / sp.Raw('A' * padding)
57 pkt1 = sp.Ether() / ipv6_main / pkt1_opts / sp.Raw('B' * padding)
H A Dnat64.py148 / sp.UDP(dport=1222) / sp.Raw("bar")
170 / sp.UDP(dport=1222) / sp.Raw("bar")
197 / sp.UDP(sport=3333, dport=4444) / sp.Raw("foo")
255 / sp.UDP(sport=1111, dport=2222) / sp.Raw("foo")
276 / sp.ICMPv6EchoRequest() / sp.Raw("foo")
291 / sp.ICMPv6EchoRequest() / sp.Raw("foo")
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryLocation.h82 constexpr LocationSize(uint64_t Raw) : Value(Raw) {} in LocationSize() argument
83 constexpr LocationSize(uint64_t Raw, bool Scalable) in LocationSize() argument
84 : Value(Raw > MaxValue ? AfterPointer in LocationSize()
85 : Raw | (Scalable ? ScalableBit : uint64_t(0))) {} in LocationSize()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DNestedNameSpecifier.cpp397 SourceLocation::UIntTy Raw; in LoadSourceLocation() local
398 memcpy(&Raw, static_cast<char *>(Data) + Offset, sizeof(Raw)); in LoadSourceLocation()
399 return SourceLocation::getFromRawEncoding(Raw); in LoadSourceLocation()
478 SourceLocation::UIntTy Raw = Loc.getRawEncoding(); in SaveSourceLocation() local
479 Append(reinterpret_cast<char *>(&Raw), in SaveSourceLocation()
480 reinterpret_cast<char *>(&Raw) + sizeof(Raw), Buffer, BufferSize, in SaveSourceLocation()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DPCHContainerOperations.cpp59 static StringRef Raw("raw"); in getFormats() local
60 return ArrayRef(Raw); in getFormats()
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DArchitectureSet.h40 constexpr ArchitectureSet(ArchSetType Raw) : ArchSet(Raw) {} in ArchitectureSet() argument
/freebsd/contrib/file/tests/
H A Dhddrawcopytool.result1 HDD Raw Copy Tool 1.10 - HD model: ST500DM0 02-1BD142 serial: 51D20233A7C0
/freebsd/crypto/openssl/doc/man3/
H A DSSL_get0_peer_rpk.pod39 Raw public keys are used in place of certificates when the option is
48 Raw public keys have no subject, issuer, validity dates nor digital signature
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DObjectFile.h661 object::DataRefImpl Raw = Sec.getRawDataRefImpl();
662 return hash_combine(Raw.p, Raw.d.a, Raw.d.b);
/freebsd/contrib/file/magic/Magdir/
H A Dsniffer35 >6 leshort 7 (Raw IP)
36 >6 leshort 8 (Raw IP)
37 >6 leshort 9 (Raw IP)
102 >20 belong&0x03FFFFFF 12 (Raw IP
110 >20 belong&0x03FFFFFF 101 (Raw IP
213 >20 belong&0x03FFFFFF 228 (Raw IPv4
214 >20 belong&0x03FFFFFF 229 (Raw IPv6
H A Dgeo60 # GS%2B-6063-BB-GS%2B-Broadcast-Raw-Data-File-Format-Command-Specification.pdf
73 # filename; original file name like: "C:\GS+\Projects\Default\Raw Data Files\060116342.rdf"
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp1964 StringRef Raw = getRawTag(); in getVerbatimTag() local
1965 if (!Raw.empty() && Raw != "!") { in getVerbatimTag()
1967 if (Raw.find_last_of('!') == 0) { in getVerbatimTag()
1969 Ret += Raw.substr(1); in getVerbatimTag()
1971 } else if (Raw.starts_with("!!")) { in getVerbatimTag()
1973 Ret += Raw.substr(2); in getVerbatimTag()
1976 StringRef TagHandle = Raw.substr(0, Raw.find_last_of('!') + 1); in getVerbatimTag()
1987 Ret += Raw.substr(Raw.find_last_of('!') + 1); in getVerbatimTag()
/freebsd/sys/contrib/edk2/Include/Protocol/
H A DUgaDraw.h77 UINT32 Raw; member
H A DGraphicsOutput.h140 UINT32 Raw; member
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackDocument.cpp178 Node = getNode(Obj.Raw); in readFromBlob()
181 Node = getNode(MemoryBufferRef(Obj.Raw, "")); in readFromBlob()
190 return false; // Raw and Extension not supported in readFromBlob()
/freebsd/sys/contrib/device-tree/Bindings/mtd/
H A Dmxic-nand.txt1 Macronix Raw NAND Controller Device Tree Bindings
/freebsd/tests/sys/netpfil/common/
H A Dpft_ping.py159 raw = sp.Raw(load=build_payload(send_length))
170 raw = sp.Raw(load=build_payload(send_length))
266 raw = packet.getlayer(sp.Raw)
393 raw = packet.getlayer(sp.Raw)
/freebsd/sys/contrib/device-tree/Bindings/media/
H A Dti-am437x-vpfe.txt14 0 - Raw Bayer Interface.

123