Searched refs:max_ (Results 1 – 2 of 2) sorted by relevance
/frameworks/native/cmds/dumpstate/ |
D | utils.cpp | 127 max_(initial_max), in Progress() 141 MYLOGI("Could not read stats from %s; using max of %d\n", path_.c_str(), max_); in Load() 145 MYLOGE("No stats (empty file) on %s; using max of %d\n", path_.c_str(), max_); in Load() 152 (int)lines.size(), max_); in Load() 165 max_ = initial_max_; in Load() 167 MYLOGI("Average max progress: %d in %d runs; estimated max: %d\n", average_max_, n_runs_, max_); in Load() 194 if (progress_ > max_) { in Inc() 195 int32_t old_max = max_; in Inc() 196 max_ = floor((float)progress_ * growth_factor_); in Inc() 197 MYLOGD("Adjusting max progress from %d to %d\n", old_max, max_); in Inc() [all …]
|
D | dumpstate.h | 137 int32_t max_; variable
|