Home
last modified time | relevance | path

Searched refs:sample_count (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tests/JankBench/scripts/
Ditr_collect.py91 sample_count = 0
95 sample_count = len(res.durations)
112 per_test_sample_count[test].append(int(sample_count))
116 print "\t%s:\t%0.2f (%0.2f avg. sample count)" % (test, geo_run, sample_count)
118 print "\tOverall:\t%0.2f (%0.2f avg. sample count)" % (geo_run, sample_count)
Dcollect.py129 sample_count = 0
136 sample_count += len(res.durations)
162 sample_count /= len(scoremap[run_id][test])
165 per_test_sample_count[test].append(int(sample_count))
169 print "\t%s:\t%0.2f (%0.2f avg. sample count)" % (test, geo_run, sample_count)
171 print "\tOverall:\t%0.2f (%0.2f avg. sample count)" % (geo_run, sample_count)
/frameworks/native/libs/vr/libpdx_default_transport/
Dpdx_benchmarks.cpp932 uint64_t sample_count = 0; in ClientCommand() local
942 if (sample_count < percent_50 && in ClientCommand()
943 (sample_count + sample_buckets[i]) >= percent_50) { in ClientCommand()
946 if (sample_count < percent_90 && in ClientCommand()
947 (sample_count + sample_buckets[i]) >= percent_90) { in ClientCommand()
950 if (sample_count < percent_95 && in ClientCommand()
951 (sample_count + sample_buckets[i]) >= percent_95) { in ClientCommand()
954 if (sample_count < percent_99 && in ClientCommand()
955 (sample_count + sample_buckets[i]) >= percent_99) { in ClientCommand()
958 sample_count += sample_buckets[i]; in ClientCommand()