Lines Matching refs:sections
60 sections = {
84 … if type(one_sect) is not elftools.elf.sections.Section: # pylint: disable=unidiomatic-typecheck
88 if name in sections:
90 sections[name]['align'] = one_sect['sh_addralign']
91 sections[name]['size'] = one_sect['sh_size']
92 sections[name]['exists'] = True
94 if "multiplier" in sections[name]:
95 sections[name]['size'] *= sections[name]['multiplier'] / 100
96 sections[name]['size'] = int(sections[name]['size'])
98 if "extra_bytes" in sections[name]:
99 sections[name]['size'] += int(sections[name]['extra_bytes'])
101 for one_sect in sections:
102 output_simple_header(sections[one_sect])