Lines Matching defs:DefaultSectionAlign
51 constexpr unsigned DefaultSectionAlign = 4;
1512 // DefaultSectionAlign.
1513 Address = alignTo(Address, DefaultSectionAlign);
1518 // DefaultSectionAlign as the default alignment, while DWARF sections have
1567 DefaultSectionAlign);
1576 Address = alignTo(Address, DefaultSectionAlign);
1584 Address = alignTo(Address, DefaultSectionAlign);
1642 // DefaultSectionAlign.
1655 // DWARF section size is not aligned to DefaultSectionAlign.
1656 // Make sure CurrentAddressLocation is aligned to DefaultSectionAlign.
1657 uint32_t Mod = CurrentAddressLocation % DefaultSectionAlign;
1658 uint32_t TailPaddingSize = Mod ? DefaultSectionAlign - Mod : 0;