Lines Matching refs:pointerAlign
172 uint32_t pointerAlign(uint32_t value);
244 uint32_t MachOFileLayout::pointerAlign(uint32_t value) { in pointerAlign() function in lld::mach_o::normalized::MachOFileLayout
303 _startOfRelocations = pointerAlign(_endOfSectionsContent); in MachOFileLayout()
311 + pointerAlign(_indirectSymbolTableCount * sizeof(uint32_t)); in MachOFileLayout()
313 + pointerAlign(_symbolStringPoolSize); in MachOFileLayout()
351 + pointerAlign(_indirectSymbolTableCount * sizeof(uint32_t)); in MachOFileLayout()
353 + pointerAlign(_symbolStringPoolSize); in MachOFileLayout()
394 size += sizeof(dylib_command) + pointerAlign(_file.installName.size() + 1); in loadCommandsSize()
414 size += pointerAlign(sizeof(dylinker_command) + dyldPath().size()+1); in loadCommandsSize()
437 size += sizeof(dylib_command) + pointerAlign(dep.path.size()+1); in loadCommandsSize()
443 size += pointerAlign(sizeof(rpath_command) + path.size() + 1); in loadCommandsSize()
830 uint32_t size = sizeof(dylib_command) + pointerAlign(path.size() + 1); in writeLoadCommands()
908 uint32_t size=pointerAlign(sizeof(dylinker_command)+dyldPath().size()+1); in writeLoadCommands()
957 uint32_t size = sizeof(dylib_command) + pointerAlign(dep.path.size()+1); in writeLoadCommands()
975 uint32_t size = pointerAlign(sizeof(rpath_command) + path.size() + 1); in writeLoadCommands()