Lines Matching refs:loop

317                     unsigned loop = 0;
319 for(loop = 0; loop < inOptions->mMatchClassCount; loop++)
321 if(NULL != strstr(segClass, inOptions->mMatchClasses[loop]))
330 if(loop == inOptions->mMatchClassCount)
341 unsigned loop = 0;
343 for(loop = 0; loop < inOptions->mMatchScopeCount; loop++)
345 if(NULL != strstr(scope, inOptions->mMatchScopes[loop]))
354 if(loop == inOptions->mMatchScopeCount)
365 unsigned loop = 0;
367 for(loop = 0; loop < inOptions->mMatchModuleCount; loop++)
369 if(NULL != strstr(module, inOptions->mMatchModules[loop]))
378 if(loop == inOptions->mMatchModuleCount)
389 unsigned loop = 0;
391 for(loop = 0; loop < inOptions->mMatchSectionCount; loop++)
393 if(NULL != strstr(segment, inOptions->mMatchSections[loop]))
402 if(loop == inOptions->mMatchSectionCount)
413 unsigned loop = 0;
415 for(loop = 0; loop < inOptions->mMatchObjectCount; loop++)
417 if(NULL != strstr(object, inOptions->mMatchObjects[loop]))
426 if(loop == inOptions->mMatchObjectCount)
437 unsigned loop = 0;
439 for(loop = 0; loop < inOptions->mMatchSymbolCount; loop++)
441 if(NULL != strstr(symbol, inOptions->mMatchSymbols[loop]))
450 if(loop == inOptions->mMatchSymbolCount)
567 unsigned loop = 0;
578 for(loop = 0; loop < moduleCount; loop++)
581 fprintf(inOptions->mOutput, "%s\n", modules[loop].mModule);
582 fprintf(inOptions->mOutput, "\tTotal:\t%10u\n", (unsigned)(modules[loop].mSize.mCode + modules[loop].mSize.mData));
583 fprintf(inOptions->mOutput, "\tCode:\t%10u\n", (unsigned)modules[loop].mSize.mCode);
584 fprintf(inOptions->mOutput, "\tData:\t%10u\n", (unsigned)modules[loop].mSize.mData);
586 CLEANUP(modules[loop].mModule);
607 int loop = 0;
633 for(loop = 1; loop < inArgc && 0 == retval; loop++)
640 if(0 == strcmp(gSwitches[switchLoop]->mLongName, inArgv[loop]))
644 else if(0 == strcmp(gSwitches[switchLoop]->mShortName, inArgv[loop]))
656 if(loop + 1 < inArgc)
658 loop++;
661 current->mValue = inArgv[loop];
677 ERROR_REPORT(retval, inArgv[loop], "Unknown command line switch.");
683 ERROR_REPORT(retval, inArgv[loop], "Command line switch requires a value.");
971 unsigned loop = 0;
984 for(loop = 0; loop < inOptions->mMatchClassCount; loop++)
986 CLEANUP(inOptions->mMatchClasses[loop]);
990 for(loop = 0; loop < inOptions->mMatchScopeCount; loop++)
992 CLEANUP(inOptions->mMatchScopes[loop]);
996 for(loop = 0; loop < inOptions->mMatchModuleCount; loop++)
998 CLEANUP(inOptions->mMatchModules[loop]);
1002 for(loop = 0; loop < inOptions->mMatchSectionCount; loop++)
1004 CLEANUP(inOptions->mMatchSections[loop]);
1008 for(loop = 0; loop < inOptions->mMatchObjectCount; loop++)
1010 CLEANUP(inOptions->mMatchObjects[loop]);
1014 for(loop = 0; loop < inOptions->mMatchSymbolCount; loop++)
1016 CLEANUP(inOptions->mMatchSymbols[loop]);
1029 int loop = 0;
1037 for(loop = 0; loop < switchCount; loop++)
1039 if(gSwitches[loop]->mHasValue)
1048 printf("\t%s%s\n", gSwitches[loop]->mLongName, valueText);
1049 printf("\t %s%s", gSwitches[loop]->mShortName, valueText);
1050 printf(DESC_NEWLINE "%s\n\n", gSwitches[loop]->mDescription);