Home | History | Annotate | Download | only in mips

Lines Matching full:tbuf

40     char tbuf[256];
49 strcpy(tbuf, "!");
56 strcpy(tbuf,"0000");
58 tbuf[i] += operand & 1;
63 sprintf(tbuf,"$f%d",operand & FP_REG_MASK);
67 sprintf(tbuf,"$f%d",operand & FP_REG_MASK);
70 sprintf(tbuf,"%04x", operand);
74 sprintf(tbuf,"%d", operand);
77 sprintf(tbuf,"%d", operand+1);
80 sprintf(tbuf,"%d", operand*4);
83 sprintf(tbuf,"%d", operand*2);
88 strcpy(tbuf, "eq");
91 strcpy(tbuf, "ne");
94 strcpy(tbuf, "lt");
97 strcpy(tbuf, "ge");
100 strcpy(tbuf, "gt");
103 strcpy(tbuf, "le");
106 strcpy(tbuf, "cs");
109 strcpy(tbuf, "mi");
112 strcpy(tbuf, "");
117 sprintf(tbuf,"0x%08x (L%p)",
123 sprintf(tbuf,"0x%08x",
133 sprintf(tbuf, "%p", (void *) target);
139 strcpy(tbuf, "see above");
143 strcpy(tbuf, mipsRegName[operand]);
146 strcpy(tbuf,"DecodeError");
149 if (buf+strlen(tbuf) <= bufEnd) {
150 strcpy(buf, tbuf);
151 buf += strlen(tbuf);