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

1 2 3 4 5

  /external/webrtc/webrtc/test/
statistics.cc 10 #include "webrtc/test/statistics.h"
17 Statistics::Statistics() : sum_(0.0), sum_squared_(0.0), count_(0) {}
19 void Statistics::AddSample(double sample) {
25 double Statistics::Mean() const {
31 double Statistics::Variance() const {
37 double Statistics::StandardDeviation() const {
statistics.h 18 class Statistics {
20 Statistics();
  /external/webrtc/webrtc/voice_engine/
statistics.cc 14 #include "webrtc/voice_engine/statistics.h"
23 Statistics::Statistics(uint32_t instanceId) :
31 Statistics::~Statistics()
40 int32_t Statistics::SetInitialized()
46 int32_t Statistics::SetUnInitialized()
52 bool Statistics::Initialized() const
57 int32_t Statistics::SetLastError(int32_t error) const
64 int32_t Statistics::SetLastError(int32_t error
    [all...]
statistics.h 24 class Statistics
29 Statistics(uint32_t instanceId);
30 ~Statistics();
output_mixer.h 32 class Statistics;
42 int32_t SetEngineInformation(Statistics& engineStatistics);
108 Statistics* _engineStatisticsPtr;
shared_data.h 19 #include "webrtc/voice_engine/statistics.h"
38 Statistics& statistics() { return _engineStatistics; } function in class:webrtc::voe::SharedData
58 // Convenience methods for calling statistics().SetLastError().
68 Statistics _engineStatistics;
transmit_mixer.h 37 class Statistics;
47 Statistics& engineStatistics,
192 Statistics* _engineStatisticsPtr;
  /external/icu/icu4j/perf-tests/
Dataset.pm 10 use Statistics::Descriptive;
11 use Statistics::Distributions;
27 my $stats = Statistics::Descriptive::Full->new();
36 my $t = Statistics::Distributions::tdistr($n-1, 0.005);
  /external/icu/icu4c/source/test/perf/perldriver/
Dataset.pm 13 use Statistics::Descriptive;
14 use Statistics::Distributions;
30 my $stats = Statistics::Descriptive::Full->new();
39 my $t = Statistics::Distributions::tdistr($n-1, 0.005);
  /external/icu/icu4j/perf-tests/perldriver/
Dataset.pm 11 use Statistics::Descriptive;
12 use Statistics::Distributions;
28 my $stats = Statistics::Descriptive::Full->new();
37 my $t = Statistics::Distributions::tdistr($n-1, 0.005);
  /frameworks/base/location/java/com/android/internal/location/gnssmetrics/
GnssMetrics.java 42 locationFailureStatistics = new Statistics();
43 timeToFirstFixSecStatistics = new Statistics();
44 positionAccuracyMeterStatistics = new Statistics();
45 topFourAverageCn0Statistics = new Statistics();
200 /** Class for storing statistics */
201 private class Statistics {
203 /** Resets statistics */
243 /** Location failure statistics */
244 private Statistics locationFailureStatistics;
246 /** Time to first fix statistics */
    [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");
DexFile.java 586 * Generates and returns statistics for all the items in the file.
588 * @return {@code non-null;} the statistics
590 public Statistics getStatistics() {
591 Statistics stats = new Statistics();
  /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");
DexFile.java 691 * Generates and returns statistics for all the items in the file.
693 * @return {@code non-null;} the statistics
695 public Statistics getStatistics() {
696 Statistics stats = new Statistics();
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/
SnpDxe.inf 46 Statistics.c
  /frameworks/av/services/mediaanalytics/
Android.mk 1 # Media Statistics service
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iphlpapi.h 56 ULONG WINAPI GetIpStatistics (PMIB_IPSTATS Statistics);
57 ULONG WINAPI GetIcmpStatistics (PMIB_ICMP Statistics);
58 ULONG WINAPI GetTcpStatistics (PMIB_TCPSTATS Statistics);
60 ULONG WINAPI GetIpStatisticsEx (PMIB_IPSTATS Statistics, ULONG Family);
61 ULONG WINAPI SetIpStatisticsEx (PMIB_IPSTATS Statistics, ULONG Family);
62 ULONG WINAPI GetIcmpStatisticsEx (PMIB_ICMP_EX Statistics, ULONG Family);
63 ULONG WINAPI GetTcpStatisticsEx (PMIB_TCPSTATS Statistics, ULONG Family);
64 ULONG WINAPI GetUdpStatisticsEx (PMIB_UDPSTATS Statistics, ULONG Family);
  /cts/tests/tests/media/src/android/media/cts/
AudioTrack_ListenerTest.java 177 // collect statistics
189 AudioHelper.Statistics markerStat = new AudioHelper.Statistics();
199 AudioHelper.Statistics periodicStat = new AudioHelper.Statistics();
  /external/autotest/site_utils/bootperf-bin/
perfprinter.py 76 (valueavg, valuedev) = keyset.Statistics(stat)
  /packages/apps/Email/provider_src/com/android/email/provider/
ContentCache.java 111 // Cache statistics
112 private final Statistics mStats;
427 mStats = new Statistics(this);
518 // Every 200 calls to getCursor, report cache statistics
733 static class Statistics {
737 // Cache statistics
751 // The following are for timing statistics
761 Statistics(ContentCache cache) {
766 Statistics(String name) {
812 Statistics totals = new Statistics("Totals")
    [all...]
  /external/webrtc/webrtc/video/
video_quality_test.cc 32 #include "webrtc/test/statistics.h"
509 test::Statistics stats,
569 test::Statistics sender_time_ GUARDED_BY(comparison_lock_);
570 test::Statistics receiver_time_ GUARDED_BY(comparison_lock_);
571 test::Statistics psnr_ GUARDED_BY(comparison_lock_);
572 test::Statistics ssim_ GUARDED_BY(comparison_lock_);
573 test::Statistics end_to_end_ GUARDED_BY(comparison_lock_);
574 test::Statistics rendered_delta_ GUARDED_BY(comparison_lock_);
575 test::Statistics encoded_frame_size_ GUARDED_BY(comparison_lock_);
576 test::Statistics encode_frame_rate_ GUARDED_BY(comparison_lock_)
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
EapManagement.h 118 /// Supplicant Statistics (IEEE Std 802.1X Section 9.5.2)
361 Statistics regarding the operation of the Supplicant associated with the Port.
363 If Statistics is NULL, then EFI_INVALID_PARAMETER is returned.
367 @param[out] Statistics Returns the statistical information regarding the
372 @retval EFI_INVALID_PARAMETER Statistics is NULL.
379 OUT EFI_EAPOL_SUPPLICANT_PAE_STATISTICS *Statistics
  /device/linaro/bootloader/edk2/EmulatorPkg/Include/Protocol/
EmuSnp.h 218 Resets or collects the statistics on a network interface.
221 @param Reset Set to TRUE to reset the statistics for the network interface.
224 statistics.
226 contains the statistics.
228 @retval EFI_SUCCESS The statistics were collected from the network interface.
230 @retval EFI_BUFFER_TOO_SMALL The Statistics buffer was too small. The current buffer
231 size needed to hold the statistics is returned in
260 @retval EFI_BUFFER_TOO_SMALL The Statistics buffer was too small. The current buffer
261 size needed to hold the statistics is returned in
449 EMU_SNP_STATISTICS Statistics;
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/Lan9118Dxe/
Lan9118Dxe.c 86 Snp->Statistics = SnpStatistics;
806 * UEFI Statistics() function
815 OUT EFI_NETWORK_STATISTICS *Statistics
841 // whether the reset has to be done before to copy the statistics in "Statictics"
843 // the SCT test on Statistics() with reset : "0x3de76704,0x4bf5,0x42cd,0x8c,0x89,
852 if (Statistics != NULL) {
856 if (Statistics == NULL) {
859 // Fill in the statistics
861 Statistics, &LanDriver->Stats,
    [all...]

Completed in 1558 milliseconds

1 2 3 4 5