Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckPlacementNew.cpp223 unsigned AddressAlign = Offset % AllocatedTAlign; in checkElementRegionAlign() local
224 if (AddressAlign != 0) { in checkElementRegionAlign()
225 emitBadAlignReport(P, C, AllocatedTAlign, AddressAlign); in checkElementRegionAlign()
253 unsigned AddressAlign = OffsetValue % AllocatedTAlign; in checkFieldRegionAlign() local
254 if (AddressAlign != 0) in checkFieldRegionAlign()
255 emitBadAlignReport(P, C, AllocatedTAlign, AddressAlign); in checkFieldRegionAlign()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp830 SHeader.sh_addralign = Sec->AddressAlign; in initSectionHeaders()
1016 SHeader.sh_addralign = YAMLSec ? (uint64_t)YAMLSec->AddressAlign : 8; in initSymtabSectionHeader()
1042 SHeader.sh_addralign = YAMLSec ? (uint64_t)YAMLSec->AddressAlign : 1; in initStrtabSectionHeader()
1100 SHeader.sh_addralign = YAMLSec ? (uint64_t)YAMLSec->AddressAlign : 1; in initDWARFSectionHeader()
H A DELFYAML.cpp1347 IO.mapOptional("AddressAlign", Section.AddressAlign, Hex64(0)); in commonSectionMapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h244 llvm::yaml::Hex64 AddressAlign; member