Lines Matching refs:nr_probes
139 int nr_probes = 0; /* Counter for probes */
155 nr_probes++;
159 new = allocate_probes(nr_probes + 2);
163 nr_probes = 0;
169 pos = nr_probes++;
170 new[nr_probes++] = old[iter_probes];
173 pos = nr_probes++;
174 /* nr_probes now points to the end of the new array */
177 nr_probes = 1; /* must point at end of array */
180 new[nr_probes].func = NULL;
189 int nr_probes = 0, nr_del = 0, i;
200 for (nr_probes = 0; old[nr_probes].func; nr_probes++) {
201 if ((old[nr_probes].func == tp_func->func &&
202 old[nr_probes].data == tp_func->data) ||
203 old[nr_probes].func == tp_stub_func)
209 * If probe is NULL, then nr_probes = nr_del = 0, and then the
212 if (nr_probes - nr_del == 0) {
221 new = allocate_probes(nr_probes - nr_del + 1);
229 new[nr_probes - nr_del].func = NULL;