Home
last modified time | relevance | path

Searched refs:cur_patch (Results 1 – 3 of 3) sorted by relevance

/freebsd-10-stable/sys/dev/aic7xxx/aicasm/
Daicasm.c353 patch_t *cur_patch; in output_code() local
426 for (cur_patch = STAILQ_FIRST(&patches); in output_code()
427 cur_patch != NULL; in output_code()
428 cur_patch = STAILQ_NEXT(cur_patch,links)) { in output_code()
430 cur_patch == STAILQ_FIRST(&patches) ? "" : ",\n", in output_code()
432 cur_patch->patch_func, cur_patch->begin, in output_code()
433 cur_patch->skip_instr, cur_patch->skip_patch); in output_code()
526 patch_t *cur_patch; in output_listing() local
598 cur_patch = STAILQ_FIRST(&patches); in output_listing()
603 if (check_patch(&cur_patch, instrcount, in output_listing()
[all …]
/freebsd-10-stable/sys/dev/aic7xxx/
Daic7xxx.c6427 struct patch *cur_patch; in ahc_loadseq() local
6459 cur_patch = patches; in ahc_loadseq()
6467 if (ahc_check_patch(ahc, &cur_patch, i, &skip_addr) == 0) { in ahc_loadseq()
6535 struct patch *cur_patch; in ahc_check_patch() local
6541 cur_patch = *start_patch; in ahc_check_patch()
6543 while (cur_patch < last_patch && start_instr == cur_patch->begin) { in ahc_check_patch()
6545 if (cur_patch->patch_func(ahc) == 0) { in ahc_check_patch()
6548 *skip_addr = start_instr + cur_patch->skip_instr; in ahc_check_patch()
6549 cur_patch += cur_patch->skip_patch; in ahc_check_patch()
6555 cur_patch++; in ahc_check_patch()
[all …]
Daic79xx.c8622 struct patch *cur_patch; in ahd_loadseq() local
8719 cur_patch = patches; in ahd_loadseq()
8726 if (ahd_check_patch(ahd, &cur_patch, i, &skip_addr) == 0) { in ahd_loadseq()
8780 struct patch *cur_patch; in ahd_check_patch() local
8786 cur_patch = *start_patch; in ahd_check_patch()
8788 while (cur_patch < last_patch && start_instr == cur_patch->begin) { in ahd_check_patch()
8790 if (cur_patch->patch_func(ahd) == 0) { in ahd_check_patch()
8793 *skip_addr = start_instr + cur_patch->skip_instr; in ahd_check_patch()
8794 cur_patch += cur_patch->skip_patch; in ahd_check_patch()
8800 cur_patch++; in ahd_check_patch()
[all …]