Home
last modified time | relevance | path

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

12

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDLazyAtomicPointer.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-13-stable/contrib/llvm-project/clang/include/clang/Serialization/
HDSourceLocationEncoding.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()
HDASTReader.h2231 Sema::AlignPackInfo ReadAlignPackInfo(uint32_t Raw) const { in ReadAlignPackInfo() argument
2232 return Sema::AlignPackInfo::getFromRawEncoding(Raw); in ReadAlignPackInfo()
2240 ReadUntranslatedSourceLocation(RawLocEncoding Raw,
2242 return SourceLocationEncoding::decode(Raw, Seq);
2246 SourceLocation ReadSourceLocation(ModuleFile &MF, RawLocEncoding Raw,
2251 auto [Loc, ModuleFileIndex] = ReadUntranslatedSourceLocation(Raw, Seq);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
HDMsgPackDocument.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;
HDMsgPackReader.h93 StringRef Raw; member
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
HDMemoryLocation.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-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
HDMinidumpEmitter.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-13-stable/tests/sys/netpfil/pf/
HDCVE-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)
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
HDNestedNameSpecifier.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-13-stable/contrib/llvm-project/clang/lib/Serialization/
HDPCHContainerOperations.cpp59 static StringRef Raw("raw"); in getFormats() local
60 return ArrayRef(Raw); in getFormats()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/
HDArchitectureSet.h39 constexpr ArchitectureSet(ArchSetType Raw) : ArchSet(Raw) {} in ArchitectureSet() argument
/freebsd-13-stable/contrib/file/tests/
HDhddrawcopytool.result1 HDD Raw Copy Tool 1.10 - HD model: ST500DM0 02-1BD142 serial: 51D20233A7C0
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
HDObjectFile.h660 object::DataRefImpl Raw = Sec.getRawDataRefImpl();
661 return hash_combine(Raw.p, Raw.d.a, Raw.d.b);
/freebsd-13-stable/contrib/file/magic/Magdir/
HDsniffer35 >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
HDgeo60 # 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-13-stable/stand/efi/include/
HDefiuga.h86 UINT32 Raw; member
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
HDYAMLParser.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-13-stable/sys/contrib/device-tree/Bindings/mtd/
HDmxic-nand.txt1 Macronix Raw NAND Controller Device Tree Bindings
/freebsd-13-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
HDMsgPackDocument.cpp178 Node = getNode(Obj.Raw); in readFromBlob()
181 Node = getNode(MemoryBufferRef(Obj.Raw, "")); in readFromBlob()
HDMsgPackDocumentYAML.cpp40 OS << Raw; in toString()
/freebsd-13-stable/sys/contrib/device-tree/Bindings/media/
HDti-am437x-vpfe.txt14 0 - Raw Bayer Interface.
/freebsd-13-stable/contrib/libfido2/
HDREADME.adoc36 * Perl: https://github.com/jacquesg/p5-FIDO-Raw[p5-FIDO-Raw]
/freebsd-13-stable/sys/contrib/device-tree/src/arm/
HDsocfpga_arria5_socdk.dts137 label = "Flash 0 Raw Data";
HDsocfpga_cyclone5_socdk.dts142 label = "Flash 0 Raw Data";
/freebsd-13-stable/crypto/openssl/doc/man3/
HDRSA_private_encrypt.pod39 Raw RSA signature. This mode should I<only> be used to implement

12