HomeSort by relevance Sort by last modified time
    Searched full:statistics (Results 76 - 100 of 5292) sorted by null

1 2 34 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/dex/cf/
CfOptions.java 44 /** whether to print statistics to stdout at end of compile cycle */
45 public boolean statistics; field in class:CfOptions
  /external/chromium_org/chrome/browser/ui/webui/quota_internals/
quota_internals_handler.h 27 typedef std::map<std::string, std::string> Statistics;
42 void ReportStatistics(const Statistics& stats);
  /external/chromium_org/remoting/client/
server_log_entry_client.cc 25 const char kValueEventNameStatistics[] = "connection-statistics";
111 ChromotingStats* statistics) {
117 StringPrintf("%.2f", statistics->video_bandwidth()->Rate()));
119 StringPrintf("%.2f", statistics->video_capture_ms()->Average()));
121 StringPrintf("%.2f", statistics->video_encode_ms()->Average()));
123 StringPrintf("%.2f", statistics->video_decode_ms()->Average()));
125 StringPrintf("%.2f", statistics->video_frame_rate()->Rate()));
127 StringPrintf("%.2f", statistics->round_trip_ms()->Average()));
server_log_entry_client.h 22 // Constructs a log entry for reporting statistics.
24 ChromotingStats* statistics);
  /external/chromium_org/storage/browser/quota/
quota_temporary_storage_evictor.cc 63 std::map<std::string, int64>* statistics) {
64 DCHECK(statistics);
66 (*statistics)["errors-on-evicting-origin"] =
68 (*statistics)["errors-on-getting-usage-and-quota"] =
70 (*statistics)["evicted-origins"] =
72 (*statistics)["eviction-rounds"] =
74 (*statistics)["skipped-eviction-rounds"] =
100 Statistics stats_in_hour(statistics_);
  /external/iproute2/doc/
rtstat.sgml 15 The kernel patch (not required since linux-2.4.7) adds statistics counters
17 /proc/net/rt_cache_stat. A companion user mode program presents the statistics
  /external/kernel-headers/original/uapi/linux/
atm_zatm.h 19 /* get pool statistics */
21 /* get statistics and zero */
gen_stats.h 18 * struct gnet_stats_basic - byte/packet throughput statistics
52 * struct gnet_stats_queue - queuing statistics
ppp_defs.h 87 * Statistics for LQRP and pppstats
132 struct pppstat p; /* basic PPP statistics */
133 struct vjstat vj; /* VJ header compression statistics */
137 struct compstat c; /* packet compression statistics */
138 struct compstat d; /* packet decompression statistics */
  /external/oprofile/daemon/
opd_extended.h 40 // Extended statistics
73 * Print out extended feature statistics in oprofiled.log file
  /frameworks/base/core/java/android/net/
INetworkStatsService.aidl 27 /** Start a statistics query session. */
46 /** Force update of statistics. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
atm_zatm.h 19 /* get pool statistics */
21 /* get statistics and zero */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
atm_zatm.h 19 /* get pool statistics */
21 /* get statistics and zero */
  /external/chromium_org/third_party/WebKit/PerformanceTests/resources/
runner.js 86 var statistics = this.computeStatistics(values, unit);
89 if (statistics.values)
90 this.log("values " + statistics.values.join(", ") + " " + statistics.unit);
91 this.log("avg " + statistics.mean + " " + statistics.unit);
92 this.log("median " + statistics.median + " " + statistics.unit);
93 this.log("stdev " + statistics.stdev + " " + statistics.unit)
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/
voe_rtp_rtcp_impl.cc 57 if (!_shared->statistics().Initialized())
77 if (!_shared->statistics().Initialized())
97 if (!_shared->statistics().Initialized())
120 if (!_shared->statistics().Initialized())
153 if (!_shared->statistics().Initialized()) {
183 if (!_shared->statistics().Initialized()) {
212 if (!_shared->statistics().Initialized()) {
239 if (!_shared->statistics().Initialized())
259 if (!_shared->statistics().Initialized())
279 if (!_shared->statistics().Initialized()
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
vendor_definitions.h 22 /* subcommands for link layer statistics start here */
67 /* Unsigned 32bit bitmap for clearing statistics
68 * All radio statistics 0x00000001
69 * cca_busy_time (within radio statistics) 0x00000002
70 * All channel stats (within radio statistics) 0x00000004
71 * All scan statistics (within radio statistics) 0x00000008
72 * All interface statistics 0x00000010
73 * All tx rate statistics (within interface statistics) 0x0000002
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
receive_statistics_unittest.cc 142 virtual void StatisticsUpdated(const RtcpStatistics& statistics,
145 stats_ = statistics;
178 RtcpStatistics statistics; local
180 ->GetStatistics(&statistics, true);
184 EXPECT_EQ(statistics.cumulative_lost, callback.stats_.cumulative_lost);
185 EXPECT_EQ(statistics.extended_max_sequence_number,
187 EXPECT_EQ(statistics.fraction_lost, callback.stats_.fraction_lost);
188 EXPECT_EQ(statistics.jitter, callback.stats_.jitter);
189 EXPECT_EQ(51, statistics.fraction_lost);
190 EXPECT_EQ(1u, statistics.cumulative_lost)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Statistics.java 26 * Statistics about the contents of a file.
28 public final class Statistics {
35 public Statistics() {
40 * Adds the given item to the statistics.
56 * Adds the given list of items to the statistics.
68 * Writes the statistics as an annotation.
93 sb.append("Statistics:\n");
  /dalvik/dx/src/com/android/dx/dex/file/
Statistics.java 25 * Statistics about the contents of a file.
27 public final class Statistics {
34 public Statistics() {
39 * Adds the given item to the statistics.
55 * Adds the given list of items to the statistics.
67 * Writes the statistics as an annotation.
92 sb.append("Statistics:\n");
  /developers/build/prebuilts/gradle/AppUsageStatistics/
README.md 4 A basic app showing how to use App usage statistics API to let users collect statistics related
10 The [App usage statistics][1] API allows app developers to collect statistics related to usage of
14 This example illustrates how to use the App usage statistics API by showing the applications sorted
21 To collect the statistics of the app usage, you need to first get the instance of
29 Then you can retrieve the statistics of the app usage by the following method:
  /external/chromium-trace/trace-viewer/src/tracing/analysis/
analyze_slices.js 97 var statistics = {min: min,
108 statistics.avg - sliceHitGroup.hits[i].slice.duration;
112 statistics.avg_stddev = Math.sqrt(
119 statistics.frequency = (1000 * numDistances) / elapsed;
127 var signedDistance = statistics.frequency - currentFrequency;
131 statistics.frequency_stddev = Math.sqrt(
136 statistics,
  /external/chromium_org/chrome/browser/chromeos/memory/
oom_priority_manager.h 60 // Log memory statistics for the running processes, then discards a tab.
61 // Tab discard happens sometime later, as collecting the statistics touches
94 // Records UMA histogram statistics for a tab discard. We record statistics
100 // This allows us to normalize low memory statistics versus usage.
162 // Number of times we have discarded a tab, for statistics.
166 // used for statistics normalized by usage.
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Statistics.java 26 * Statistics about the contents of a file.
28 public final class Statistics {
35 public Statistics() {
40 * Adds the given item to the statistics.
56 * Adds the given list of items to the statistics.
68 * Writes the statistics as an annotation.
93 sb.append("Statistics:\n");
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_rt.h 38 /* statistics */
56 /* statistics:
58 tn, tx, txx: temporal statistics (for grandularity)
59 tn0: tn in the last temporal statistics phase (since the last executing phase)
62 an, ax, axx: average temporal statistics - yields stdev */
79 /* statistics: this is real-time in nature, so no "buffering" is performed.
80 therefore, no need for temporal statistics
  /external/chromium_org/remoting/webapp/
log_to_server.js 41 // The time over which to accumulate connection statistics before logging them
81 // Don't accumulate connection statistics across state changes.
135 * Logs connection statistics.
136 * @param {Object.<string, number>} stats the connection statistics
141 // Store the statistics.
143 // Send statistics to the server if they've been accumulating for at least
152 * Moves connection statistics from the accumulator to the log server.
154 * If all the statistics are zero, then the accumulator is still emptied,
155 * but the statistics are not sent to the log server.

Completed in 2375 milliseconds

1 2 34 5 6 7 8 91011>>