Home
last modified time | relevance | path

Searched refs:SectionSize (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DXCOFFObjectFile.cpp261 return toSection64(Sec)->SectionSize; in getSectionSize()
263 return toSection32(Sec)->SectionSize; in getSectionSize()
278 uint64_t SectionSize = getSectionSize(Sec); in getSectionContents() local
279 if (checkOffset(Data, uintptr_t(ContentStart), SectionSize)) in getSectionContents()
282 return makeArrayRef(ContentStart,SectionSize); in getSectionContents()
DCOFFObjectFile.cpp1109 uint32_t SectionSize = getSectionSize(Sec); in getSectionContents() local
1110 if (checkOffset(Data, ConStart, SectionSize)) in getSectionContents()
1112 Res = makeArrayRef(reinterpret_cast<const uint8_t *>(ConStart), SectionSize); in getSectionContents()
DMachOObjectFile.cpp101 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) : in getSectionPtr() local
104 uintptr_t SectionAddr = CommandAddr + SegmentLoadSize + Sec * SectionSize; in getSectionPtr()
288 const unsigned SectionSize = sizeof(Section); in parseSegmentLoadCommand() local
290 if (S.nsects > std::numeric_limits<uint32_t>::max() / SectionSize || in parseSegmentLoadCommand()
291 S.nsects * SectionSize > Load.C.cmdsize - SegmentLoadSize) in parseSegmentLoadCommand()
DWindowsResource.cpp656 FileSize += 2 * COFF::SectionSize; in performFileLayout()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp556 uint64_t SectionSize = DataSize + PaddingSize + StubBufSize; in computeTotalAllocSize() local
564 SectionSize += 4; in computeTotalAllocSize()
566 if (!SectionSize) in computeTotalAllocSize()
567 SectionSize = 1; in computeTotalAllocSize()
571 CodeSectionSizes.push_back(SectionSize); in computeTotalAllocSize()
574 ROSectionSizes.push_back(SectionSize); in computeTotalAllocSize()
577 RWSectionSizes.push_back(SectionSize); in computeTotalAllocSize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DXCOFFObjectFile.h73 support::ubig32_t SectionSize;
86 support::ubig64_t SectionSize;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DEHFrameSupport.cpp699 size_t SectionSize, in walkAppleEHFrameSection() argument
702 const char *End = SectionStart + SectionSize; in walkAppleEHFrameSection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMachObjectWriter.cpp219 uint64_t SectionSize = Layout.getSectionAddressSize(&Sec); in writeSection() local
238 W.write<uint64_t>(SectionSize); // size in writeSection()
241 W.write<uint32_t>(SectionSize); // size in writeSection()
DMCDwarf.cpp1121 const MCExpr *SectionSize = MakeStartMinusEndExpr(*MCOS, in EmitGenDwarfRanges() local
1124 emitAbsValue(*MCOS, SectionSize, AddrSize); in EmitGenDwarfRanges()
DWinCOFFObjectWriter.cpp897 Offset += COFF::SectionSize * Header.NumberOfSections; in assignFileOffsets()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DCOFF.h56 SectionSize = 40, enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DCOFF.h61 SectionSize = 40, enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp140 uint64_t SectionSize = StringOffsetsSection.Data.size(); in dumpDWARFv5StringOffsetsSection() local
195 if (Offset < SectionSize) { in dumpDWARFv5StringOffsetsSection()
197 OS << (SectionSize - Offset) << "\n"; in dumpDWARFv5StringOffsetsSection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCOFFEmitter.cpp214 CP.SectionTableSize = COFF::SectionSize * CP.Obj.Sections.size(); in layoutCOFF()