Lines Matching refs:kcand
269 struct candidate **kcand, *pr;
327 kcand = xzalloc(size * sizeof(struct candidate*));
329 kcand[0] = new_candidate(0 , 0, NULL);
330 kcand[1] = new_candidate(file[0].len+1, file[1].len+1, NULL); //the fence
338 kcand = xrealloc(kcand, (size * sizeof(struct candidate*)));
340 do_merge(kcand, &k, i, e, e[i].p);
347 for (pr = kcand[k]; pr; pr = pr->prev)
351 for (i = k + 1; i >= 0; i--) free_candidates(kcand[i]);
352 free(kcand);