HomeSort by relevance Sort by last modified time
    Searched defs:bucket_idx (Results 1 - 2 of 2) sorted by null

  /art/runtime/base/
histogram-inl.h 88 const size_t bucket_idx = static_cast<size_t>((val - min_) / bucket_width_); local
89 DCHECK_GE(bucket_idx, 0ul);
90 DCHECK_LE(bucket_idx, GetBucketCount());
91 return bucket_idx;
128 template <class Value> inline Value Histogram<Value>::GetRange(size_t bucket_idx) const {
129 DCHECK_LE(bucket_idx, GetBucketCount());
130 return min_ + bucket_idx * bucket_width_;
  /external/lldb/include/lldb/Core/
MappedHash.h 272 const uint32_t bucket_idx = hash % header.bucket_count; local
275 hash_buckets[bucket_idx][hash][strp_offset].push_back(die_offset);
406 GetHashIndex (uint32_t bucket_idx) const
408 if (m_hash_indexes && bucket_idx < m_header.bucket_count)
409 return m_hash_indexes[bucket_idx];
437 const uint32_t bucket_idx = hash_value % bucket_count; local
438 uint32_t hash_idx = GetHashIndex (bucket_idx);
471 if ((curr_hash_value % bucket_count) != bucket_idx)

Completed in 272 milliseconds