Home
last modified time | relevance | path

Searched refs:Gauge (Results 1 – 25 of 31) sorted by relevance

12

/external/v8/src/arm64/
Dinstrument-arm64.cc41 if (type_ == Gauge) { in count()
67 {"Move Immediate", Gauge},
68 {"Add/Sub DP", Gauge},
69 {"Logical DP", Gauge},
70 {"Other Int DP", Gauge},
71 {"FP DP", Gauge},
72 {"NEON", Gauge},
74 {"Conditional Select", Gauge},
75 {"Conditional Compare", Gauge},
77 {"Unconditional Branch", Gauge},
[all …]
Dinstrument-arm64.h28 Gauge = 0, // Gauge counters reset themselves after reading. enumerator
35 explicit Counter(const char* name, CounterType type = Gauge);
/external/tensorflow/tensorflow/core/lib/monitoring/
Dmobile_gauge.h44 class Gauge {
46 ~Gauge() {} in ~Gauge()
49 static Gauge* New(MetricDefArgs&&... metric_def_args) { in New()
53 return new Gauge(); in New()
62 Gauge() {} in Gauge() function
66 TF_DISALLOW_COPY_AND_ASSIGN(Gauge);
Dgauge.h124 class Gauge {
126 ~Gauge() { in ~Gauge()
145 static Gauge* New(MetricDefArgs&&... metric_def_args);
153 explicit Gauge( in Gauge() function
177 TF_DISALLOW_COPY_AND_ASSIGN(Gauge);
205 Gauge<ValueType, NumLabels>* Gauge<ValueType, NumLabels>::New( in New()
211 return new Gauge<ValueType, NumLabels>( in New()
218 GaugeCell<ValueType>* Gauge<ValueType, NumLabels>::GetCell( in GetCell()
Dgauge_test.cc24 auto* gauge_with_labels = Gauge<int64, 1>::New(
46 auto* gauge_without_labels = Gauge<int64, 0>::New(
68 auto* string_gauge = Gauge<string, 0>::New("/tensorflow/test/string_gauge",
91 Gauge<bool, 0>::New("/tensorflow/test/bool_gauge", "Gauge of bool value.");
Dcollection_registry_test.cc172 TEST(CollectMetricsTest, Gauge) { in TEST() argument
174 std::unique_ptr<Gauge<string, 2>>(Gauge<string, 2>::New( in TEST()
177 auto inteter_gauge_without_labels = std::unique_ptr<Gauge<int64, 0>>( in TEST()
178 Gauge<int64, 0>::New("/tensorflow/test/integer_gauge_without_labels", in TEST()
/external/vixl/src/aarch64/
Dinstrument-aarch64.cc60 if (type_ == Gauge) { in GetCount()
83 {"Move Immediate", Gauge},
84 {"Add/Sub DP", Gauge},
85 {"Logical DP", Gauge},
86 {"Other Int DP", Gauge},
87 {"FP DP", Gauge},
89 {"Conditional Select", Gauge},
90 {"Conditional Compare", Gauge},
92 {"Unconditional Branch", Gauge},
93 {"Compare and Branch", Gauge},
[all …]
Dinstrument-aarch64.h48 Gauge = 0, // Gauge counters reset themselves after reading. enumerator
55 explicit Counter(const char* name, CounterType type = Gauge);
/external/opencensus-java/contrib/dropwizard/src/test/java/io/opencensus/contrib/dropwizard/
DDropWizardMetricsTest.java23 import com.codahale.metrics.Gauge;
67 Gauge<Integer> integerGauge = in collect()
68 new Gauge<Integer>() { in collect()
76 Gauge<Double> doubleGauge = in collect()
77 new Gauge<Double>() { in collect()
85 Gauge<Long> longGauge = in collect()
86 new Gauge<Long>() { in collect()
94 Gauge<Float> floatGauge = in collect()
95 new Gauge<Float>() { in collect()
103 Gauge<Boolean> boolGauge = in collect()
[all …]
/external/autotest/scheduler/shard/
Dshard_client.py173 metrics.Gauge('chromeos/autotest/shard_client/hosts_received'
175 metrics.Gauge('chromeos/autotest/shard_client/jobs_received'
177 metrics.Gauge('chromeos/autotest/shard_client/suite_keyvals_received'
358 metrics.Gauge(_METRICS_PREFIX + 'known_job_ids_count').set(
360 metrics.Gauge(_METRICS_PREFIX + 'jobs_upload_count').set(
362 metrics.Gauge(_METRICS_PREFIX + 'known_host_ids_count').set(
387 metrics.Gauge(_METRICS_PREFIX + 'request_size').set(
414 metrics.Gauge(_METRICS_PREFIX + 'response_size').set(
/external/autotest/site_utils/stats/
Dmysql_stats.py130 metrics.Gauge(metric_name).set(GetStatus(conn, status))
135 metrics.Gauge('chromeos/autotest/afe_db/buffer_pool_pages').set(
138 metrics.Gauge('chromeos/autotest/afe_db/buffer_pool_pages').set(
/external/python/pyasn1-modules/pyasn1_modules/
Drfc1155.py58 class Gauge(univ.Integer): class
86 namedtype.NamedType('gauge', Gauge()),
/external/autotest/site_utils/
Dlabel_cleaner.py188 metrics.Gauge(_METRICS_PREFIX + '/total_labels_count').set(
200 metrics.Gauge(_METRICS_PREFIX + '/total_labels_count').set(
210 metrics.Gauge(_METRICS_PREFIX + '/used_labels_count').set(
Dcheck_hung_proc.py50 metrics.Gauge('chromeos/autotest/hung_processes').set(
Dcount_jobs.py43 metrics.Gauge('chromeos/autotest/experimental/jobs_rate/afe_daily_count').set(count)
Ddut_mon.py84 dut_count = metrics.Gauge('chromeos/autotest/dut_mon/dut_count',
/external/opencensus-java/contrib/dropwizard/src/main/java/io/opencensus/contrib/dropwizard/
DDropWizardMetrics.java20 import com.codahale.metrics.Gauge;
84 private @Nullable Metric collectGauge(String dropwizardName, Gauge gauge) { in collectGauge()
247 for (Entry<String, Gauge> gaugeEntry : metricRegistry.getGauges().entrySet()) { in getMetrics()
/external/grpc-grpc/src/ruby/stress/
Dmetrics_server.rb18 class Gauge class
Dstress_client.rb23 class QpsGauge < Gauge
/external/grpc-grpc/src/proto/grpc/testing/
Dmetrics.proto18 // Currently, 'Gauge' (i.e a metric that represents the measured value of
/external/autotest/scheduler/
Dmonitor_db.py432 metrics.Gauge(
596 metrics.Gauge(
723 metrics.Gauge(m).set(len(orphans))
951 metrics.Gauge(
1229 metrics.Gauge(
Dpostjob_task.py129 m = metrics.Gauge('chromeos/autotest/scheduler/postjob_tasks')
/external/grpc-grpc-java/interop-testing/src/main/proto/grpc/testing/
Dmetrics.proto17 // Currently, 'Gauge' (i.e a metric that represents the measured value of
/external/opencensus-java/contrib/dropwizard/
DREADME.md78 Given a DropWizard Gauge with name `line_requests`, the following values are reported:
/external/u-boot/drivers/power/pmic/
DKconfig85 This is a Power Management IC with RTC, Fuel Gauge, MUIC control on Chip.
90 - Fueal Gauge and One backup battery charger

12