Home
last modified time | relevance | path

Searched full:statistic (Results 1 – 25 of 624) sorted by relevance

12345678910>>...25

/freebsd/sys/contrib/ncsw/Peripherals/FM/MACSEC/
H A Dfm_macsec_master.h167 /* 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 DStatistic.cpp1 //===-- 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 DStatistic.h1 //===-- 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 DZ3CrosscheckVisitor.cpp18 #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 DCorrelatedValuePropagation.cpp16 #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 DSCCP.cpp23 #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 DInstCount.cpp14 #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 DDependenceGraphBuilder.cpp17 #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 DAbstractCallSite.cpp18 #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 DStackMapLivenessAnalysis.cpp15 #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 DMachineStableHash.cpp21 #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 DResetMachineFunctionPass.cpp16 #include "llvm/ADT/Statistic.h"
30 STATISTIC(NumFunctionsReset, "Number of functions reset");
31 STATISTIC(NumFunctionsVisited, "Number of functions visited");
H A DDwarfEHPrepare.cpp17 #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 Dmode.c39 * 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 Dkmp_stats.cpp78 /* ************* 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 Dkmp_stats.h46 * \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 DX86LoadValueInjectionRetHardening.cpp23 #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 Dsal_statistics.c12 * 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 DAArch64ConditionalCompares.cpp21 #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 DAArch64CompressJumpTables.cpp17 #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 DElimAvailExtern.cpp16 #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 DInstCombineNegator.cpp20 #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 Dlocate.c88 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 DInjectTLIMappings.cpp15 #include "llvm/ADT/Statistic.h"
29 STATISTIC(NumCallInjected,
32 STATISTIC(NumVFDeclAdded,
34 STATISTIC(NumCompUsedAdded,
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesManager.cpp24 #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");

12345678910>>...25