Home
last modified time | relevance | path

Searched defs:sample (Results 1 – 25 of 387) sorted by relevance

12345678910>>...16

/external/webrtc/webrtc/system_wrappers/include/
Dmetrics.h65 #define RTC_HISTOGRAM_COUNTS_100(name, sample) \ argument
68 #define RTC_HISTOGRAM_COUNTS_200(name, sample) \ argument
71 #define RTC_HISTOGRAM_COUNTS_1000(name, sample) \ argument
74 #define RTC_HISTOGRAM_COUNTS_10000(name, sample) \ argument
77 #define RTC_HISTOGRAM_COUNTS_100000(name, sample) \ argument
80 #define RTC_HISTOGRAM_COUNTS(name, sample, min, max, bucket_count) \ argument
86 #define RTC_HISTOGRAM_COUNTS_SPARSE_100(name, sample) \ argument
89 #define RTC_HISTOGRAM_COUNTS_SPARSE_200(name, sample) \ argument
92 #define RTC_HISTOGRAM_COUNTS_SPARSE_1000(name, sample) \ argument
95 #define RTC_HISTOGRAM_COUNTS_SPARSE_10000(name, sample) \ argument
[all …]
/external/libchrome/base/metrics/
Dhistogram_functions.cc14 void UmaHistogramBoolean(const std::string& name, bool sample) { in UmaHistogramBoolean()
21 int sample, in UmaHistogramExactLinear()
34 int sample, in UmaHistogramCustomCounts()
43 void UmaHistogramCounts100(const std::string& name, int sample) { in UmaHistogramCounts100()
47 void UmaHistogramCounts1000(const std::string& name, int sample) { in UmaHistogramCounts1000()
51 void UmaHistogramCounts10000(const std::string& name, int sample) { in UmaHistogramCounts10000()
55 void UmaHistogramCounts100000(const std::string& name, int sample) { in UmaHistogramCounts100000()
59 void UmaHistogramCounts1M(const std::string& name, int sample) { in UmaHistogramCounts1M()
63 void UmaHistogramCounts10M(const std::string& name, int sample) { in UmaHistogramCounts10M()
68 TimeDelta sample, in UmaHistogramCustomTimes()
[all …]
Dhistogram_macros.h89 #define UMA_HISTOGRAM_SCALED_ENUMERATION(name, sample, count, scale) \ argument
98 #define UMA_HISTOGRAM_BOOLEAN(name, sample) \ argument
115 #define UMA_HISTOGRAM_EXACT_LINEAR(name, sample, value_max) \ argument
134 #define UMA_HISTOGRAM_SCALED_EXACT_LINEAR(name, sample, count, value_max, \ argument
160 #define UMA_HISTOGRAM_COUNTS_100(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
163 #define UMA_HISTOGRAM_COUNTS_1000(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
166 #define UMA_HISTOGRAM_COUNTS_10000(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
169 #define UMA_HISTOGRAM_COUNTS_100000(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
172 #define UMA_HISTOGRAM_COUNTS_1M(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
175 #define UMA_HISTOGRAM_COUNTS_10M(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ argument
[all …]
Dhistogram_macros_local.h27 #define LOCAL_HISTOGRAM_BOOLEAN(name, sample) \ argument
44 #define LOCAL_HISTOGRAM_COUNTS_100(name, sample) \ argument
47 #define LOCAL_HISTOGRAM_COUNTS_10000(name, sample) \ argument
50 #define LOCAL_HISTOGRAM_COUNTS_1000000(name, sample) \ argument
53 #define LOCAL_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \ argument
63 #define LOCAL_HISTOGRAM_TIMES(name, sample) LOCAL_HISTOGRAM_CUSTOM_TIMES( \ argument
67 #define LOCAL_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \ argument
78 #define LOCAL_HISTOGRAM_MEMORY_KB(name, sample) LOCAL_HISTOGRAM_CUSTOM_COUNTS( \ argument
87 #define LOCAL_HISTOGRAM_COUNTS(name, sample) \ argument
Dhistogram_samples_unittest.cc18 AtomicSingleSample sample; in TEST() local
31 AtomicSingleSample sample; in TEST() local
44 AtomicSingleSample sample; in TEST() local
58 AtomicSingleSample sample; in TEST() local
72 AtomicSingleSample sample; in TEST() local
Dhistogram_functions.h53 void UmaHistogramEnumeration(const std::string& name, T sample, T enum_size) { in UmaHistogramEnumeration()
65 void UmaHistogramEnumeration(const std::string& name, T sample) { in UmaHistogramEnumeration()
/external/guava/guava-tests/test/com/google/common/base/
DThrowablesTest.java38 Sample sample = new Sample() { in testPropagateIfPossible_NoneDeclared_NoneThrown() local
54 Sample sample = new Sample() { in testPropagateIfPossible_NoneDeclared_UncheckedThrown() local
74 Sample sample = new Sample() { in testPropagateIfPossible_NoneDeclared_UndeclaredThrown() local
95 Sample sample = new Sample() { in testPropagateIfPossible_OneDeclared_NoneThrown() local
114 Sample sample = new Sample() { in testPropagateIfPossible_OneDeclared_UncheckedThrown() local
134 Sample sample = new Sample() { in testPropagateIfPossible_OneDeclared_CheckedThrown() local
155 Sample sample = new Sample() { in testPropagateIfPossible_OneDeclared_UndeclaredThrown() local
176 Sample sample = new Sample() { in testPropagateIfPossible_TwoDeclared_NoneThrown() local
195 Sample sample = new Sample() { in testPropagateIfPossible_TwoDeclared_UncheckedThrown() local
218 Sample sample = new Sample() { in testPropagateIfPossible_TwoDeclared_CheckedThrown() local
[all …]
/external/opencensus-java/contrib/spring/src/test/java/io/opencensus/contrib/spring/aop/
DCensusSpringAspectTest.java83 Sample sample = (Sample) context.getBean("sample"); in tracedUsesMethodAsSpanName() local
96 Sample sample = (Sample) context.getBean("sample"); in tracedAcceptsCustomSpanName() local
109 Sample sample = (Sample) context.getBean("sample"); in handlesException() local
137 Sample sample = (Sample) context.getBean("sample"); in sqlExecute() local
155 Sample sample = (Sample) context.getBean("sample"); in sqlQuery() local
174 Sample sample = (Sample) context.getBean("sample"); in sqlUpdate() local
/external/adhd/cras/src/common/
Dcras_metrics.c24 void cras_metrics_log_histogram(const char *name, int sample, int min, in cras_metrics_log_histogram()
36 void cras_metrics_log_sparse_histogram(const char *name, int sample) in cras_metrics_log_sparse_histogram()
51 void cras_metrics_log_histogram(const char *name, int sample, int min, in cras_metrics_log_histogram()
55 void cras_metrics_log_enum_histogram(const char *name, int sample, int max) in cras_metrics_log_enum_histogram()
58 void cras_metrics_log_sparse_histogram(const char *name, int sample) in cras_metrics_log_sparse_histogram()
/external/perf_data_converter/src/quipper/
Dsample_info_reader.cc44 struct perf_sample* sample) { in ReadReadInfo()
56 struct perf_sample* sample) { in ReadGroupReadInfo()
78 void ReadCallchain(DataReader* reader, struct perf_sample* sample) { in ReadCallchain()
99 void ReadRawData(DataReader* reader, struct perf_sample* sample) { in ReadRawData()
116 void ReadBranchStack(DataReader* reader, struct perf_sample* sample) { in ReadBranchStack()
151 struct perf_sample* sample) { in ReadPerfSampleFromData()
329 size_t WritePerfSampleToData(const struct perf_sample& sample, in WritePerfSampleToData()
537 bool SampleInfoReader::WritePerfSampleInfo(const perf_sample& sample, in WritePerfSampleInfo()
Dsample_info_reader_test.cc67 perf_sample sample; in TEST() local
127 perf_sample sample; in TEST() local
201 perf_sample sample; in TEST() local
252 perf_sample sample; in TEST() local
294 perf_sample sample; in TEST() local
333 perf_sample sample; in TEST() local
377 perf_sample sample; in TEST() local
/external/aac/libPCMutils/src/
Dpcm_utils.cpp112 for (UINT sample = 0; sample < length; sample++) { in FDK_interleave() local
124 for (UINT sample = 0; sample < length; sample++) { in FDK_interleave() local
136 for (UINT sample = 0; sample < length; sample++) { in FDK_interleave() local
151 for (UINT sample = 0; sample < frameSize; sample++) { in FDK_deinterleave() local
164 for (UINT sample = 0; sample < frameSize; sample++) { in FDK_deinterleave() local
177 for (UINT sample = 0; sample < frameSize; sample++) { in FDK_deinterleave() local
190 for (UINT sample = 0; sample < frameSize; sample++) { in FDK_deinterleave() local
/external/strace/tests/
Dfstatat.c31 # define TEST_SYSCALL_INVOKE(sample, pst) \ argument
33 # define PRINT_SYSCALL_HEADER(sample) \ argument
Dlstatx.c29 #define TEST_SYSCALL_INVOKE(sample, pst) \ argument
31 #define PRINT_SYSCALL_HEADER(sample) \ argument
Dfstatx.c30 #define TEST_SYSCALL_INVOKE(sample, pst) \ argument
32 #define PRINT_SYSCALL_HEADER(sample) \ argument
/external/strace/tests-m32/
Dfstatat.c31 # define TEST_SYSCALL_INVOKE(sample, pst) \ argument
33 # define PRINT_SYSCALL_HEADER(sample) \ argument
Dlstatx.c29 #define TEST_SYSCALL_INVOKE(sample, pst) \ argument
31 #define PRINT_SYSCALL_HEADER(sample) \ argument
Dfstatx.c30 #define TEST_SYSCALL_INVOKE(sample, pst) \ argument
32 #define PRINT_SYSCALL_HEADER(sample) \ argument
/external/strace/tests-mx32/
Dlstatx.c29 #define TEST_SYSCALL_INVOKE(sample, pst) \ argument
31 #define PRINT_SYSCALL_HEADER(sample) \ argument
Dfstatat.c31 # define TEST_SYSCALL_INVOKE(sample, pst) \ argument
33 # define PRINT_SYSCALL_HEADER(sample) \ argument
Dfstatx.c30 #define TEST_SYSCALL_INVOKE(sample, pst) \ argument
32 #define PRINT_SYSCALL_HEADER(sample) \ argument
/external/libchrome/base/test/metrics/
Dhistogram_tester.cc34 HistogramBase::Sample sample, in ExpectUniqueSample()
49 HistogramBase::Sample sample, in ExpectBucketCount()
74 TimeDelta sample, in ExpectTimeBucketCount()
86 HistogramBase::Sample sample; in GetAllSamples() local
111 HistogramBase::Sample sample, in GetBucketCountForSamples()
196 HistogramBase::Sample sample, in CheckBucketCount()
/external/libvpx/libvpx/third_party/libyuv/source/
Dmjpeg_validate.cc21 static LIBYUV_BOOL ScanEOI(const uint8_t* sample, size_t sample_size) { in ScanEOI()
42 LIBYUV_BOOL ValidateJpeg(const uint8_t* sample, size_t sample_size) { in ValidateJpeg()
/external/libyuv/files/source/
Dmjpeg_validate.cc21 static LIBYUV_BOOL ScanEOI(const uint8* sample, size_t sample_size) { in ScanEOI()
42 LIBYUV_BOOL ValidateJpeg(const uint8* sample, size_t sample_size) { in ValidateJpeg()
/external/libaom/libaom/third_party/libyuv/source/
Dmjpeg_validate.cc49 static LIBYUV_BOOL ScanEOI(const uint8* sample, size_t sample_size) { in ScanEOI()
71 LIBYUV_BOOL ValidateJpeg(const uint8* sample, size_t sample_size) { in ValidateJpeg()

12345678910>>...16