Lines Matching refs:pointerAlign
172 uint32_t pointerAlign(uint32_t value);
245 uint32_t MachOFileLayout::pointerAlign(uint32_t value) { in pointerAlign() function in lld::mach_o::normalized::MachOFileLayout
305 _startOfRelocations = pointerAlign(_endOfSectionsContent); in MachOFileLayout()
313 + pointerAlign(_indirectSymbolTableCount * sizeof(uint32_t)); in MachOFileLayout()
315 + pointerAlign(_symbolStringPoolSize); in MachOFileLayout()
354 + pointerAlign(_indirectSymbolTableCount * sizeof(uint32_t)); in MachOFileLayout()
356 + pointerAlign(_symbolStringPoolSize); in MachOFileLayout()
398 size += sizeof(dylib_command) + pointerAlign(_file.installName.size() + 1); in loadCommandsSize()
418 size += pointerAlign(sizeof(dylinker_command) + dyldPath().size()+1); in loadCommandsSize()
441 size += sizeof(dylib_command) + pointerAlign(dep.path.size()+1); in loadCommandsSize()
447 size += pointerAlign(sizeof(rpath_command) + path.size() + 1); in loadCommandsSize()
836 uint32_t size = sizeof(dylib_command) + pointerAlign(path.size() + 1); in writeLoadCommands()
914 uint32_t size=pointerAlign(sizeof(dylinker_command)+dyldPath().size()+1); in writeLoadCommands()
963 uint32_t size = sizeof(dylib_command) + pointerAlign(dep.path.size()+1); in writeLoadCommands()
981 uint32_t size = pointerAlign(sizeof(rpath_command) + path.size() + 1); in writeLoadCommands()