seq               135 utils/superwordprof.c typedef struct seq seq_t;
seq              1071 utils/superwordprof.c 	seq_t *seq = &seqs[nextseq++];
seq              1072 utils/superwordprof.c 	seq->opcode = (unsigned*) safemalloc(sizeof(unsigned) * level);
seq              1073 utils/superwordprof.c 	memcpy(seq->opcode, ibuf, level*sizeof(unsigned));
seq              1075 utils/superwordprof.c 	    seq->operand1 = (unsigned*) safemalloc(sizeof(unsigned) * level);
seq              1076 utils/superwordprof.c 	    memcpy(seq->operand1, operand1, level*sizeof(unsigned));
seq              1077 utils/superwordprof.c 	    seq->operand2 = (unsigned*) safemalloc(sizeof(unsigned) * level);
seq              1078 utils/superwordprof.c 	    memcpy(seq->operand2, operand2, level*sizeof(unsigned));
seq              1081 utils/superwordprof.c 	    seq->operand1 = NULL;
seq              1082 utils/superwordprof.c 	    seq->operand2 = NULL;
seq              1084 utils/superwordprof.c 	seq->count = count/scale;
seq              1085 utils/superwordprof.c 	seq->length = level;
seq              1086 utils/superwordprof.c 	seq->suffix = 0;