Lines Matching refs:estimate
5528 unsigned int estimate = this->master_got_info_->page_gotno(); in merge_gots() local
5529 if (estimate > g->page_gotno()) in merge_gots()
5530 estimate = g->page_gotno(); in merge_gots()
5531 estimate += g->local_gotno() + g->tls_gotno(); in merge_gots()
5537 estimate += (g->tls_gotno() > 0 ? this->master_got_info_->global_gotno() in merge_gots()
5542 if (estimate <= max_count) in merge_gots()
5587 unsigned int estimate = this->master_got_info_->page_gotno(); in merge_got_with() local
5588 if (estimate >= from->page_gotno() + to->page_gotno()) in merge_got_with()
5589 estimate = from->page_gotno() + to->page_gotno(); in merge_got_with()
5592 estimate += from->local_gotno() + to->local_gotno(); in merge_got_with()
5593 estimate += from->tls_gotno() + to->tls_gotno(); in merge_got_with()
5599 estimate += this->master_got_info_->global_gotno(); in merge_got_with()
5601 estimate += from->global_gotno() + to->global_gotno(); in merge_got_with()
5606 if (estimate > max_count) in merge_got_with()