Home
last modified time | relevance | path

Searched refs:tmp0 (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/tests/tcg/aarch64/system/
H A Dmte.S13 #define tmp0 x2 /* Scratch register. */ macro
35 mrs tmp0, mair_el1
36 orr tmp0, tmp0, (0xF0 << 8)
37 msr mair_el1, tmp0
81 mov tmp0, 0xA5
82 msr gcr_el1, tmp0
/openbmc/qemu/target/rx/
H A Dop_helper.c201 uint8_t tmp0, tmp1; in helper_scmpu() local
206 tmp0 = cpu_ldub_data_ra(env, env->regs[1]++, GETPC()); in helper_scmpu()
209 if (tmp0 != tmp1 || tmp0 == '\0') { in helper_scmpu()
213 env->psw_z = tmp0 - tmp1; in helper_scmpu()
214 env->psw_c = (tmp0 >= tmp1); in helper_scmpu()
327 int64_t tmp0, tmp1; in helper_rmpa() local
339 tmp0 = cpu_ldfn[sz](env, env->regs[1], GETPC()); in helper_rmpa()
341 tmp0 *= tmp1; in helper_rmpa()
343 result_l += tmp0; in helper_rmpa()
345 if (tmp0 < 0) { in helper_rmpa()
/openbmc/u-boot/lib/
H A Daes.c514 u8 tmp0, tmp1, tmp2, tmp3, tmp4; in aes_expand_key() local
520 tmp0 = expkey[4*idx - 4]; in aes_expand_key()
526 tmp3 = sbox[tmp0]; in aes_expand_key()
527 tmp0 = sbox[tmp1] ^ rcon[idx / AES_KEYCOLS]; in aes_expand_key()
531 tmp0 = sbox[tmp0]; in aes_expand_key()
537 expkey[4*idx+0] = expkey[4*idx - 4*AES_KEYCOLS + 0] ^ tmp0; in aes_expand_key()
/openbmc/qemu/target/mips/tcg/
H A Dop_helper.c57 uint64_t tmp0 = ((uint64_t)rs) << 32 | ((uint64_t)rs & 0xffffffff); in helper_rotx() local
58 uint64_t tmp1 = tmp0; in helper_rotx()
71 if (tmp0 & (1LL << (i + 16))) { in helper_rotx()
/openbmc/qemu/hw/s390x/
H A Dcss.c751 CCW0 tmp0; in copy_ccw_from_guest() local
762 cpu_physical_memory_read(addr, &tmp0, sizeof(tmp0)); in copy_ccw_from_guest()
763 if ((tmp0.cmd_code & 0x0f) == CCW_CMD_TIC) { in copy_ccw_from_guest()
768 ret.cmd_code = tmp0.cmd_code; in copy_ccw_from_guest()
769 ret.flags = tmp0.flags; in copy_ccw_from_guest()
770 ret.count = be16_to_cpu(tmp0.count); in copy_ccw_from_guest()
772 ret.cda = be16_to_cpu(tmp0.cda1) | (tmp0.cda0 << 16); in copy_ccw_from_guest()
/openbmc/qemu/target/ppc/translate/
H A Dvmx-impl.c.inc2763 TCGv_i64 tmp0, tmp1, prod1h, prod1l, prod0h, prod0l, zero;
2768 tmp0 = tcg_temp_new_i64();
2777 get_avr64(tmp0, a->vra, false);
2779 tcg_gen_mulu2_i64(prod1l, prod1h, tmp0, tmp1);
2782 get_avr64(tmp0, a->vra, true);
2784 tcg_gen_mulu2_i64(prod0l, prod0h, tmp0, tmp1);
2788 tcg_gen_add2_i64(tmp1, tmp0, tmp1, zero, prod1l, zero);
2789 tcg_gen_add2_i64(tmp1, tmp0, tmp1, tmp0, prod0l, zero);
2796 tcg_gen_add2_i64(tmp1, tmp0, tmp0, zero, tmp1, zero);
2797 tcg_gen_add2_i64(tmp1, tmp0, tmp1, tmp0, prod1h, zero);
[all …]