Lines Matching refs:src_num
169 unsigned long src_num;
176 src_num = *num;
177 if (src_num == 0) {
182 if (src_num >= SIZE_MAX / sizeof(fsRange) * 2 - 1)
184 np = new = (fsRange *) FSalloc(sizeof(fsRange) * (src_num + 1) / 2);
188 for (i = 1; i < src_num; i += 2)
197 /* If src_num is odd, we need to determine the final range
199 if (i == src_num)
212 src_num = *num;
213 if (src_num >= SIZE_MAX / sizeof(fsRange))
215 np = new = (fsRange *) FSallocarray(src_num, SIZEOF(fsRange));
221 for (i = 0; i < src_num; i++) {