cur_scope         467 dev/microcode/aic7xxx/aicasm.c 	scope_t *cur_scope;
cur_scope         477 dev/microcode/aic7xxx/aicasm.c 	cur_scope = TAILQ_FIRST(&scope->inner_scope);
cur_scope         479 dev/microcode/aic7xxx/aicasm.c 	while (cur_scope != NULL) {
cur_scope         481 dev/microcode/aic7xxx/aicasm.c 		dump_scope(cur_scope);
cur_scope         483 dev/microcode/aic7xxx/aicasm.c 		cur_scope = TAILQ_NEXT(cur_scope, scope_links);
cur_scope         792 dev/microcode/aic7xxx/aicasm.c 	scope_t *cur_scope;
cur_scope         796 dev/microcode/aic7xxx/aicasm.c 	cur_scope = TAILQ_LAST(&scope->inner_scope, scope_tailq);
cur_scope         799 dev/microcode/aic7xxx/aicasm.c 	while (cur_scope != NULL) {
cur_scope         803 dev/microcode/aic7xxx/aicasm.c 		switch (cur_scope->type) {
cur_scope         809 dev/microcode/aic7xxx/aicasm.c 				cur_scope->patches[1].skip_patch =
cur_scope         811 dev/microcode/aic7xxx/aicasm.c 				cur_scope->patches[1].skip_instr =
cur_scope         819 dev/microcode/aic7xxx/aicasm.c 			patch0_patch_skip += cur_scope->inner_scope_patches;
cur_scope         821 dev/microcode/aic7xxx/aicasm.c 			cur_scope->patches[0].skip_patch = patch0_patch_skip;
cur_scope         822 dev/microcode/aic7xxx/aicasm.c 			cur_scope->patches[0].skip_instr =
cur_scope         823 dev/microcode/aic7xxx/aicasm.c 			    cur_scope->end_addr - cur_scope->begin_addr;
cur_scope         825 dev/microcode/aic7xxx/aicasm.c 			skip_instr_count += cur_scope->patches[0].skip_instr;
cur_scope         828 dev/microcode/aic7xxx/aicasm.c 			if (cur_scope->type == SCOPE_IF) {
cur_scope         836 dev/microcode/aic7xxx/aicasm.c 			skip_patch_count += cur_scope->inner_scope_patches;
cur_scope         838 dev/microcode/aic7xxx/aicasm.c 			skip_instr_count += cur_scope->end_addr
cur_scope         839 dev/microcode/aic7xxx/aicasm.c 					  - cur_scope->begin_addr;
cur_scope         846 dev/microcode/aic7xxx/aicasm.c 		cur_scope = TAILQ_PREV(cur_scope, scope_tailq, scope_links);