Home | History | Annotate | Download | only in cg

Lines Matching defs:sectionIndex

169     UInt16              sectionIndex;
211 sectionIndex = 0;
213 while ( sectionIndex < fragToFix->containerHeader.sectionCount && ! found ) {
214 found = (fragToFix->sectionHeaders[sectionIndex].sectionKind == kPEFLoaderSection);
216 sectionIndex += 1;
227 fragToFix->loaderSection = (PEFLoaderInfoHeader *) NewPtr(fragToFix->sectionHeaders[sectionIndex].containerLength);
232 fragToFix->locator.offset + fragToFix->sectionHeaders[sectionIndex].containerOffset,
233 fragToFix->sectionHeaders[sectionIndex].containerLength,
623 static void *GetSectionBaseAddress(const FragToFixInfo *fragToFix, UInt16 sectionIndex)
625 // whose index is sectionIndex. This routine is the evil twin
638 switch (sectionIndex) {
825 state->sectionBase = (UInt32 *) GetSectionBaseAddress(fragToFix, relocHeader->sectionIndex);