HomeSort by relevance Sort by last modified time
    Searched full:statistic (Results 1 - 25 of 280) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/src/modules/audio_processing/test/
unittest.proto 23 message Statistic {
31 optional Statistic residual_echo_return_loss = 1;
32 optional Statistic echo_return_loss = 2;
33 optional Statistic echo_return_loss_enhancement = 3;
34 optional Statistic a_nlp = 4;
  /external/llvm/include/llvm/ADT/
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");
35 class Statistic {
56 const Statistic &operator=(unsigned Val) {
61 const Statistic &operator++() {
77 const Statistic &operator--() {
89 const Statistic &operator+=(const unsigned &V) {
95 const Statistic &operator-=(const unsigned &V) {
101 const Statistic &operator*=(const unsigned &V)
    [all...]
  /external/llvm/lib/Support/
Statistic.cpp 1 //===-- Statistic.cpp - Easy way to expose stats information --------------===//
10 // This file implements the 'Statistic' class, which is designed to be an easy
18 // static Statistic NumInstEliminated("GCSE", "Number of instructions killed");
24 #include "llvm/ADT/Statistic.h"
50 /// on demand (when the first statistic is bumped) and destroyed only when
53 std::vector<const Statistic*> Stats;
59 void addStatistic(const Statistic *S) {
68 /// RegisterStatistic - The first time a statistic is bumped, this method is
70 void Statistic::RegisterStatistic() {
71 // If stats are enabled, inform StatInfo that this statistic should b
    [all...]
DataStream.cpp 19 #include "llvm/ADT/Statistic.h"
44 STATISTIC(NumStreamFetches, "Number of calls to Data stream fetch");
  /external/llvm/lib/Analysis/
InstCount.cpp 16 #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");
28 STATISTIC(TotalMemInst, "Number of memory instructions");
31 STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
ProfileDataLoaderPass.cpp 20 #include "llvm/ADT/Statistic.h"
36 STATISTIC(NumEdgesRead, "The # of edges read.");
37 STATISTIC(NumTermsAnnotated, "The # of terminator instructions annotated.");
  /external/llvm/lib/Transforms/Hello/
Hello.cpp 16 #include "llvm/ADT/Statistic.h"
22 STATISTIC(HelloCounter, "Counts number of functions greeted");
  /external/chromium/chrome/browser/chromeos/
system_access.h 33 // Retrieve the named machine statistic (e.g. "hardware_class").
  /external/iptables/extensions/
libxt_statistic.man 1 This module matches packets based on some statistic condition.
libxt_statistic.c 20 "statistic match options:\n"
121 printf(" statistic");
134 .name = "statistic",
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 16 #include "llvm/ADT/Statistic.h"
29 STATISTIC(NumPhis, "Number of phis propagated");
30 STATISTIC(NumSelects, "Number of selects propagated");
31 STATISTIC(NumMemAccess, "Number of memory access targets propagated");
32 STATISTIC(NumCmps, "Number of comparisons propagated");
33 STATISTIC(NumDeadCases, "Number of switch cases removed");
ADCE.cpp 22 #include "llvm/ADT/Statistic.h"
31 STATISTIC(NumRemoved, "Number of instructions removed");
ConstantProp.cpp 23 #include "llvm/ADT/Statistic.h"
34 STATISTIC(NumInstKilled, "Number of instructions killed");
DCE.cpp 21 #include "llvm/ADT/Statistic.h"
29 STATISTIC(DIEEliminated, "Number of insts removed by DIE pass");
30 STATISTIC(DCEEliminated, "Number of insts removed");
Reg2Mem.cpp 21 #include "llvm/ADT/Statistic.h"
33 STATISTIC(NumRegsDemoted, "Number of registers demoted");
34 STATISTIC(NumPhisDemoted, "Number of phi-nodes demoted");
  /external/llvm/lib/Transforms/IPO/
StripDeadPrototypes.cpp 19 #include "llvm/ADT/Statistic.h"
24 STATISTIC(NumDeadPrototypes, "Number of dead prototypes removed");
Internalize.cpp 18 #include "llvm/ADT/Statistic.h"
29 STATISTIC(NumAliases , "Number of aliases internalized");
30 STATISTIC(NumFunctions, "Number of functions internalized");
31 STATISTIC(NumGlobals , "Number of global vars internalized");
  /external/llvm/lib/Transforms/Utils/
Mem2Reg.cpp 17 #include "llvm/ADT/Statistic.h"
25 STATISTIC(NumPromoted, "Number of alloca's promoted");
  /external/chromium/net/base/
mock_filter_context.h 54 virtual void RecordPacketStats(StatisticSelector statistic) const {}
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 17 #include "llvm/ADT/Statistic.h"
34 STATISTIC(ChecksAdded, "Bounds checks added");
35 STATISTIC(ChecksSkipped, "Bounds checks skipped");
36 STATISTIC(ChecksUnable, "Bounds checks unable to add");
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 23 #include "llvm/ADT/Statistic.h"
29 STATISTIC(NumBlocks,
31 STATISTIC(NumBlocksUnreachable,
  /external/llvm/lib/CodeGen/
LiveRegMatrix.cpp 17 #include "llvm/ADT/Statistic.h"
28 STATISTIC(NumAssigned , "Number of registers assigned");
29 STATISTIC(NumUnassigned , "Number of registers unassigned");
  /external/llvm/lib/Target/Sparc/
FPMover.cpp 17 #include "llvm/ADT/Statistic.h"
27 STATISTIC(NumFpDs , "Number of instructions translated");
28 STATISTIC(NoopFpDs, "Number of noop instructions removed");
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 19 #include "llvm/ADT/Statistic.h"
61 STATISTIC(NumFastIselFailures, "Number of instructions fast isel failed on");
62 STATISTIC(NumFastIselSuccess, "Number of instructions fast isel selected");
63 STATISTIC(NumFastIselBlocks, "Number of blocks selected entirely by fast isel");
64 STATISTIC(NumDAGBlocks, "Number of blocks selected using DAG");
65 STATISTIC(NumDAGIselRetries,"Number of times dag isel has to try another path");
73 STATISTIC(NumFastIselFailRet,"Fast isel fails on Ret");
74 STATISTIC(NumFastIselFailBr,"Fast isel fails on Br");
75 STATISTIC(NumFastIselFailSwitch,"Fast isel fails on Switch");
76 STATISTIC(NumFastIselFailIndirectBr,"Fast isel fails on IndirectBr")
    [all...]
  /external/clang/lib/Analysis/
CallGraph.cpp 20 #include "llvm/ADT/Statistic.h"
25 STATISTIC(NumObjCCallEdges, "Number of Objective-C method call edges");
26 STATISTIC(NumBlockCallEdges, "Number of block call edges");

Completed in 529 milliseconds

1 2 3 4 5 6 7 8 91011>>