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

  /frameworks/rs/
rsMap.h 91 while (++bucket_index < MAP_NUM_BUCKET) {
92 next = map->bucket[bucket_index];
104 return node == other.node && bucket_index == other.bucket_index &&
109 return node != other.node || bucket_index != other.bucket_index ||
118 iterator(size_t index, LinkNode* n, const Map* m) : bucket_index(index), node(n), map(m) {}
121 size_t bucket_index; member in class:android::renderscript::Map::iterator
  /system/core/metricsd/uploader/proto/
histogram_event.proto 53 optional int32 bucket_index = 3 [deprecated = true];
  /external/webrtc/webrtc/base/
ratetracker.h 56 size_t NextBucketIndex(size_t bucket_index) const;
ratetracker.cc 144 size_t RateTracker::NextBucketIndex(size_t bucket_index) const {
145 return (bucket_index + 1u) % (bucket_count_ + 1u);
  /external/libchrome/base/metrics/
sample_vector.cc 43 size_t bucket_index = GetBucketIndex(value); local
44 subtle::NoBarrier_Store(&counts_[bucket_index],
45 subtle::NoBarrier_Load(&counts_[bucket_index]) + count);
51 size_t bucket_index = GetBucketIndex(value); local
52 return subtle::NoBarrier_Load(&counts_[bucket_index]);
63 Count SampleVector::GetCountAtIndex(size_t bucket_index) const {
64 DCHECK(bucket_index < counts_size_);
65 return subtle::NoBarrier_Load(&counts_[bucket_index]);
sample_vector.h 46 HistogramBase::Count GetCountAtIndex(size_t bucket_index) const;
histogram.cc 169 size_t bucket_index = 1; local
171 ranges->set_range(bucket_index, current);
173 while (bucket_count > ++bucket_index) {
177 log_ratio = (log_max - log_current) / (bucket_count - bucket_index);
186 ranges->set_range(bucket_index, current);
  /art/runtime/
elf_file.cc 774 Elf_Word bucket_index = hash % GetHashBucketNum(); local
776 Elf_Word symbol_and_chain_index = GetHashBucket(bucket_index, &ok);
    [all...]

Completed in 339 milliseconds