Lines Matching refs:CumData
41 @pre The SummaryData and CumData structures must be initialized
44 @post The SummaryData and CumData structures contain statistics for the
96 CumData[TIndex].Duration += Duration;
97 CumData[TIndex].Count++;
98 if ( Duration < CumData[TIndex].MinDur ) {
99 CumData[TIndex].MinDur = Duration;
101 if ( Duration > CumData[TIndex].MaxDur ) {
102 CumData[TIndex].MaxDur = Duration;
129 - If the ExcludeFlag is TRUE, records matching entries in the CumData array are not
286 - If the ExcludeFlag is TRUE, records matching entries in the CumData array are not
822 For each record with a Token listed in the CumData array:<BR>
854 if (CumData[TIndex].Count != 0) {
855 AvgDur = DivU64x32 (CumData[TIndex].Duration, CumData[TIndex].Count);
857 Dur = DurationInMicroSeconds(CumData[TIndex].Duration);
858 MaxDur = DurationInMicroSeconds(CumData[TIndex].MaxDur);
859 MinDur = DurationInMicroSeconds(CumData[TIndex].MinDur);
862 CumData[TIndex].Name,
863 CumData[TIndex].Count,