Lines Matching defs:mSize

156     int mSize;
167 int mSize;
182 int mSize;
196 SizeStats mSize;
213 int oneSize = (one->mSize.mCode + one->mSize.mData);
214 int twoSize = (two->mSize.mCode + two->mSize.mData);
247 if(one->mSize < two->mSize)
251 else if(one->mSize > two->mSize)
258 if(0 > one->mSize && 0 > two->mSize)
278 if(one->mSize < two->mSize)
282 else if(one->mSize > two->mSize)
289 if(0 > one->mSize && 0 > two->mSize)
309 if(one->mSize < two->mSize)
313 else if(one->mSize > two->mSize)
320 if(0 > one->mSize && 0 > two->mSize)
611 theModule->mSize.mCode += size;
616 theModule->mSize.mData += size;
619 theSegment->mSize += size;
620 theObject->mSize += size;
621 theSymbol->mSize += size;
628 theModule->mSize.mCode -= size;
633 theModule->mSize.mData -= size;
636 theSegment->mSize -= size;
637 theObject->mSize -= size;
638 theSymbol->mSize -= size;
739 if(NULL != symArray[arrayLoop] && 0 != symArray[arrayLoop]->mSize)
744 const int lookingFor = symArray[arrayLoop]->mSize;
757 if(NULL == symArray[lookLoop] || 0 == symArray[lookLoop]->mSize)
762 if(lookingFor == symArray[lookLoop]->mSize)
766 else if((-1 * lookingFor) == symArray[lookLoop]->mSize)
782 if(NULL == symArray[negationLoop] || 0 == symArray[negationLoop]->mSize)
792 if(lookingFor == symArray[negationLoop]->mSize)
794 objArray[negationLoop]->mSize -= lookingFor;
795 symArray[negationLoop]->mSize = 0;
800 else if((-1 * lookingFor) == symArray[negationLoop]->mSize)
802 objArray[negationLoop]->mSize += lookingFor;
803 symArray[negationLoop]->mSize = 0;
839 if(0 == inOptions->mZeroDrift && 0 == (theModule->mSize.mCode + theModule->mSize.mData))
851 if(0 == inOptions->mZeroDrift && 0 == theSegment->mSize)
863 if(0 == inOptions->mZeroDrift && 0 == theObject->mSize)
876 if(0 < theSymbol->mSize)
878 theObject->mComposition.mPositive += theSymbol->mSize;
879 theSegment->mComposition.mPositive += theSymbol->mSize;
882 overall.mCodeComposition.mPositive += theSymbol->mSize;
883 theModule->mSize.mCodeComposition.mPositive += theSymbol->mSize;
887 overall.mDataComposition.mPositive += theSymbol->mSize;
888 theModule->mSize.mDataComposition.mPositive += theSymbol->mSize;
891 else if(0 > theSymbol->mSize)
893 theObject->mComposition.mNegative += theSymbol->mSize;
894 theSegment->mComposition.mNegative += theSymbol->mSize;
897 overall.mCodeComposition.mNegative += theSymbol->mSize;
898 theModule->mSize.mCodeComposition.mNegative += theSymbol->mSize;
902 overall.mDataComposition.mNegative += theSymbol->mSize;
903 theModule->mSize.mDataComposition.mNegative += theSymbol->mSize;
966 if(0 == inOptions->mZeroDrift && 0 == (theModule->mSize.mCode + theModule->mSize.mData))
973 fprintf(inOptions->mOutput, "\tTotal:\t%+11d (%+d/%+d)\n", theModule->mSize.mCode + theModule->mSize.mData, theModule->mSize.mCodeComposition.mPositive + theModule->mSize.mDataComposition.mPositive, theModule->mSize.mCodeComposition.mNegative + theModule->mSize.mDataComposition.mNegative);
974 fprintf(inOptions->mOutput, "\tCode:\t%+11d (%+d/%+d)\n", theModule->mSize.mCode, theModule->mSize.mCodeComposition.mPositive, theModule->mSize.mCodeComposition.mNegative);
975 fprintf(inOptions->mOutput, "\tData:\t%+11d (%+d/%+d)\n", theModule->mSize.mData, theModule->mSize.mDataComposition.mPositive, theModule->mSize.mDataComposition.mNegative);
984 if(0 == inOptions->mZeroDrift && 0 == theSegment->mSize)
998 fprintf(inOptions->mOutput, "\t%+11d (%+d/%+d)\t%s (%s)\n", theSegment->mSize, theSegment->mComposition.mPositive, theSegment->mComposition.mNegative, theSegment->mSegment, segmentType);
1007 if(0 == inOptions->mZeroDrift && 0 == theObject->mSize)
1012 fprintf(inOptions->mOutput, "\t\t%+11d (%+d/%+d)\t%s\n", theObject->mSize, theObject->mComposition.mPositive, theObject->mComposition.mNegative, theObject->mObject);
1021 if(0 == inOptions->mZeroDrift && 0 == theSymbol->mSize)
1026 fprintf(inOptions->mOutput, "\t\t\t%+11d\t%s\n", theSymbol->mSize, theSymbol->mSymbol);