HomeSort by relevance Sort by last modified time
    Searched refs:CumData (Results 1 - 8 of 8) sorted by null

  /device/linaro/bootloader/edk2/PerformancePkg/Dp_App/
DpTrace.c 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
285 - If the ExcludeFlag is TRUE, records matching entries in the CumData array are not
    [all...]
DpInternal.h 40 extern PERF_CUM_DATA CumData[];
162 Get index of Measurement Record's match in the CumData array.
164 If the Measurement's Token value matches a Token in one of the CumData
167 the Measurement didn't match any entry in the CumData array.
169 @param[in] Measurement A pointer to a Measurement Record to match against the CumData array.
171 @retval <0 Token is not in the CumData array.
172 @retval >=0 Return value is the index into CumData where Token is found.
187 @pre The SummaryData and CumData structures must be initialized
190 @post The SummaryData and CumData structures contain statistics for the
208 - If the ExcludeFlag is TRUE, records matching entries in the CumData array are not
    [all...]
Dp.c 73 PERF_CUM_DATA CumData[] = {
81 UINT32 const NumCum = sizeof(CumData) / sizeof(PERF_CUM_DATA);
DpUtilities.c 464 Get index of Measurement Record's match in the CumData array.
466 If the Measurement's Token value matches a Token in one of the CumData
469 the Measurement didn't match any entry in the CumData array.
471 @param[in] Measurement A pointer to a Measurement Record to match against the CumData array.
473 @retval <0 Token is not in the CumData array.
474 @retval >=0 Return value is the index into CumData where Token is found.
484 if (AsciiStrnCmp (Measurement->Token, CumData[Index].Name, PERF_TOKEN_LENGTH) == 0) {
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiDpLib/
Dp.c 61 PERF_CUM_DATA CumData[] = {
69 UINT32 const NumCum = sizeof(CumData) / sizeof(PERF_CUM_DATA);
127 CumData[Index].Count = 0;
128 CumData[Index].MinDur = PERF_MAXDUR;
129 CumData[Index].MaxDur = 0;
130 CumData[Index].Duration = 0;
DpInternal.h 39 extern PERF_CUM_DATA CumData[];
145 Get index of Measurement Record's match in the CumData array.
147 If the Measurement's Token value matches a Token in one of the CumData
150 the Measurement didn't match any entry in the CumData array.
152 @param[in] Measurement A pointer to a Measurement Record to match against the CumData array.
154 @retval <0 Token is not in the CumData array.
155 @retval >=0 Return value is the index into CumData where Token is found.
170 @pre The SummaryData and CumData structures must be initialized
173 @post The SummaryData and CumData structures contain statistics for the
191 - If the ExcludeFlag is TRUE, records matching entries in the CumData array are not
    [all...]
DpTrace.c 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
    [all...]
DpUtilities.c 379 Get index of Measurement Record's match in the CumData array.
381 If the Measurement's Token value matches a Token in one of the CumData
384 the Measurement didn't match any entry in the CumData array.
386 @param[in] Measurement A pointer to a Measurement Record to match against the CumData array.
388 @retval <0 Token is not in the CumData array.
389 @retval >=0 Return value is the index into CumData where Token is found.
399 if (AsciiStrnCmp (Measurement->Token, CumData[Index].Name, PERF_TOKEN_LENGTH) == 0) {

Completed in 225 milliseconds