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