| /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/ |
| Minidump.cpp | 13 constexpr uint32_t Header::MagicSignature; 14 constexpr uint16_t Header::MagicVersion;
|
| /src/sys/external/bsd/acpica/dist/tables/ |
| tbprint.c | 64 ACPI_TABLE_HEADER *Header); 104 * PARAMETERS: OutHeader - Where the cleaned header is returned 105 * Header - Input ACPI table header 107 * RETURN: Returns the cleaned header in OutHeader 109 * DESCRIPTION: Copy the table header and ensure that all "string" fields in 110 * the header consist of printable characters. 117 ACPI_TABLE_HEADER *Header) 120 memcpy (OutHeader, Header, sizeof (ACPI_TABLE_HEADER)); 134 * Header - Table heade [all...] |
| tbfind.c | 65 * be used to get the table header or entire table. 77 ACPI_TABLE_HEADER Header; 101 memset (&Header, 0, sizeof (ACPI_TABLE_HEADER)); 102 ACPI_COPY_NAMESEG (Header.Signature, Signature); 103 memcpy (Header.OemId, OemId, ACPI_OEM_ID_SIZE); 104 memcpy (Header.OemTableId, OemTableId, ACPI_OEM_TABLE_ID_SIZE); 112 Header.Signature, ACPI_NAMESEG_SIZE)) 140 Header.Signature, ACPI_NAMESEG_SIZE) && 143 Header.OemId, ACPI_OEM_ID_SIZE)) && 146 Header.OemTableId, ACPI_OEM_TABLE_ID_SIZE)) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/ |
| Header.h | 1 //===- Header.h -------------------------------------------------*- C++ -*-===// 29 /// The GSYM header. 31 /// The GSYM header is found at the start of a stand alone GSYM file, or as 41 /// be mmap'ed in and a pointer to the header can be cast to the first bytes 43 /// When endianness is swapped, the Header::decode() function should be used to 44 /// decode the header. 45 struct Header { 50 /// The version can number determines how the header is decoded and how each 88 /// Check if a header is valid and return an error if anything is wrong. 90 /// This function can be used prior to encoding a header to ensure it i [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
| COFFEmitter.cpp | 50 return Obj.Header.Machine == COFF::IMAGE_FILE_MACHINE_AMD64 || 51 Obj.Header.Machine == COFF::IMAGE_FILE_MACHINE_ARM64; 55 return Obj.OptionalHeader->Header.FileAlignment; 77 std::copy(Name.begin(), Name.end(), Sec.Header.Name); 86 Sec.Header.Name[0] = '/'; 87 std::copy(str.begin(), str.end(), Sec.Header.Name + 1); 99 Sec.Header.Characteristics |= (Log2_32(Sec.Alignment) + 1) << 20; 115 std::copy(Name.begin(), Name.end(), Sym.Header.Name); 119 *reinterpret_cast<support::aligned_ulittle32_t *>(Sym.Header.Name + 4) = 123 Sym.Header.Type = Sym.SimpleType [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| PublicsStream.cpp | 45 uint32_t PublicsStream::getSymHash() const { return Header->SymHash; } 47 return Header->ISectThunkTable; 50 return Header->OffThunkTable; 65 "Publics Stream does not contain a header."); 68 if (Reader.readObject(Header)) 70 "Publics Stream does not contain a header."); 77 uint32_t NumAddressMapEntries = Header->AddrMap / sizeof(uint32_t); 84 if (auto EC = Reader.readArray(ThunkMap, Header->NumThunks)) 91 if (auto EC = Reader.readArray(SectionOffsets, Header->NumSections))
|
| TpiStream.cpp | 46 "TPI Stream does not contain a header."); 48 if (Reader.readObject(Header)) 50 "TPI Stream does not contain a header."); 52 if (Header->Version != PdbTpiV80) 56 if (Header->HeaderSize != sizeof(TpiStreamHeader)) 58 "Corrupt TPI Header size."); 60 if (Header->HashKeySize != sizeof(ulittle32_t)) 64 if (Header->NumHashBuckets < MinTpiHashBuckets || 65 Header->NumHashBuckets > MaxTpiHashBuckets) 71 Reader.readSubstream(TypeRecordsSubstream, Header->TypeRecordBytes) [all...] |
| DbiStream.cpp | 48 : Stream(std::move(Stream)), Header(nullptr) {} 57 "DBI Stream does not contain a header."); 58 if (auto EC = Reader.readObject(Header)) 60 "DBI Stream does not contain a header."); 62 if (Header->VersionSignature != -1) 69 if (Header->VersionHeader < PdbDbiV70) 74 sizeof(DbiStreamHeader) + Header->ModiSubstreamSize + 75 Header->SecContrSubstreamSize + Header->SectionMapSize + 76 Header->FileInfoSize + Header->TypeServerSize [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| DebugChecksumsSubsection.cpp | 38 const FileChecksumEntryHeader *Header; 39 if (auto EC = Reader.readObject(Header)) 42 Item.FileNameOffset = Header->FileNameOffset; 43 Item.Kind = static_cast<FileChecksumKind>(Header->ChecksumKind); 44 if (auto EC = Reader.readBytes(Item.Checksum, Header->ChecksumSize)) 47 Len = alignTo(Header->ChecksumSize + sizeof(FileChecksumEntryHeader), 4); 96 FileChecksumEntryHeader Header; 97 Header.ChecksumKind = uint8_t(FC.Kind); 98 Header.ChecksumSize = FC.Checksum.size(); 99 Header.FileNameOffset = FC.FileNameOffset [all...] |
| DebugSubsectionRecord.cpp | 31 const DebugSubsectionHeader *Header; 33 if (auto EC = Reader.readObject(Header)) 37 static_cast<DebugSubsectionKind>(uint32_t(Header->Kind)); 38 if (auto EC = Reader.readStreamRef(Info.Data, Header->Length)) 73 DebugSubsectionHeader Header; 74 Header.Kind = uint32_t(Subsection ? Subsection->kind() : Contents.kind()); 75 // The value written into the Header's Length field is only padded to the 79 Header.Length = alignTo(DataSize, alignOf(Container)); 81 if (auto EC = Writer.writeObject(Header))
|
| DebugLinesSubsection.cpp | 29 bool HasColumn = Header->Flags & uint16_t(LF_HaveColumns); 57 if (auto EC = Reader.readObject(Header)) 60 LinesAndColumns.getExtractor().Header = Header; 68 return !!(Header->Flags & LF_HaveColumns); 104 LineFragmentHeader Header; 105 Header.CodeSize = CodeSize; 106 Header.Flags = hasColumnInfo() ? LF_HaveColumns : 0; 107 Header.RelocOffset = RelocOffset; 108 Header.RelocSegment = RelocSegment [all...] |
| /src/sys/external/bsd/acpica/dist/include/ |
| actbl3.h | 59 * Values for description table header signatures for tables defined in this 80 #define ACPI_SIG_XXXX "XXXX" /* Intermediate AML header for ASL/ASL+ converter */ 110 /* Basic SLIC table is only the common ACPI header */ 114 ACPI_TABLE_HEADER Header; /* Common ACPI table header */ 128 ACPI_TABLE_HEADER Header; /* Common ACPI table header */ 147 ACPI_TABLE_HEADER Header; /* Common ACPI table header */ 195 ACPI_TABLE_HEADER Header; /* Common ACPI table header * [all...] |
| actbl2.h | 59 * Values for description table header signatures for tables defined in this 132 ACPI_TABLE_HEADER Header; 136 /* Common Subtable header - one per Node Structure (Subtable) */ 412 ACPI_TABLE_HEADER Header; /* Common ACPI table header */ 436 ACPI_TABLE_HEADER Header; /* Common ACPI table header */ 516 ACPI_TABLE_HEADER Header; 531 ACPI_TABLE_HEADER Header; /* Common ACPI table header */ [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
| DWARFUnitIndex.cpp | 91 bool DWARFUnitIndex::Header::parse(DataExtractor IndexData, 114 void DWARFUnitIndex::Header::dump(raw_ostream &OS) const { 122 Header.NumBuckets = 0; 132 if (!Header.parse(IndexData, &Offset)) 136 if (Header.Version == 5) 140 Offset, Header.NumBuckets * (8 + 4) + 141 (2 * Header.NumUnits + 1) * 4 * Header.NumColumns)) 144 Rows = std::make_unique<Entry[]>(Header.NumBuckets); 146 std::make_unique<Entry::SectionContribution *[]>(Header.NumUnits) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFListTable.h | 54 /// A class representing the header of a list table such as the range list 57 struct Header { 70 /// The number of offsets that follow the header before the range lists. 74 Header HeaderData; 77 /// The offset at which the header (and hence the table) is located within 102 /// Return the size of the table header including the length but not including 133 /// Extract the table header and the array of offsets. 143 /// standard for location lists and range lists. The table consists of a header 148 DWARFListTableHeader Header; 159 : Header(SectionName, ListTypeString), HeaderString(HeaderString) { [all...] |
| DWARFUnitIndex.h | 81 struct Header { 117 struct Header Header; 137 explicit operator bool() const { return Header.NumBuckets; } 142 uint32_t getVersion() const { return Header.Version; } 148 return makeArrayRef(ColumnKinds.get(), Header.NumColumns); 152 return makeArrayRef(Rows.get(), Header.NumBuckets);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/ |
| test_helpers.cc | 75 auto *Header = reinterpret_cast<XRayFileHeader *>(&HeaderStorage); 76 new (Header) XRayFileHeader(); 77 Header->Version = Version; 78 Header->Type = FileTypes::FDR_LOG; 79 Header->CycleFrequency = 3e9; 80 Header->ConstantTSC = 1; 81 Header->NonstopTSC = 1;
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| MatrixUtils.cpp | 28 BasicBlock *Header = BasicBlock::Create( 29 Preheader->getContext(), Name + ".header", Preheader->getParent(), Exit); 30 BasicBlock *Body = BasicBlock::Create(Header->getContext(), Name + ".body", 31 Header->getParent(), Exit); 32 BasicBlock *Latch = BasicBlock::Create(Header->getContext(), Name + ".latch", 33 Header->getParent(), Exit); 36 BranchInst::Create(Body, Header); 39 PHINode::Create(I32Ty, 2, Name + ".iv", Header->getTerminator()); 45 BranchInst::Create(Header, Exit, Cond, Latch); 50 PreheaderBr->setSuccessor(0, Header); [all...] |
| /src/sys/external/bsd/acpica/dist/tools/acpibin/ |
| abcompare.c | 58 ACPI_TABLE_HEADER *Header); 72 ACPI_TABLE_HEADER *Header); 76 ACPI_TABLE_HEADER *Header, 84 * DESCRIPTION: Check for valid ACPI table header 90 ACPI_TABLE_HEADER *Header) 93 if (!AcpiUtValidNameseg (Header->Signature)) 95 printf ("Header signature is invalid\n"); 146 * PARAMETERS: Header - An ACPI table header 150 * DESCRIPTION: Format and display header contents [all...] |
| /src/sys/external/bsd/gnu-efi/dist/inc/ |
| efidevp.h | 84 EFI_DEVICE_PATH_PROTOCOL Header; 91 EFI_DEVICE_PATH_PROTOCOL Header; 97 EFI_DEVICE_PATH_PROTOCOL Header; 105 EFI_DEVICE_PATH_PROTOCOL Header; 119 EFI_DEVICE_PATH_PROTOCOL Header; 131 EFI_DEVICE_PATH_PROTOCOL Header; 138 EFI_DEVICE_PATH_PROTOCOL Header; 147 EFI_DEVICE_PATH_PROTOCOL Header ; 173 EFI_DEVICE_PATH_PROTOCOL Header; 181 EFI_DEVICE_PATH_PROTOCOL Header; [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/ |
| Writer.cpp | 25 SectionHeader Header; 26 raw_svector_ostream OS(Header); 42 return Header; 61 // Write the header. 62 Out.write(Obj.Header.Magic.data(), Obj.Header.Magic.size()); 64 support::endian::write32le(&Version, Obj.Header.Version);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/ |
| FDRRecordProducer.h | 28 const XRayFileHeader &Header; 40 : Header(FH), E(DE), OffsetPtr(OP) {}
|
| YAMLXRayRecord.h | 45 YAMLXRayFileHeader Header; 67 static void mapping(IO &IO, xray::YAMLXRayFileHeader &Header) { 68 IO.mapRequired("version", Header.Version); 69 IO.mapRequired("type", Header.Type); 70 IO.mapRequired("constant-tsc", Header.ConstantTSC); 71 IO.mapRequired("nonstop-tsc", Header.NonstopTSC); 72 IO.mapRequired("cycle-frequency", Header.CycleFrequency); 95 // A trace file contains two parts, the header and the list of all the 97 IO.mapRequired("header", Trace.Header); [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
| coff2yaml.cpp | 54 YAMLObj.OptionalHeader->Header.AddressOfEntryPoint = 56 YAMLObj.OptionalHeader->Header.ImageBase = OptionalHeader->ImageBase; 57 YAMLObj.OptionalHeader->Header.SectionAlignment = 59 YAMLObj.OptionalHeader->Header.FileAlignment = OptionalHeader->FileAlignment; 60 YAMLObj.OptionalHeader->Header.MajorOperatingSystemVersion = 62 YAMLObj.OptionalHeader->Header.MinorOperatingSystemVersion = 64 YAMLObj.OptionalHeader->Header.MajorImageVersion = 66 YAMLObj.OptionalHeader->Header.MinorImageVersion = 68 YAMLObj.OptionalHeader->Header.MajorSubsystemVersion = 70 YAMLObj.OptionalHeader->Header.MinorSubsystemVersion [all...] |
| /src/sys/external/bsd/acpica/dist/tools/acpiexec/ |
| aetables.c | 54 ACPI_TABLE_HEADER *Header, 133 * PARAMETERS: Header - A valid standard ACPI table header 137 * RETURN: None. Header is modified. 139 * DESCRIPTION: Initialize the table header for a local ACPI table. 145 ACPI_TABLE_HEADER *Header, 150 ACPI_COPY_NAMESEG (Header->Signature, Signature); 151 Header->Length = Length; 153 Header->OemRevision = 0x1001; 154 memcpy (Header->OemId, "Intel ", ACPI_OEM_ID_SIZE) [all...] |