Home | History | Annotate | Download | only in codesighs

Lines Matching defs:overall

121 static Switch gTotalSwitch = {"--totalonly", "-t", 0, NULL, "Output only one number." DESC_NEWLINE "The total overall size." DESC_NEWLINE "Overrides other output options."};
246 SizeStats overall;
250 memset(&overall, 0, sizeof(overall));
457 ** Update overall totals.
461 overall.mCode += size;
465 overall.mData += size;
552 fprintf(inOptions->mOutput, "%u\n", (unsigned)(overall.mCode + overall.mData));
556 fprintf(inOptions->mOutput, "Overall Size\n");
557 fprintf(inOptions->mOutput, "\tTotal:\t%10u\n", (unsigned)(overall.mCode + overall.mData));
558 fprintf(inOptions->mOutput, "\tCode:\t%10u\n", (unsigned)overall.mCode);
559 fprintf(inOptions->mOutput, "\tData:\t%10u\n", (unsigned)overall.mData);