Lines Matching refs:max_
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()
205 return max_; in GetMax()
215 dprintf(fd, "%smax: %d\n", pr, max_); in Dump()