Home | History | Annotate | Download | only in arm

Lines Matching full:tbuf

82     char tbuf[256];
92 strcpy(tbuf, "!");
100 sprintf(tbuf, ", %s %d",shiftNames[operand & 0x3],
103 strcpy(tbuf,"");
130 strcpy(tbuf, name);
133 strcpy(tbuf,"0000");
135 tbuf[i] += operand & 1;
141 sprintf(tbuf,"%d [%#x]", operand, operand);
145 sprintf(tbuf,"%d [%#x]", operand, operand);
148 sprintf(tbuf,"s%d",operand & FP_REG_MASK);
151 sprintf(tbuf,"d%d",(operand & FP_REG_MASK) >> 1);
154 sprintf(tbuf,"%04x", operand);
158 sprintf(tbuf,"%d", operand);
161 sprintf(tbuf,"%d", operand*4);
164 sprintf(tbuf,"%d", operand*2);
169 strcpy(tbuf, "eq");
172 strcpy(tbuf, "ne");
175 strcpy(tbuf, "lt");
178 strcpy(tbuf, "ge");
181 strcpy(tbuf, "gt");
184 strcpy(tbuf, "le");
187 strcpy(tbuf, "cs");
190 strcpy(tbuf, "mi");
193 strcpy(tbuf, "");
198 sprintf(tbuf,"0x%08x (L%p)",
210 sprintf(tbuf, "%p", (void *) target);
216 strcpy(tbuf, "see above");
219 decodeRegList(lir->opcode, operand, tbuf);
222 strcpy(tbuf,"DecodeError");
225 if (buf+strlen(tbuf) <= bufEnd) {
226 strcpy(buf, tbuf);
227 buf += strlen(tbuf);