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

  /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...]
Android.mk 56 Statistic.cpp \
  /external/webrtc/src/modules/audio_processing/interface/
audio_processing.h 212 struct Statistic {
302 // Each statistic is reported in dB.
310 AudioProcessing::Statistic residual_echo_return_loss;
313 AudioProcessing::Statistic echo_return_loss;
316 AudioProcessing::Statistic echo_return_loss_enhancement;
319 AudioProcessing::Statistic a_nlp;
  /external/webrtc/src/modules/audio_processing/test/
unit_test.cc 197 void TestStats(const AudioProcessing::Statistic& test,
198 const webrtc::audioproc::Test::Statistic& reference) {
205 void WriteStatsMessage(const AudioProcessing::Statistic& output,
206 webrtc::audioproc::Test::Statistic* message) {
    [all...]
process_test.cc 68 void PrintStat(const AudioProcessing::Statistic& stat) {
    [all...]
  /external/llvm/lib/CodeGen/
MachineBlockPlacement.cpp 33 #include "llvm/ADT/Statistic.h"
48 STATISTIC(NumCondBranches, "Number of conditional branches");
49 STATISTIC(NumUncondBranches, "Number of uncondittional branches");
50 STATISTIC(CondBranchTakenFreq,
52 STATISTIC(UncondBranchTakenFreq,
    [all...]

Completed in 2056 milliseconds