| /freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| D | MinidumpEmitter.cpp | 196 RawContentStream &Raw = cast<RawContentStream>(S); in layout() local 197 File.allocateCallback(Raw.Size, [&Raw](raw_ostream &OS) { in layout() 198 Raw.Content.writeAsBinary(OS); in layout() 199 assert(Raw.Content.binary_size() <= Raw.Size); in layout() 200 OS << std::string(Raw.Size - Raw.Content.binary_size(), '\0'); in layout()
|
| /freebsd-12-stable/tests/sys/netpfil/pf/ |
| D | CVE-2019-5597.py | 52 / 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-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| D | MemoryLocation.h | 83 constexpr LocationSize(uint64_t Raw, DirectConstruction): Value(Raw) {} in LocationSize() argument 97 constexpr LocationSize(uint64_t Raw) in LocationSize() argument 98 : Value(Raw > MaxValue ? AfterPointer : Raw) {} in LocationSize()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/AST/ |
| D | NestedNameSpecifier.cpp | 396 SourceLocation::UIntTy Raw; in LoadSourceLocation() local 397 memcpy(&Raw, static_cast<char *>(Data) + Offset, sizeof(Raw)); in LoadSourceLocation() 398 return SourceLocation::getFromRawEncoding(Raw); in LoadSourceLocation() 491 SourceLocation::UIntTy Raw = Loc.getRawEncoding(); in SaveSourceLocation() local 492 Append(reinterpret_cast<char *>(&Raw), in SaveSourceLocation() 493 reinterpret_cast<char *>(&Raw) + sizeof(Raw), Buffer, BufferSize, in SaveSourceLocation()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| D | MsgPackDocument.h | 59 StringRef Raw; member 124 return Raw; in getString() 173 return Lhs.Raw < Rhs.Raw; 361 N.Raw = V;
|
| D | MsgPackReader.h | 89 StringRef Raw; member
|
| /freebsd-12-stable/tests/sys/netpfil/common/ |
| D | pft_ping.py | 51 raw = packet.getlayer(sp.Raw) 84 raw = packet.getlayer(sp.Raw) 141 raw = packet.getlayer(sp.Raw)
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
| D | ArchitectureSet.h | 39 constexpr ArchitectureSet(ArchSetType Raw) : ArchSet(Raw) {} in ArchitectureSet() argument
|
| /freebsd-12-stable/contrib/file/tests/ |
| D | hddrawcopytool.result | 1 HDD Raw Copy Tool 1.10 - HD model: ST500DM0 02-1BD142 serial: 51D20233A7C0
|
| /freebsd-12-stable/contrib/file/magic/Magdir/ |
| D | sniffer | 35 >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
|
| D | xilinx | 38 # Raw bitstream files
|
| D | c64 | 182 # Raw tape file format (.tap files) 184 0 string C64-TAPE-RAW C64 Raw Tape File (.tap),
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/ |
| D | ObjectFile.h | 588 object::DataRefImpl Raw = Sec.getRawDataRefImpl(); 589 return hash_combine(Raw.p, Raw.d.a, Raw.d.b);
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| D | YAMLParser.cpp | 1891 StringRef Raw = getRawTag(); in getVerbatimTag() local 1892 if (!Raw.empty() && Raw != "!") { in getVerbatimTag() 1894 if (Raw.find_last_of('!') == 0) { in getVerbatimTag() 1896 Ret += Raw.substr(1); in getVerbatimTag() 1898 } else if (Raw.startswith("!!")) { in getVerbatimTag() 1900 Ret += Raw.substr(2); in getVerbatimTag() 1903 StringRef TagHandle = Raw.substr(0, Raw.find_last_of('!') + 1); in getVerbatimTag() 1914 Ret += Raw.substr(Raw.find_last_of('!') + 1); in getVerbatimTag()
|
| /freebsd-12-stable/stand/efi/include/ |
| D | efiuga.h | 87 UINT32 Raw; member
|
| D | efipxebc.h | 82 UINT8 Raw[1472]; member
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Serialization/ |
| D | ASTReader.h | 2136 Sema::AlignPackInfo ReadAlignPackInfo(uint32_t Raw) const { in ReadAlignPackInfo() argument 2137 return Sema::AlignPackInfo::getFromRawEncoding(Raw); in ReadAlignPackInfo() 2143 ReadUntranslatedSourceLocation(SourceLocation::UIntTy Raw) const { in ReadUntranslatedSourceLocation() argument 2144 return SourceLocation::getFromRawEncoding((Raw >> 1) | in ReadUntranslatedSourceLocation() 2145 (Raw << (8 * sizeof(Raw) - 1))); in ReadUntranslatedSourceLocation() 2150 SourceLocation::UIntTy Raw) const { in ReadSourceLocation() argument 2151 SourceLocation Loc = ReadUntranslatedSourceLocation(Raw); in ReadSourceLocation()
|
| /freebsd-12-stable/sys/gnu/dts/arm/ |
| D | socfpga_arria5_socdk.dts | 137 label = "Flash 0 Raw Data";
|
| D | socfpga_cyclone5_socdk.dts | 142 label = "Flash 0 Raw Data";
|
| /freebsd-12-stable/crypto/openssl/doc/man3/ |
| D | RSA_private_encrypt.pod | 39 Raw RSA signature. This mode should I<only> be used to implement
|
| D | RSA_public_encrypt.pod | 45 Raw RSA encryption. This mode should I<only> be used to implement
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/BinaryFormat/ |
| D | MsgPackDocumentYAML.cpp | 41 OS << Raw; in toString()
|
| D | MsgPackDocument.cpp | 168 Node = getNode(Obj.Raw); in readFromBlob()
|
| D | MsgPackReader.cpp | 237 Obj.Raw = StringRef(Current, Size); in createRaw()
|
| /freebsd-12-stable/sys/contrib/edk2/Include/Protocol/ |
| D | DevicePath.h | 1320 UINT8 *Raw; member
|