Lines Matching refs:estimate
590 int estimate = literal->expected_property_count();
594 estimate += expected_nof_properties();
596 return estimate;
601 // Limit actual estimate to fit in a 8 bit field, we will never allocate
604 int estimate = get_property_estimate_from_literal(literal);
605 set_expected_nof_properties(std::min(estimate, kMaxUInt8));
614 int estimate = get_property_estimate_from_literal(literal);
618 if (estimate == 0) estimate = 2;
620 // Limit actual estimate to fit in a 8 bit field, we will never allocate
623 estimate = std::min(estimate, kMaxUInt8);
625 set_expected_nof_properties(estimate);