new_scope         767 dev/microcode/aic7xxx/aicasm.c 	scope_t *new_scope;
new_scope         769 dev/microcode/aic7xxx/aicasm.c 	new_scope = (scope_t *)malloc(sizeof(scope_t));
new_scope         770 dev/microcode/aic7xxx/aicasm.c 	if (new_scope == NULL)
new_scope         772 dev/microcode/aic7xxx/aicasm.c 	memset(new_scope, 0, sizeof(*new_scope));
new_scope         773 dev/microcode/aic7xxx/aicasm.c 	TAILQ_INIT(&new_scope->inner_scope);
new_scope         777 dev/microcode/aic7xxx/aicasm.c 				  new_scope, scope_links);
new_scope         780 dev/microcode/aic7xxx/aicasm.c 	SLIST_INSERT_HEAD(&scope_stack, new_scope, scope_stack_links);
new_scope         781 dev/microcode/aic7xxx/aicasm.c 	return new_scope;
new_scope        1060 dev/microcode/aic7xxx/aicasm_gram.y 		scope_t *new_scope;
new_scope        1063 dev/microcode/aic7xxx/aicasm_gram.y 		new_scope = scope_alloc();
new_scope        1064 dev/microcode/aic7xxx/aicasm_gram.y 		new_scope->type = SCOPE_IF;
new_scope        1065 dev/microcode/aic7xxx/aicasm_gram.y 		new_scope->begin_addr = instruction_ptr;
new_scope        1066 dev/microcode/aic7xxx/aicasm_gram.y 		new_scope->func_num = $2->info.condinfo->func_num;
new_scope        1070 dev/microcode/aic7xxx/aicasm_gram.y 		scope_t *new_scope;
new_scope        1088 dev/microcode/aic7xxx/aicasm_gram.y 		new_scope = scope_alloc();
new_scope        1089 dev/microcode/aic7xxx/aicasm_gram.y 		new_scope->type = SCOPE_ELSE_IF;
new_scope        1090 dev/microcode/aic7xxx/aicasm_gram.y 		new_scope->begin_addr = instruction_ptr;
new_scope        1091 dev/microcode/aic7xxx/aicasm_gram.y 		new_scope->func_num = $3->info.condinfo->func_num;
new_scope        1095 dev/microcode/aic7xxx/aicasm_gram.y 		scope_t *new_scope;
new_scope        1112 dev/microcode/aic7xxx/aicasm_gram.y 		new_scope = scope_alloc();
new_scope        1113 dev/microcode/aic7xxx/aicasm_gram.y 		new_scope->type = SCOPE_ELSE;
new_scope        1114 dev/microcode/aic7xxx/aicasm_gram.y 		new_scope->begin_addr = instruction_ptr;