Home
last modified time | relevance | path

Searched refs:EntSize (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp110 : Addr(A), Size(S), EntSize(ES), Obj(&Owner), Dumper(&D) {} in DynRegionInfo()
117 uint64_t EntSize = 0; member
149 if (EntSize == sizeof(Type) && (Size % EntSize == 0)) in getAsArrayRef()
150 return {Start, Start + (Size / EntSize)}; in getAsArrayRef()
160 (" or " + EntSizePrintName + " (0x" + Twine::utohexstr(EntSize) + ")") in getAsArrayRef()
358 uint64_t EntSize) { in createDRI() argument
364 return DynRegionInfo(ObjF, *this, Obj.base() + Offset, Size, EntSize); in createDRI()
2077 DynRelrRegion.EntSize = Dyn.getVal(); in parseDynamicTable()
2104 DynSymFromTable->EntSize = sizeof(Elf_Sym); in parseDynamicTable()
2126 DynRelaRegion.EntSize = Dyn.getVal(); in parseDynamicTable()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h272 std::optional<llvm::yaml::Hex64> EntSize; member
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp807 if (Sec->EntSize) in initSectionHeaders()
808 SHeader.sh_entsize = *Sec->EntSize; in initSectionHeaders()
H A DELFYAML.cpp1398 IO.mapOptional("EntSize", Section.EntSize); in commonSectionMapping()