/freebsd/sys/contrib/ncsw/Peripherals/FM/MACSEC/ |
H A D | fm_macsec_master.h | 167 /* RX configuration, status and statistic */ 171 volatile uint32_t ifio1hs; /**< ifInOctets first half Statistic */ 172 volatile uint32_t ifio2hs; /**< ifInOctets second half Statistic */ 173 volatile uint32_t ifiups; /**< ifInUcastPkts Statistic */ 175 volatile uint32_t ifimps; /**< ifInMulticastPkts Statistic */ 176 volatile uint32_t ifibps; /**< ifInBroadcastPkts Statistic */ 180 volatile uint32_t inov1hs; /**< InOctetsValidated first half Statistic */ 181 volatile uint32_t inov2hs; /**< InOctetsValidated second half Statistic */ 182 volatile uint32_t inod1hs; /**< InOctetsDecrypted first half Statistic */ 183 volatile uint32_t inod2hs; /**< InOctetsDecrypted second half Statistic */ [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Statistic.cpp | 1 //===-- Statistic.cpp - Easy way to expose stats information --------------===// 9 // This file implements the 'Statistic' class, which is designed to be an easy 17 // static Statistic NumInstEliminated("GCSE", "Number of instructions killed"); 23 #include "llvm/ADT/Statistic.h" 62 /// the first statistic is bumped) and destroyed only when llvm_shutdown is 64 /// This class is also used to look up statistic values from applications that 96 /// RegisterStatistic - The first time a statistic is bumped, this method is 99 // If stats are enabled, inform StatInfo that this statistic should be in RegisterStatistic() 157 // Tell each statistic that it isn't registered so it has to register in reset() 162 // Value updates to a statistic that complete before this statement in the in reset() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | Statistic.h | 1 //===-- llvm/ADT/Statistic.h - Easy way to expose stats ---------*- C++ -*-===// 10 /// This file defines the 'Statistic' class, which is designed to be an easy way 18 /// static Statistic NumInstsKilled("gcse", "Number of instructions killed"); 160 using Statistic = TrackingStatistic; variable 162 using Statistic = NoopStatistic; variable 165 // STATISTIC - A macro to make definition of statistics really simple. This 166 // automatically passes the DEBUG_TYPE of the file into the statistic. 167 #define STATISTIC(VARNAME, DESC) \ macro 168 static llvm::Statistic VARNAME = {DEBUG_TYPE, #VARNAME, DESC} 170 // ALWAYS_ENABLED_STATISTIC - A macro to define a statistic like STATISTIC but
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | Z3CrosscheckVisitor.cpp | 18 #include "llvm/ADT/Statistic.h" 24 STATISTIC(NumZ3QueriesDone, "Number of Z3 queries done"); 25 STATISTIC(NumTimesZ3TimedOut, "Number of times Z3 query timed out"); 26 STATISTIC(NumTimesZ3ExhaustedRLimit, 28 STATISTIC(NumTimesZ3SpendsTooMuchTimeOnASingleEQClass, 32 STATISTIC(NumTimesZ3QueryAcceptsReport, 34 STATISTIC(NumTimesZ3QueryRejectReport, 36 STATISTIC(NumTimesZ3QueryRejectEQClass,
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | CorrelatedValuePropagation.cpp | 16 #include "llvm/ADT/Statistic.h" 51 STATISTIC(NumPhis, "Number of phis propagated"); 52 STATISTIC(NumPhiCommon, "Number of phis deleted via common incoming value"); 53 STATISTIC(NumSelects, "Number of selects propagated"); 54 STATISTIC(NumCmps, "Number of comparisons propagated"); 55 STATISTIC(NumReturns, "Number of return values propagated"); 56 STATISTIC(NumDeadCases, "Number of switch cases removed"); 57 STATISTIC(NumSDivSRemsNarrowed, 59 STATISTIC(NumSDivs, "Number of sdiv converted to udiv"); 60 STATISTIC(NumUDivURemsNarrowed, [all …]
|
H A D | SCCP.cpp | 23 #include "llvm/ADT/Statistic.h" 55 STATISTIC(NumInstRemoved, "Number of instructions removed"); 56 STATISTIC(NumDeadBlocks , "Number of basic blocks unreachable"); 57 STATISTIC(NumInstReplaced,
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | InstCount.cpp | 14 #include "llvm/ADT/Statistic.h" 25 STATISTIC(TotalInsts, "Number of instructions (of all types)"); 26 STATISTIC(TotalBlocks, "Number of basic blocks"); 27 STATISTIC(TotalFuncs, "Number of non-external functions"); 30 STATISTIC(Num##OPCODE##Inst, "Number of " #OPCODE " insts");
|
H A D | DependenceGraphBuilder.cpp | 17 #include "llvm/ADT/Statistic.h" 24 STATISTIC(TotalGraphs, "Number of dependence graphs created."); 25 STATISTIC(TotalDefUseEdges, "Number of def-use edges created."); 26 STATISTIC(TotalMemoryEdges, "Number of memory dependence edges created."); 27 STATISTIC(TotalFineGrainedNodes, "Number of fine-grained nodes created."); 28 STATISTIC(TotalPiBlockNodes, "Number of pi-block nodes created."); 29 STATISTIC(TotalConfusedEdges, 31 STATISTIC(TotalEdgeReversals,
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | AbstractCallSite.cpp | 18 #include "llvm/ADT/Statistic.h" 24 STATISTIC(NumCallbackCallSites, "Number of callback call sites created"); 25 STATISTIC(NumDirectAbstractCallSites, 27 STATISTIC(NumInvalidAbstractCallSitesUnknownUse, 29 STATISTIC(NumInvalidAbstractCallSitesUnknownCallee, 31 STATISTIC(NumInvalidAbstractCallSitesNoCallback,
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | StackMapLivenessAnalysis.cpp | 15 #include "llvm/ADT/Statistic.h" 35 STATISTIC(NumStackMapFuncVisited, "Number of functions visited"); 36 STATISTIC(NumStackMapFuncSkipped, "Number of functions skipped"); 37 STATISTIC(NumBBsVisited, "Number of basic blocks visited"); 38 STATISTIC(NumBBsHaveNoStackmap, "Number of basic blocks with no stackmap"); 39 STATISTIC(NumStackMaps, "Number of StackMaps visited");
|
H A D | MachineStableHash.cpp | 21 #include "llvm/ADT/Statistic.h" 41 STATISTIC(StableHashBailingMachineBasicBlock, 44 STATISTIC(StableHashBailingConstantPoolIndex, 47 STATISTIC(StableHashBailingTargetIndexNoName, 50 STATISTIC(StableHashBailingGlobalAddress, 53 STATISTIC(StableHashBailingBlockAddress, 56 STATISTIC(StableHashBailingMetadataUnsupported,
|
H A D | ResetMachineFunctionPass.cpp | 16 #include "llvm/ADT/Statistic.h" 30 STATISTIC(NumFunctionsReset, "Number of functions reset"); 31 STATISTIC(NumFunctionsVisited, "Number of functions visited");
|
H A D | DwarfEHPrepare.cpp | 17 #include "llvm/ADT/Statistic.h" 47 STATISTIC(NumResumesLowered, "Number of resume calls lowered"); 48 STATISTIC(NumCleanupLandingPadsUnreachable, 50 STATISTIC(NumCleanupLandingPadsRemaining, 52 STATISTIC(NumNoUnwind, "Number of functions with nounwind"); 53 STATISTIC(NumUnwind, "Number of functions with unwind");
|
/freebsd/usr.bin/systat/ |
H A D | mode.c | 39 * each statistic in units per second, regardless of the actual display 42 * DELTA - displays the change in each statistic over the entire 45 * SINCE - displays the total change in each statistic since the module 48 * ABSOLUTE - displays the current value of each statistic.
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_stats.cpp | 78 /* ************* statistic member functions ************* */ 80 void statistic::addSample(double sample) { in addSample() 96 statistic &statistic::operator+=(const statistic &other) { in operator +=() 129 void statistic::scale(double factor) { in scale() 137 std::string statistic::format(char unit, bool total) const { in format() 595 statistic const *theStats, in printTimerStats() 596 statistic const *totalStats) { in printTimerStats() 601 statistic const *stat = &theStats[s]; in printTimerStats() 619 statistic const *stat = &theStats[s]; in printTimerStats() 632 statistic const *theStats) { in printCounterStats() [all …]
|
H A D | kmp_stats.h | 46 * \brief flags to describe the statistic (timer or counter) 50 noTotal = 1 << 0, //!< do not show a TOTAL_aggregation for this statistic 51 onlyInMaster = 1 << 1, //!< statistic is valid only for primary thread 52 noUnits = 1 << 2, //!< statistic doesn't need units printed next to it 53 notInMaster = 1 << 3, //!< statistic is valid only for non-primary threads 54 logEvent = 1 << 4 //!< statistic can be logged on the event timeline when 403 class statistic { 414 statistic(bool doHist = bool(KMP_STATS_HIST)) { 418 statistic(statistic const &o) in statistic() function 422 statistic(double minv, double maxv, double meanv, uint64_t sc, double sd) in statistic() function [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86LoadValueInjectionRetHardening.cpp | 23 #include "llvm/ADT/Statistic.h" 36 STATISTIC(NumFences, "Number of LFENCEs inserted for LVI mitigation"); 37 STATISTIC(NumFunctionsConsidered, "Number of functions analyzed"); 38 STATISTIC(NumFunctionsMitigated, "Number of functions for which mitigations "
|
/freebsd/sys/dev/qat/qat_api/common/utils/ |
H A D | sal_statistics.c | 12 * This file contains implementation of statistic related functions 30 * Reads from the config file if the given statistic is enabled 33 * Reads from the config file if the given statistic is enabled 90 QAT_UTILS_LOG("Failed to allocate memory for statistic.\n"); in SalStatistics_InitStatisticsCollection()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ConditionalCompares.cpp | 21 #include "llvm/ADT/Statistic.h" 53 STATISTIC(NumConsidered, "Number of ccmps considered"); 54 STATISTIC(NumPhiRejs, "Number of ccmps rejected (PHI)"); 55 STATISTIC(NumPhysRejs, "Number of ccmps rejected (Physregs)"); 56 STATISTIC(NumPhi2Rejs, "Number of ccmps rejected (PHI2)"); 57 STATISTIC(NumHeadBranchRejs, "Number of ccmps rejected (Head branch)"); 58 STATISTIC(NumCmpBranchRejs, "Number of ccmps rejected (CmpBB branch)"); 59 STATISTIC(NumCmpTermRejs, "Number of ccmps rejected (CmpBB is cbz...)"); 60 STATISTIC(NumImmRangeRejs, "Number of ccmps rejected (Imm out of range)"); 61 STATISTIC(NumLiveDstRejs, "Number of ccmps rejected (Cmp dest live)"); [all …]
|
H A D | AArch64CompressJumpTables.cpp | 17 #include "llvm/ADT/Statistic.h" 30 STATISTIC(NumJT8, "Number of jump-tables with 1-byte entries"); 31 STATISTIC(NumJT16, "Number of jump-tables with 2-byte entries"); 32 STATISTIC(NumJT32, "Number of jump-tables with 4-byte entries");
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | ElimAvailExtern.cpp | 16 #include "llvm/ADT/Statistic.h" 38 STATISTIC(NumRemovals, "Number of functions removed"); 39 STATISTIC(NumConversions, "Number of functions converted"); 40 STATISTIC(NumVariables, "Number of global variables removed");
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineNegator.cpp | 20 #include "llvm/ADT/Statistic.h" 58 STATISTIC(NegatorTotalNegationsAttempted, 60 STATISTIC(NegatorNumTreesNegated, 62 STATISTIC(NegatorMaxDepthVisited, "Negator: Maximal traversal depth ever " 64 STATISTIC(NegatorTimesDepthLimitReached, 67 STATISTIC( 70 STATISTIC(NegatorNumNegationsFoundInCache, 72 STATISTIC(NegatorMaxTotalValuesVisited, 75 STATISTIC(NegatorNumInstructionsCreatedTotal, 77 STATISTIC(NegatorMaxInstructionsCreated, [all …]
|
/freebsd/usr.bin/locate/locate/ |
H A D | locate.c | 88 int f_statistic; /* print statistic */ 97 void statistic(FILE *, char *); 131 case 'S': /* statistic lines */ in main() 237 statistic(fp, db); in search_fopen() 319 /* statistic */
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | InjectTLIMappings.cpp | 15 #include "llvm/ADT/Statistic.h" 29 STATISTIC(NumCallInjected, 32 STATISTIC(NumVFDeclAdded, 34 STATISTIC(NumCompUsedAdded,
|
/freebsd/contrib/llvm-project/clang/lib/APINotes/ |
H A D | APINotesManager.cpp | 24 #include "llvm/ADT/Statistic.h" 33 STATISTIC(NumHeaderAPINotes, "non-framework API notes files loaded"); 34 STATISTIC(NumPublicFrameworkAPINotes, "framework public API notes loaded"); 35 STATISTIC(NumPrivateFrameworkAPINotes, "framework private API notes loaded"); 36 STATISTIC(NumFrameworksSearched, "frameworks searched"); 37 STATISTIC(NumDirectoriesSearched, "header directories searched"); 38 STATISTIC(NumDirectoryCacheHits, "directory cache hits");
|