Home
last modified time | relevance | path

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

/linux-2.4.37.9/drivers/scsi/aic7xxx/aicasm/
Daicasm.c754 scope_t *new_scope; in scope_alloc() local
756 new_scope = (scope_t *)malloc(sizeof(scope_t)); in scope_alloc()
757 if (new_scope == NULL) in scope_alloc()
759 memset(new_scope, 0, sizeof(*new_scope)); in scope_alloc()
760 TAILQ_INIT(&new_scope->inner_scope); in scope_alloc()
764 new_scope, scope_links); in scope_alloc()
767 SLIST_INSERT_HEAD(&scope_stack, new_scope, scope_stack_links); in scope_alloc()
768 return new_scope; in scope_alloc()
Daicasm_gram.y1059 scope_t *new_scope; variable
1062 new_scope = scope_alloc();
1063 new_scope->type = SCOPE_IF;
1064 new_scope->begin_addr = instruction_ptr;
1065 new_scope->func_num = $2->info.condinfo->func_num;
1069 scope_t *new_scope; variable
1087 new_scope = scope_alloc();
1088 new_scope->type = SCOPE_ELSE_IF;
1089 new_scope->begin_addr = instruction_ptr;
1090 new_scope->func_num = $3->info.condinfo->func_num;
[all …]