Home
last modified time | relevance | path

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

123

/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/crypto/openssl/test/recipes/30-test_evp_data/
H A Devppkey_ecx.txt43 #Raw versions of the same keys as above
45 PrivateKeyRaw=Alice-25519-Raw:X25519:77076d0a7318a57d3c16c17251b26645df4c2f87ebc0992ab177fba51db92c…
47 PublicKeyRaw=Alice-25519-PUBLIC-Raw:X25519:8520f0098930a754748b7ddcb43ef75a0dbf3a0d26381af4eba4a98e…
49 PrivPubKeyPair = Alice-25519-Raw:Alice-25519-PUBLIC-Raw
51 PrivateKeyRaw=Bob-25519-Raw:X25519:5dab087e624a8a4b79e17f8b83800ee66f3bb1292618b6fd1c2f8b27ff88e0eb
53 PublicKeyRaw=Bob-25519-PUBLIC-Raw:X25519:de9edb7d7b7dc1b4d35b61c2ece435373f8343c85b78674dadfc7e146f…
57 PrivPubKeyPair = Bob-25519-Raw:Bob-25519-PUBLIC-Raw
67 Derive=Alice-25519-Raw
68 PeerKey=Bob-25519-PUBLIC-Raw
71 Derive=Bob-25519-Raw
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DSourceLocationEncoding.h51 static UIntTy encodeRaw(UIntTy Raw) { in encodeRaw() argument
52 return (Raw << 1) | (Raw >> (UIntBits - 1)); in encodeRaw()
54 static UIntTy decodeRaw(UIntTy Raw) { in decodeRaw() argument
55 return (Raw >> 1) | (Raw << (UIntBits - 1)); in decodeRaw()
115 EncodedTy encodeRaw(UIntTy Raw) { in encodeRaw() argument
116 if (Raw == 0) in encodeRaw()
118 UIntTy Rotated = SourceLocationEncoding::encodeRaw(Raw); in encodeRaw()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h59 StringRef Raw; member
124 return Raw; in getString()
129 return MemoryBufferRef(Raw, ""); in getBinary()
178 return Lhs.Raw < Rhs.Raw;
367 N.Raw = V;
380 auto Raw = V.getBuffer();
382 Raw = addString(Raw);
384 N.Raw = Raw;
H A DMsgPackReader.h72 /// Raw bytes of the extension object.
93 StringRef Raw;
88 StringRef Raw; global() member
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryLocation.h88 constexpr LocationSize(uint64_t Raw, DirectConstruction) : Value(Raw) {} in LocationSize() argument
89 constexpr LocationSize(uint64_t Raw, bool Scalable) in LocationSize() argument
90 : Value(Raw > MaxValue ? AfterPointer in LocationSize()
91 : Raw | (Scalable ? ScalableBit : uint64_t(0))) {} in LocationSize()
106 constexpr LocationSize(uint64_t Raw) in LocationSize() argument
107 : Value(Raw > MaxValue ? AfterPointer : Raw) {} in LocationSize()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp197 RawContentStream &Raw = cast<RawContentStream>(S); in layout() local
198 File.allocateCallback(Raw.Size, [&Raw](raw_ostream &OS) { in layout()
199 Raw.Content.writeAsBinary(OS); in layout()
200 assert(Raw.Content.binary_size() <= Raw.Size); in layout()
201 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.py156 / sp.UDP(dport=1222) / sp.Raw("bar")
178 / sp.UDP(dport=1222) / sp.Raw("bar")
205 / sp.UDP(sport=3333, dport=4444) / sp.Raw("foo")
263 / sp.UDP(sport=1111, dport=2222) / sp.Raw("foo")
284 / sp.ICMPv6EchoRequest() / sp.Raw("foo")
/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()
492 SourceLocation::UIntTy Raw = Loc.getRawEncoding(); in SaveSourceLocation() local
493 Append(reinterpret_cast<char *>(&Raw), in SaveSourceLocation()
494 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.h39 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/contrib/llvm-project/llvm/include/llvm/Object/
H A DObjectFile.h660 object::DataRefImpl Raw = Sec.getRawDataRefImpl();
661 return hash_combine(Raw.p, Raw.d.a, Raw.d.b);
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp1964 StringRef Raw = getRawTag(); in getVerbatimTag()
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 in getVerbatimTag()
1947 StringRef Raw = getRawTag(); getVerbatimTag() local
[all...]
/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/stand/efi/include/
H A Defiuga.h86 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.py156 raw = sp.Raw(load=build_payload(send_length))
167 raw = sp.Raw(load=build_payload(send_length))
259 raw = packet.getlayer(sp.Raw)
386 raw = packet.getlayer(sp.Raw)
/freebsd/sys/contrib/device-tree/Bindings/media/
H A Dti-am437x-vpfe.txt14 0 - Raw Bayer Interface.
/freebsd/contrib/libfido2/
H A DREADME.adoc36 * Perl: https://github.com/jacquesg/p5-FIDO-Raw[p5-FIDO-Raw]
/freebsd/sys/contrib/device-tree/src/arm/intel/socfpga/
H A Dsocfpga_arria5_socdk.dts135 label = "Flash 0 Raw Data";
H A Dsocfpga_cyclone5_socdk.dts140 label = "Flash 0 Raw Data";

123