Searched refs:Raw (Results 1 - 19 of 19) sorted by relevance

/freebsd-13-stable/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)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp196 RawContentStream &Raw = cast<RawContentStream>(S);
197 File.allocateCallback(Raw.Size, [&Raw](raw_ostream &OS) {
198 Raw.Content.writeAsBinary(OS);
199 assert(Raw.Content.binary_size() <= Raw.Size);
200 OS << std::string(Raw.Size - Raw.Content.binary_size(), '\0');
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryLocation.h82 constexpr LocationSize(uint64_t Raw, DirectConstruction): Value(Raw) {} argument
92 constexpr LocationSize(uint64_t Raw) argument
93 : Value(Raw > MaxValue ? Unknown : Raw) {}
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackReader.h68 /// Raw bytes of the extension object.
89 StringRef Raw; member in union:llvm::msgpack::Object::__anon3137
H A DMsgPackDocument.h59 StringRef Raw; member in union:llvm::msgpack::DocNode::__anon3136
124 return Raw;
173 return Lhs.Raw < Rhs.Raw;
361 N.Raw = V;
/freebsd-13-stable/stand/efi/include/
H A Defiuga.h87 UINT32 Raw; member in union:__anon8082
H A Defipxebc.h82 UINT8 Raw[1472]; member in union:__anon8023
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/
H A DArchitectureSet.h39 constexpr ArchitectureSet(ArchSetType Raw) : ArchSet(Raw) {} argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DNestedNameSpecifier.cpp395 unsigned Raw; local
396 memcpy(&Raw, static_cast<char *>(Data) + Offset, sizeof(unsigned));
397 return SourceLocation::getFromRawEncoding(Raw);
489 unsigned Raw = Loc.getRawEncoding(); local
490 Append(reinterpret_cast<char *>(&Raw),
491 reinterpret_cast<char *>(&Raw) + sizeof(unsigned),
/freebsd-13-stable/tests/sys/netpfil/common/
H A Dpft_ping.py51 raw = packet.getlayer(sp.Raw)
84 raw = packet.getlayer(sp.Raw)
144 raw = packet.getlayer(sp.Raw)
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DObjectFile.h583 object::DataRefImpl Raw = Sec.getRawDataRefImpl(); local
584 return hash_combine(Raw.p, Raw.d.a, Raw.d.b);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackDocument.cpp168 Node = getNode(Obj.Raw);
177 return false; // Raw and Extension not supported
H A DMsgPackDocumentYAML.cpp41 OS << Raw; local
H A DMsgPackReader.cpp184 "Invalid Raw with insufficient payload",
234 "Invalid Raw with insufficient payload",
236 Obj.Raw = StringRef(Current, Size);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h2125 SourceLocation ReadUntranslatedSourceLocation(uint32_t Raw) const {
2126 return SourceLocation::getFromRawEncoding((Raw >> 1) | (Raw << 31));
2130 SourceLocation ReadSourceLocation(ModuleFile &ModuleFile, uint32_t Raw) const {
2131 SourceLocation Loc = ReadUntranslatedSourceLocation(Raw);
/freebsd-13-stable/sys/contrib/edk2/Include/Protocol/
H A DDevicePath.h1368 UINT8 *Raw; member in union:__anon9528
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp945 StringRef Raw(String.data(), Third.getString().data() - String.data() +
947 std::string Collapsed = std::string(Raw);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp1909 ArrayRef<char> Raw = getSectionRawName(Sec); local
1910 return parseSegmentOrSectionName(Raw.data());
4136 ArrayRef<char> Raw = getSectionRawFinalSegmentName(Sec); local
4137 return parseSegmentOrSectionName(Raw.data());
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp5116 uint32_t Raw = Loc.getRawEncoding();
5117 Record.push_back((Raw << 1) | (Raw >> 31));

Completed in 220 milliseconds