new_scope 762 drivers/scsi/aic7xxx/aicasm/aicasm.c scope_t *new_scope; new_scope 764 drivers/scsi/aic7xxx/aicasm/aicasm.c new_scope = (scope_t *)malloc(sizeof(scope_t)); new_scope 765 drivers/scsi/aic7xxx/aicasm/aicasm.c if (new_scope == NULL) new_scope 767 drivers/scsi/aic7xxx/aicasm/aicasm.c memset(new_scope, 0, sizeof(*new_scope)); new_scope 768 drivers/scsi/aic7xxx/aicasm/aicasm.c TAILQ_INIT(&new_scope->inner_scope); new_scope 772 drivers/scsi/aic7xxx/aicasm/aicasm.c new_scope, scope_links); new_scope 775 drivers/scsi/aic7xxx/aicasm/aicasm.c SLIST_INSERT_HEAD(&scope_stack, new_scope, scope_stack_links); new_scope 776 drivers/scsi/aic7xxx/aicasm/aicasm.c return new_scope; new_scope 1085 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y scope_t *new_scope; new_scope 1088 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y new_scope = scope_alloc(); new_scope 1089 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y new_scope->type = SCOPE_IF; new_scope 1090 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y new_scope->begin_addr = instruction_ptr; new_scope 1091 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y new_scope->func_num = $2->info.condinfo->func_num; new_scope 1095 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y scope_t *new_scope; new_scope 1113 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y new_scope = scope_alloc(); new_scope 1114 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y new_scope->type = SCOPE_ELSE_IF; new_scope 1115 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y new_scope->begin_addr = instruction_ptr; new_scope 1116 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y new_scope->func_num = $3->info.condinfo->func_num; new_scope 1120 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y scope_t *new_scope; new_scope 1137 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y new_scope = scope_alloc(); new_scope 1138 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y new_scope->type = SCOPE_ELSE; new_scope 1139 drivers/scsi/aic7xxx/aicasm/aicasm_gram.y new_scope->begin_addr = instruction_ptr;