Home | History | Annotate | Download | only in codesighs

Lines Matching refs:mSegments

197     SegmentStats* mSegments;
490 if(0 == strcmp(segment, theModule->mSegments[segmentIndex].mSegment))
500 moved = realloc(theModule->mSegments, sizeof(SegmentStats) * (theModule->mSegmentCount + 1));
503 theModule->mSegments = (SegmentStats*)moved;
505 memset(theModule->mSegments + segmentIndex, 0, sizeof(SegmentStats));
507 theModule->mSegments[segmentIndex].mClass = segmentClass;
508 theModule->mSegments[segmentIndex].mSegment = strdup(segment);
509 if(NULL == theModule->mSegments[segmentIndex].mSegment)
525 theSegment = (theModule->mSegments + segmentIndex);
705 theSegment = theModule->mSegments + segmentLoop;
846 theSegment = theModule->mSegments + segmentLoop;
939 qsort(theModule->mSegments, theModule->mSegmentCount, sizeof(SegmentStats), segmentCompare);
943 theSegment = theModule->mSegments + segmentLoop;
979 theSegment = theModule->mSegments + segmentLoop;
1043 theSegment = theModule->mSegments + segmentLoop;
1064 CLEANUP(theModule->mSegments);