Lines Matching defs:ranges
3589 info->lconstf.ranges = NULL;
4017 const_ranges = CALLOC(num_ranges + 1, 2 * sizeof(unsigned)); /* ranges stop when last is of size 0 */
4058 struct nine_range *ranges;
4085 /* count ranges */
4089 ranges = MALLOC(n * sizeof(ranges[0]));
4090 if (!ranges) {
4094 info->lconstf.ranges = ranges;
4097 ranges[k].bgn = indices[0];
4100 ranges[k].next = &ranges[k + 1];
4101 ranges[k].end = indices[i - 1] + 1;
4103 ranges[k].bgn = indices[i];
4106 ranges[k].end = indices[i - 1] + 1;
4107 ranges[k].next = NULL;
4157 FREE(info->lconstf.ranges);