Lines Matching refs:opcode_3d
2562 }, *opcode_3d;
2576 opcode_3d = &opcodes_3d[idx];
2577 if (opcode == opcode_3d->opcode) {
2580 instr_out(ctx, 0, "%s\n", opcode_3d->name);
2581 if (opcode_3d->max_len > 1) {
2583 if (len < opcode_3d->min_len ||
2584 len > opcode_3d->max_len) {
2586 opcode_3d->name);
3239 }, *opcode_3d = NULL;
3251 opcode_3d = &opcodes_3d[i];
3255 if (opcode_3d) {
3256 if (opcode_3d->max_len == 1)
3259 len = (data[0] & opcode_3d->len_mask) + 2;
3261 if (len < opcode_3d->min_len ||
3262 len > opcode_3d->max_len) {
3264 len, opcode_3d->name,
3265 opcode_3d->min_len, opcode_3d->max_len);
3727 if (opcode_3d) {
3728 if (opcode_3d->func) {
3729 return opcode_3d->func(ctx);
3731 instr_out(ctx, 0, "%s\n", opcode_3d->name);
3774 }, *opcode_3d;
3788 opcode_3d = &opcodes_3d[idx];
3789 if ((data[0] & 0x1f000000) >> 24 == opcode_3d->opcode) {
3792 instr_out(ctx, 0, "%s\n", opcode_3d->name);
3793 if (opcode_3d->max_len > 1) {
3795 if (len < opcode_3d->min_len ||
3796 len > opcode_3d->max_len) {
3798 opcode_3d->name);