Home | History | Annotate | Download | only in llvm-readobj

Lines Matching defs:Sect

162     MachO::section Sect = Obj->getSection(Sec);
163 Section.Address = Sect.addr;
164 Section.Size = Sect.size;
165 Section.Offset = Sect.offset;
166 Section.Alignment = Sect.align;
167 Section.RelocationTableOffset = Sect.reloff;
168 Section.NumRelocationTableEntries = Sect.nreloc;
169 Section.Flags = Sect.flags;
170 Section.Reserved1 = Sect.reserved1;
171 Section.Reserved2 = Sect.reserved2;
174 MachO::section_64 Sect = Obj->getSection64(Sec);
175 Section.Address = Sect.addr;
176 Section.Size = Sect.size;
177 Section.Offset = Sect.offset;
178 Section.Alignment = Sect.align;
179 Section.RelocationTableOffset = Sect.reloff;
180 Section.NumRelocationTableEntries = Sect.nreloc;
181 Section.Flags = Sect.flags;
182 Section.Reserved1 = Sect.reserved1;
183 Section.Reserved2 = Sect.reserved2;