Lines Matching refs:alloc_values
6304 int alloc_values; /* Number of values to allocate */ in ipp_add_attr() local
6322 alloc_values = 1; in ipp_add_attr()
6324 alloc_values = (num_values + IPP_MAX_VALUES - 1) & ~(IPP_MAX_VALUES - 1); in ipp_add_attr()
6327 (size_t)(alloc_values - 1) * sizeof(_ipp_value_t), 1); in ipp_add_attr()
6835 int alloc_values; /* Allocated values */ in ipp_set_value() local
6845 alloc_values = 1; in ipp_set_value()
6847 alloc_values = (temp->num_values + IPP_MAX_VALUES - 1) & in ipp_set_value()
6850 if (element < alloc_values) in ipp_set_value()
6863 if (alloc_values < IPP_MAX_VALUES) in ipp_set_value()
6864 alloc_values = IPP_MAX_VALUES; in ipp_set_value()
6866 alloc_values += IPP_MAX_VALUES; in ipp_set_value()
6869 alloc_values)); in ipp_set_value()
6875 …if ((temp = realloc(temp, sizeof(ipp_attribute_t) + (size_t)(alloc_values - 1) * sizeof(_ipp_value… in ipp_set_value()
6886 …memset(temp->values + temp->num_values, 0, (size_t)(alloc_values - temp->num_values) * sizeof(_ipp… in ipp_set_value()