Home
last modified time | relevance | path

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

/art/runtime/base/
Dhistogram-inl.h35 Value new_max = ((value + 1) / bucket_width_ + 1) * bucket_width_; in AddValue() local
36 DCHECK_GT(new_max, max_); in AddValue()
37 GrowBuckets(new_max); in AddValue()
65 inline void Histogram<Value>::GrowBuckets(Value new_max) { in GrowBuckets() argument
66 while (max_ < new_max) { in GrowBuckets()
/art/compiler/dex/
Dmir_graph.h958 bool SetMaxAvailableNonSpecialCompilerTemps(size_t new_max) { in SetMaxAvailableNonSpecialCompilerTemps() argument
961 if (new_max < (GetNumNonSpecialCompilerTemps() + reserved_temps_for_backend_)) { in SetMaxAvailableNonSpecialCompilerTemps()
964 max_available_non_special_compiler_temps_ = new_max; in SetMaxAvailableNonSpecialCompilerTemps()