Home
last modified time | relevance | path

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

/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()