Searched refs:new_scope (Results 1 - 2 of 2) sorted by relevance

/linux-master/drivers/scsi/aic7xxx/aicasm/
H A Daicasm.c762 scope_t *new_scope; local
764 new_scope = (scope_t *)malloc(sizeof(scope_t));
765 if (new_scope == NULL)
767 memset(new_scope, 0, sizeof(*new_scope));
768 TAILQ_INIT(&new_scope->inner_scope);
772 new_scope, scope_links); local
775 SLIST_INSERT_HEAD(&scope_stack, new_scope, scope_stack_links);
776 return new_scope;
H A Daicasm_gram.y1084 scope_t *new_scope;
1087 new_scope = scope_alloc();
1088 new_scope->type = SCOPE_IF;
1089 new_scope->begin_addr = instruction_ptr;
1090 new_scope->func_num = $2->info.condinfo->func_num;
1094 scope_t *new_scope;
1112 new_scope = scope_alloc();
1113 new_scope->type = SCOPE_ELSE_IF;
1114 new_scope->begin_addr = instruction_ptr;
1115 new_scope
[all...]

Completed in 205 milliseconds