Lines Matching refs:operand
36 struct operand *, char *, int *));
236 unsigned long operand; in print_operands() local
237 struct operand *opr; in print_operands()
262 operand = (ctx->instr >> opr->shift) & ((1 << opr->bits) - 1); in print_operands()
265 if ((operand & (1 << (opr->bits - 1))) != 0) { in print_operands()
266 operand = operand - (1 << opr->bits); in print_operands()
270 operand = (operand << 2) + (unsigned long) ctx->virtual; in print_operands()
272 operand = (operand << 2); in print_operands()
275 sprintf (&ctx->data[ctx->datalen], "0x%lx", operand); in print_operands()
281 symbol_name_from_addr (operand, 0, &offset)) != 0)) { in print_operands()
295 if ((operand == 0) && in print_operands()
299 sprintf (&ctx->data[ctx->datalen], "r%d", (short) operand); in print_operands()
309 strcat (ctx->data, spr_name (operand)); in print_operands()
313 strcat (ctx->data, tbr_name (operand)); in print_operands()
330 (unsigned short) operand); in print_operands()
378 struct operand *opr; in get_operand_value()
757 struct operand *oper[MAX_OPERANDS]; in asmppc()
856 struct operand *oper, char *txt, int *err) in parse_operand()