Searched refs:SizeOfRawData (Results 1 - 22 of 22) sorted by relevance

/external/llvm/tools/yaml2obj/
H A Dyaml2coff.cpp187 S.Header.SizeOfRawData = S.SectionData.binary_size();
189 S.Header.SizeOfRawData =
190 alignTo(S.Header.SizeOfRawData, CP.getFileAlignment());
192 CurrentSectionDataOffset += S.Header.SizeOfRawData;
200 S.Header.SizeOfRawData = 0;
310 SizeOfCode += S.Header.SizeOfRawData;
312 SizeOfInitializedData += S.Header.SizeOfRawData;
314 SizeOfUninitializedData += S.Header.SizeOfRawData;
432 << binary_le(i->Header.SizeOfRawData)
453 if (!S.Header.SizeOfRawData)
[all...]
/external/syslinux/gpxe/src/util/
H A Delf2efi.c369 new->hdr.SizeOfRawData = section_filesz;
519 reloc->hdr.SizeOfRawData = section_filesz;
569 debug->hdr.SizeOfRawData = section_filesz;
613 if ( section->hdr.SizeOfRawData ) {
615 fpos += section->hdr.SizeOfRawData;
644 if ( section->hdr.SizeOfRawData &&
645 ( fwrite ( section->contents, section->hdr.SizeOfRawData,
/external/swiftshader/third_party/LLVM/lib/Object/
H A DCOFFObjectFile.cpp200 Result = Section->SizeOfRawData - symb->Value;
320 Result = sec->SizeOfRawData;
331 uintptr_t con_end = con_start + sec->SizeOfRawData;
335 sec->SizeOfRawData);
/external/swiftshader/third_party/LLVM/include/llvm/Object/
H A DCOFF.h61 support::ulittle32_t SizeOfRawData; member in struct:llvm::object::coff_section
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DCOFF.h149 uint32_t SizeOfRawData; member in struct:llvm::COFF::section
/external/swiftshader/third_party/LLVM/lib/MC/
H A DWinCOFFObjectWriter.cpp602 WriteLE32(S.SizeOfRawData);
798 Sec->Header.SizeOfRawData = Layout.getSectionAddressSize(i);
803 offset += Sec->Header.SizeOfRawData;
825 Aux.Aux.SectionDefinition.Length = Sec->Header.SizeOfRawData;
/external/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp592 writeLE32(S.SizeOfRawData);
932 Sec->Header.SizeOfRawData = Layout.getSectionAddressSize(&Section);
939 offset += Sec->Header.SizeOfRawData;
972 Aux.Aux.SectionDefinition.Length = Sec->Header.SizeOfRawData;
/external/llvm/include/llvm/Support/
H A DCOFF.h239 uint32_t SizeOfRawData; member in struct:llvm::COFF::section
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DCOFF.h244 uint32_t SizeOfRawData; member in struct:llvm::COFF::section
/external/syslinux/efi32/include/efi/ia32/
H A Dpe.h243 UINT32 SizeOfRawData; member in struct:_IMAGE_SECTION_HEADER
/external/syslinux/efi64/include/efi/x86_64/
H A Dpe.h243 UINT32 SizeOfRawData; member in struct:_IMAGE_SECTION_HEADER
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia32/
H A Dpe.h243 UINT32 SizeOfRawData; member in struct:_IMAGE_SECTION_HEADER
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia64/
H A Dpe.h249 UINT32 SizeOfRawData; member in struct:_IMAGE_SECTION_HEADER
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/x86_64/
H A Dpe.h243 UINT32 SizeOfRawData; member in struct:_IMAGE_SECTION_HEADER
/external/syslinux/gpxe/src/include/gpxe/efi/IndustryStandard/
H A DPeImage.h356 UINT32 SizeOfRawData; member in struct:__anon24921
/external/icu/icu4c/source/tools/toolutil/
H A Dpkg_genc.cpp1157 objHeader.sections[0].SizeOfRawData=length;
1163 objHeader.sections[1].SizeOfRawData=size;
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp1017 // SizeOfRawData and VirtualSize change what they represent depending on
1020 // For object files, SizeOfRawData contains the size of section's data;
1023 // For executables, SizeOfRawData *must* be a multiple of FileAlignment; the
1025 // be greater than SizeOfRawData; the contents past that point should be
1028 return std::min(Sec->VirtualSize, Sec->SizeOfRawData);
1029 return Sec->SizeOfRawData;
/external/llvm/include/llvm/Object/
H A DCOFF.h423 support::ulittle32_t SizeOfRawData; member in struct:llvm::object::coff_section
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp360 // In PE files, VirtualSize gives the section size, and SizeOfRawData
361 // may be zero for sections with content. In Obj files, SizeOfRawData
365 (CoffSection->VirtualSize > 0) || (CoffSection->SizeOfRawData > 0);
/external/llvm/tools/llvm-pdbdump/
H A DLLVMOutputStyle.cpp740 P.printNumber("Size of Raw Data", Section.SizeOfRawData);
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1116 W.printNumber("RawDataSize", Section->SizeOfRawData);
/external/valgrind/coregrind/m_debuginfo/
H A Dreadpdb.c224 unsigned long SizeOfRawData; member in struct:_IMAGE_SECTION_HEADER

Completed in 1739 milliseconds