HomeSort by relevance Sort by last modified time
    Searched refs:max_buckets (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/libvpx/source/libvpx/
rate_hist.h 31 void show_q_histogram(const int counts[64], int max_buckets);
34 int max_buckets);
rate_hist.c 121 int max_buckets, int *num_buckets) {
138 while (buckets > max_buckets) {
247 void show_q_histogram(const int counts[64], int max_buckets) {
264 scale = merge_hist_buckets(bucket, max_buckets, &buckets);
269 const vpx_codec_enc_cfg_t *cfg, int max_buckets) {
280 scale = merge_hist_buckets(hist->bucket, max_buckets, &buckets);
  /external/libvpx/libvpx/
rate_hist.h 31 void show_q_histogram(const int counts[64], int max_buckets);
34 int max_buckets);
rate_hist.c 121 int max_buckets, int *num_buckets) {
138 while (buckets > max_buckets) {
247 void show_q_histogram(const int counts[64], int max_buckets) {
264 scale = merge_hist_buckets(bucket, max_buckets, &buckets);
269 const vpx_codec_enc_cfg_t *cfg, int max_buckets) {
280 scale = merge_hist_buckets(hist->bucket, max_buckets, &buckets);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
rate_hist.h 31 void show_q_histogram(const int counts[64], int max_buckets);
34 int max_buckets);
rate_hist.c 121 int max_buckets, int *num_buckets) {
138 while (buckets > max_buckets) {
247 void show_q_histogram(const int counts[64], int max_buckets) {
264 scale = merge_hist_buckets(bucket, max_buckets, &buckets);
269 const vpx_codec_enc_cfg_t *cfg, int max_buckets) {
280 scale = merge_hist_buckets(hist->bucket, max_buckets, &buckets);
  /external/qemu/android/utils/
refset.c 33 unsigned index = hash & (s->max_buckets-1);
42 if (index >= s->max_buckets)
43 index -= s->max_buckets;
51 unsigned index = hash & (s->max_buckets-1);
65 index = (index + AREFSET_STEP) & (s->max_buckets-1);
74 if (item == NULL || s->max_buckets == 0)
92 for (nn = 0; nn < s->max_buckets; nn++) {
103 s->max_buckets = newSet.max_buckets;
117 if (s->max_buckets == 0
    [all...]
refset.h 65 int __refset_max = (_set)->max_buckets; \
  /art/runtime/base/
histogram.h 47 Histogram(const char* name, Value initial_bucket_width, size_t max_buckets = 100);
histogram-inl.h 51 size_t max_buckets)
55 max_buckets_(max_buckets),
timing_logger.cc 99 const size_t max_buckets = Runtime::Current()->GetHeap()->IsLowMemoryMode() ? local
101 histogram = new Histogram<uint64_t>(label.c_str(), kInitialBucketSize, max_buckets);

Completed in 194 milliseconds