Lines Matching defs:align
117 void Align(uintptr_t align) {
118 uintptr_t delta = position_ % align;
120 uintptr_t padding = align - delta;
122 DCHECK_EQ(position_ % align, 0);
214 uint32_t align;
232 MachOSection(const char* name, const char* segment, uint32_t align,
234 : name_(name), segment_(segment), align_(align), flags_(flags) {
236 DCHECK(base::bits::IsPowerOfTwo(align));
247 header->align = align_;
308 ELFSection(const char* name, Type type, uintptr_t align)
309 : name_(name), type_(type), align_(align) {}
351 MachOTextSection(uint32_t align, uintptr_t addr, uintptr_t size)
352 : MachOSection("__text", "__TEXT", align,
375 FullHeaderELFSection(const char* name, Type type, uintptr_t align,
378 : ELFSection(name, type, align),
1561 uint32_t align = (w->position() - initial_position) % kSystemPointerSize;
1563 if (align != 0) {
1564 for (uint32_t i = 0; i < (kSystemPointerSize - align); i++) {