Lines Matching defs:cur_patch
352 patch_t *cur_patch;
425 for (cur_patch = STAILQ_FIRST(&patches);
426 cur_patch != NULL;
427 cur_patch = STAILQ_NEXT(cur_patch,links)) {
429 cur_patch == STAILQ_FIRST(&patches) ? "" : ",\n",
431 cur_patch->patch_func, cur_patch->begin,
432 cur_patch->skip_instr, cur_patch->skip_patch);
524 patch_t *cur_patch;
596 cur_patch = STAILQ_FIRST(&patches);
601 if (check_patch(&cur_patch, instrcount,
651 patch_t *cur_patch;
653 cur_patch = *start_patch;
655 while (cur_patch != NULL && start_instr == cur_patch->begin) {
656 if (func_vals[cur_patch->patch_func] == 0) {
660 *skip_addr = start_instr + cur_patch->skip_instr;
661 for (skip = cur_patch->skip_patch;
662 skip > 0 && cur_patch != NULL;
664 cur_patch = STAILQ_NEXT(cur_patch, links);
670 cur_patch = STAILQ_NEXT(cur_patch, links);
674 *start_patch = cur_patch;