/src/sys/dev/microcode/aic7xxx/ |
aicasm.c | 739 struct instruction *new_instr; local in function:seq_alloc 741 new_instr = (struct instruction *)malloc(sizeof(struct instruction)); 742 if (new_instr == NULL) 744 memset(new_instr, 0, sizeof(*new_instr)); 745 STAILQ_INSERT_TAIL(&seq_program, new_instr, links); 746 new_instr->srcline = yylineno; 747 return new_instr;
|
aicasm.c | 739 struct instruction *new_instr; local in function:seq_alloc 741 new_instr = (struct instruction *)malloc(sizeof(struct instruction)); 742 if (new_instr == NULL) 744 memset(new_instr, 0, sizeof(*new_instr)); 745 STAILQ_INSERT_TAIL(&seq_program, new_instr, links); 746 new_instr->srcline = yylineno; 747 return new_instr;
|
aicasm.c | 739 struct instruction *new_instr; local in function:seq_alloc 741 new_instr = (struct instruction *)malloc(sizeof(struct instruction)); 742 if (new_instr == NULL) 744 memset(new_instr, 0, sizeof(*new_instr)); 745 STAILQ_INSERT_TAIL(&seq_program, new_instr, links); 746 new_instr->srcline = yylineno; 747 return new_instr;
|