Home | History | Annotate | Download | only in aic7xxx

Lines Matching defs:cur_patch

356 	patch_t *cur_patch;
429 for (cur_patch = STAILQ_FIRST(&patches);
430 cur_patch != NULL;
431 cur_patch = STAILQ_NEXT(cur_patch,links)) {
433 cur_patch == STAILQ_FIRST(&patches) ? "" : ",\n",
435 cur_patch->patch_func, cur_patch->begin,
436 cur_patch->skip_instr, cur_patch->skip_patch);
531 patch_t *cur_patch;
605 cur_patch = STAILQ_FIRST(&patches);
615 if (check_patch(&cur_patch, instrcount,
656 patch_t *cur_patch;
658 cur_patch = *start_patch;
660 while (cur_patch != NULL && start_instr == cur_patch->begin) {
661 if (func_vals[cur_patch->patch_func] == 0) {
665 *skip_addr = start_instr + cur_patch->skip_instr;
666 for (skip = cur_patch->skip_patch;
667 skip > 0 && cur_patch != NULL;
669 cur_patch = STAILQ_NEXT(cur_patch, links);
675 cur_patch = STAILQ_NEXT(cur_patch, links);
679 *start_patch = cur_patch;