HomeSort by relevance Sort by last modified time
    Searched refs:Stats (Results 1 - 25 of 269) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/swiftshader/third_party/LLVM/lib/Support/
Statistic.cpp 1 //===-- Statistic.cpp - Easy way to expose stats information --------------===//
12 // printed at the end of a run, when the -stats command line option is enabled
38 /// -stats - Command line option to cause transformations to emit stats about
42 Enabled("stats", cl::desc("Enable statistics output from program"));
50 std::vector<const Statistic*> Stats;
57 Stats.push_back(S);
68 // If stats are enabled, inform StatInfo that this statistic should be
109 StatisticInfo &Stats = *StatInfo;
113 for (size_t i = 0, e = Stats.Stats.size(); i != e; ++i)
    [all...]
  /build/kati/
stats.h 24 class Stats {
26 explicit Stats(const char* name);
46 explicit ScopedStatsRecorder(Stats* st, const char* msg = 0);
50 Stats* st_;
57 static Stats stats(name); \
58 ScopedStatsRecorder ssr(&stats)
61 static Stats stats(name); \
62 ScopedStatsRecorder ssr(&stats, msg
    [all...]
stats.cc 17 #include "stats.h"
32 vector<Stats*>* g_stats;
37 Stats::Stats(const char* name) : name_(name), elapsed_(0), cnt_(0) {
40 g_stats = new vector<Stats*>;
44 void Stats::DumpTop() const {
59 string Stats::String() const {
64 void Stats::Start() {
71 double Stats::End(const char* msg) {
83 ScopedStatsRecorder::ScopedStatsRecorder(Stats* st, const char* msg
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICURWLock.java 44 private Stats stats = null; field in class:ICURWLock
50 public final static class Stats {
76 private Stats() {
79 private Stats(int rc, int mrc, int wrc, int wc, int wwc) {
87 private Stats(Stats rhs) {
92 * Return a string listing all the stats.
105 * Reset the stats. Returns existing stats, if any
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICURWLock.java 42 private Stats stats = null; field in class:ICURWLock
47 public final static class Stats {
73 private Stats() {
76 private Stats(int rc, int mrc, int wrc, int wc, int wwc) {
84 private Stats(Stats rhs) {
89 * Return a string listing all the stats.
102 * Reset the stats. Returns existing stats, if any
    [all...]
  /external/grpc-grpc/src/cpp/util/
core_stats.h 22 #include "src/proto/grpc/core/stats.pb.h"
24 #include "src/core/lib/debug/stats.h"
28 void CoreStatsToProto(const grpc_stats_data& core, grpc::core::Stats* proto);
29 void ProtoToCoreStats(const grpc::core::Stats& proto, grpc_stats_data* core);
  /external/tensorflow/tensorflow/compiler/aot/
benchmark.h 47 // Stats holds statistics collected during benchmarking.
48 struct Stats {
52 Stats() : total_us(0) { per_iter_us.reserve(5000); }
55 // DumpStatsToStdout printfs to stdout stats in a multi-line human-friendly
57 void DumpStatsToStdout(const Stats& stats);
62 // Benchmark runs a benchmark of the function `fn`, collecting stats in `stats`.
64 void Benchmark(const Options& options, const BenchmarkFn& fn, Stats* stats);
    [all...]
benchmark_test.cc 27 // benchmark with max_iters, and ensure we end up with that many iter stats.
33 Stats stats1;
38 Stats stats5;
  /external/llvm/lib/Support/
Statistic.cpp 1 //===-- Statistic.cpp - Easy way to expose stats information --------------===//
12 // printed at the end of a run, when the -stats command line option is enabled
37 /// -stats - Command line option to cause transformations to emit stats about
42 "stats",
46 static cl::opt<bool> StatsAsJSON("stats-json",
54 std::vector<const Statistic*> Stats;
65 Stats.push_back(S);
76 // If stats are enabled, inform StatInfo that this statistic should be
106 std::stable_sort(Stats.begin(), Stats.end()
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/test/
stats.h 46 // Contains calculation methods for interesting metrics from these stats.
47 class Stats {
51 Stats();
52 virtual ~Stats();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Statistic.cpp 1 //===-- Statistic.cpp - Easy way to expose stats information --------------===//
12 // printed at the end of a run, when the -stats command line option is enabled
39 /// -stats - Command line option to cause transformations to emit stats about
42 static cl::opt<bool> Stats(
43 "stats",
47 static cl::opt<bool> StatsAsJSON("stats-json",
61 std::vector<Statistic*> Stats;
76 Stats.push_back(S);
79 const_iterator begin() const { return Stats.begin();
    [all...]
  /external/opencensus-java/api/src/test/java/io/opencensus/stats/
StatsTest.java 17 package io.opencensus.stats;
27 /** Tests for {@link Stats}. */
37 Stats.loadStatsComponent(
56 assertThat(Stats.loadStatsComponent(classLoader).getClass().getName())
57 .isEqualTo("io.opencensus.stats.NoopStats$NoopStatsComponent");
62 assertThat(Stats.getStatsRecorder()).isEqualTo(NoopStats.getNoopStatsRecorder());
63 assertThat(Stats.getViewManager()).isInstanceOf(NoopStats.newNoopViewManager().getClass());
68 assertThat(Stats.getState()).isEqualTo(StatsCollectionState.DISABLED);
74 Stats.setState(StatsCollectionState.ENABLED);
75 assertThat(Stats.getState()).isEqualTo(StatsCollectionState.DISABLED)
    [all...]
  /external/opencensus-java/impl/src/test/java/io/opencensus/impl/stats/
StatsTest.java 17 package io.opencensus.impl.stats;
21 import io.opencensus.implcore.stats.StatsRecorderImpl;
22 import io.opencensus.implcore.stats.ViewManagerImpl;
23 import io.opencensus.stats.Stats;
24 import io.opencensus.stats.StatsComponent;
29 /** Test for accessing the {@link StatsComponent} through the {@link Stats} class. */
34 assertThat(Stats.getStatsRecorder()).isInstanceOf(StatsRecorderImpl.class);
39 assertThat(Stats.getViewManager()).isInstanceOf(ViewManagerImpl.class);
  /external/opencensus-java/impl_lite/src/test/java/io/opencensus/impllite/stats/
StatsTest.java 17 package io.opencensus.impllite.stats;
21 import io.opencensus.implcore.stats.StatsRecorderImpl;
22 import io.opencensus.implcore.stats.ViewManagerImpl;
23 import io.opencensus.stats.Stats;
24 import io.opencensus.stats.StatsComponent;
29 /** Test for accessing the {@link StatsComponent} through the {@link Stats} class. */
34 assertThat(Stats.getStatsRecorder()).isInstanceOf(StatsRecorderImpl.class);
39 assertThat(Stats.getViewManager()).isInstanceOf(ViewManagerImpl.class);
  /art/libartbase/base/
stats.h 27 class Stats {
31 Stats* Child(const char* name) { return &children_[name]; }
32 const std::unordered_map<const char*, Stats>& Children() const { return children_; }
55 std::unordered_map<const char*, Stats> children_;
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core.h 42 typedef struct Stats {
52 } Stats;
94 Stats* erl,
95 Stats* erle,
96 Stats* a_nlp);
  /external/grpc-grpc/src/php/tests/qps/generated_code/GPBMetadata/Src/Proto/Grpc/Testing/
Stats.php 3 # source: src/proto/grpc/testing/stats.proto
7 class Stats
17 \GPBMetadata\Src\Proto\Grpc\Core\Stats::initOnce();
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowStatFs.java 14 * Robolectic doesn't provide actual filesystem stats; rather, it provides the ability to specify
15 * stats values in advance.
22 private static final Stats DEFAULT_STATS = new Stats(0, 0, 0);
23 private static TreeMap<String, Stats> stats = new TreeMap<>(); field in class:ShadowStatFs
24 private Stats stat;
73 Map.Entry<String, Stats> mapEntry = stats.floorEntry(path);
86 mapEntry = stats.lowerEntry(key)
    [all...]
  /external/grpc-grpc-java/benchmarks/src/generated/main/java/io/grpc/benchmarks/proto/
Stats.java 2 // source: grpc/testing/stats.proto
6 public final class Stats {
7 private Stats() {}
172 return io.grpc.benchmarks.proto.Stats.internal_static_grpc_testing_ServerStats_descriptor;
177 return io.grpc.benchmarks.proto.Stats.internal_static_grpc_testing_ServerStats_fieldAccessorTable
179 io.grpc.benchmarks.proto.Stats.ServerStats.class, io.grpc.benchmarks.proto.Stats.ServerStats.Builder.class);
333 if (!(obj instanceof io.grpc.benchmarks.proto.Stats.ServerStats)) {
336 io.grpc.benchmarks.proto.Stats.ServerStats other = (io.grpc.benchmarks.proto.Stats.ServerStats) obj
    [all...]
  /external/opencensus-java/contrib/http_util/src/main/java/io/opencensus/contrib/http/util/
HttpViews.java 21 import io.opencensus.stats.Stats;
22 import io.opencensus.stats.View;
23 import io.opencensus.stats.ViewManager;
53 * <p>It is recommended to call this method before doing any HTTP call to avoid missing stats.
58 registerAllClientViews(Stats.getViewManager());
71 * <p>It is recommended to call this method before doing any HTTP call to avoid missing stats.
76 registerAllServerViews(Stats.getViewManager());
90 * <p>It is recommended to call this method before doing any HTTP call to avoid missing stats.
95 registerAllViews(Stats.getViewManager())
    [all...]
  /external/webrtc/talk/media/webrtc/
fakewebrtccall.h 61 void SetStats(const webrtc::AudioSendStream::Stats& stats);
76 webrtc::AudioSendStream::Stats GetStats() const override;
80 webrtc::AudioSendStream::Stats stats_;
89 void SetStats(const webrtc::AudioReceiveStream::Stats& stats);
108 webrtc::AudioReceiveStream::Stats GetStats() const override;
112 webrtc::AudioReceiveStream::Stats stats_;
134 void SetStats(const webrtc::VideoSendStream::Stats& stats);
    [all...]
  /cts/tests/tests/media/libmediandkjni/
native_media_utils.h 168 struct Stats {
169 Stats() = default;
170 Stats(const Stats&) = delete;
194 * Helpers to validate output (Stats) based on expected settings (RunConfig)
198 static Status checkOverallBitrate(const Stats&, const RunConfig&);
199 static Status checkFramerate(const Stats&, const RunConfig&);
200 static Status checkIntraPeriod(const Stats&, const RunConfig&);
201 static Status checkDynamicKeyFrames(const Stats&, const RunConfig&);
202 static Status checkDynamicBitrate(const Stats&, const RunConfig&)
    [all...]
  /external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Core/
Stats.php 3 # source: src/proto/grpc/core/stats.proto
12 * Generated from protobuf message <code>grpc.core.Stats</code>
14 class Stats extends \Google\Protobuf\Internal\Message
22 \GPBMetadata\Src\Proto\Grpc\Core\Stats::initOnce();
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-exegesis/
BenchmarkResultTest.cpp 124 BenchmarkMeasureStats Stats;
125 Stats.push(BenchmarkMeasure{"a", 0.5, "debug a"});
126 Stats.push(BenchmarkMeasure{"a", 1.5, "debug a"});
127 Stats.push(BenchmarkMeasure{"a", -1.0, "debug a"});
128 Stats.push(BenchmarkMeasure{"a", 0.0, "debug a"});
129 EXPECT_EQ(Stats.min(), -1.0);
130 EXPECT_EQ(Stats.max(), 1.5);
131 EXPECT_EQ(Stats.avg(), 0.25); // (0.5+1.5-1.0+0.0) / 4
  /external/webrtc/webrtc/
audio_send_stream.h 33 struct Stats {
34 // TODO(solenberg): Harmonize naming and defaults with receive stream stats.
95 virtual Stats GetStats() const = 0;

Completed in 3233 milliseconds

1 2 3 4 5 6 7 8 91011