| /openbmc/u-boot/drivers/mtd/nand/raw/ |
| H A D | nand_ecc.c | 68 uint8_t idx, reg1, reg2, reg3, tmp1, tmp2; in nand_calculate_ecc() local 88 tmp1 = (reg3 & 0x80) >> 0; /* B7 -> B7 */ in nand_calculate_ecc() 89 tmp1 |= (reg2 & 0x80) >> 1; /* B7 -> B6 */ in nand_calculate_ecc() 90 tmp1 |= (reg3 & 0x40) >> 1; /* B6 -> B5 */ in nand_calculate_ecc() 91 tmp1 |= (reg2 & 0x40) >> 2; /* B6 -> B4 */ in nand_calculate_ecc() 92 tmp1 |= (reg3 & 0x20) >> 2; /* B5 -> B3 */ in nand_calculate_ecc() 93 tmp1 |= (reg2 & 0x20) >> 3; /* B5 -> B2 */ in nand_calculate_ecc() 94 tmp1 |= (reg3 & 0x10) >> 3; /* B4 -> B1 */ in nand_calculate_ecc() 95 tmp1 |= (reg2 & 0x10) >> 4; /* B4 -> B0 */ in nand_calculate_ecc() 107 ecc_code[0] = ~tmp1; in nand_calculate_ecc()
|
| /openbmc/qemu/tests/tcg/aarch64/system/ |
| H A D | mte.S | 14 #define tmp1 x3 /* Scratch register. */ macro 45 mrs tmp1, tcr_el1 46 orr tmp1, tmp1, (1 << 37) 47 msr tcr_el1, tmp1 104 ldr tmp1, =0xdeadbeef 105 str tmp1, [tagged_addr]
|
| /openbmc/u-boot/lib/ |
| H A D | rbtree.c | 195 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; in ____rb_erase_color() local 217 parent->rb_right = tmp1 = sibling->rb_left; in ____rb_erase_color() 219 rb_set_parent_color(tmp1, parent, RB_BLACK); in ____rb_erase_color() 223 sibling = tmp1; in ____rb_erase_color() 225 tmp1 = sibling->rb_right; in ____rb_erase_color() 226 if (!tmp1 || rb_is_black(tmp1)) { in ____rb_erase_color() 268 sibling->rb_left = tmp1 = tmp2->rb_right; in ____rb_erase_color() 271 if (tmp1) in ____rb_erase_color() 272 rb_set_parent_color(tmp1, sibling, in ____rb_erase_color() 275 tmp1 = sibling; in ____rb_erase_color() [all …]
|
| H A D | aes.c | 514 u8 tmp0, tmp1, tmp2, tmp3, tmp4; in aes_expand_key() local 521 tmp1 = expkey[4*idx - 3]; in aes_expand_key() 527 tmp0 = sbox[tmp1] ^ rcon[idx / AES_KEYCOLS]; in aes_expand_key() 528 tmp1 = sbox[tmp2]; in aes_expand_key() 532 tmp1 = sbox[tmp1]; in aes_expand_key() 538 expkey[4*idx+1] = expkey[4*idx - 4*AES_KEYCOLS + 1] ^ tmp1; in aes_expand_key()
|
| /openbmc/qemu/util/ |
| H A D | interval-tree.c | 351 RBNode *node = NULL, *sibling, *tmp1, *tmp2; in rb_erase_color() local 373 tmp1 = sibling->rb_left; in rb_erase_color() 374 qatomic_set(&parent->rb_right, tmp1); in rb_erase_color() 376 rb_set_parent_color(tmp1, parent, RB_BLACK); in rb_erase_color() 379 sibling = tmp1; in rb_erase_color() 381 tmp1 = sibling->rb_right; in rb_erase_color() 382 if (!tmp1 || rb_is_black(tmp1)) { in rb_erase_color() 439 tmp1 = tmp2->rb_right; in rb_erase_color() 440 qatomic_set(&sibling->rb_left, tmp1); in rb_erase_color() 443 if (tmp1) { in rb_erase_color() [all …]
|
| /openbmc/qemu/docs/spin/ |
| H A D | win32-qemu-event.promela | 56 int tmp1, tmp2; 57 #define WAIT tmp1 = state; \ 58 if :: tmp1 != EV_SET -> \ 59 if :: tmp1 == EV_FREE -> \ 67 if :: tmp2 == EV_SET -> tmp1 = EV_SET; \ 68 :: else -> tmp1 = EV_BUSY; \ 72 assert(tmp1 != EV_FREE); \ 73 if :: tmp1 == EV_BUSY -> RAW_WAIT; \
|
| /openbmc/u-boot/arch/arm/lib/ |
| H A D | debug.S | 25 .macro addruart_current, rx, tmp1, tmp2 26 addruart \tmp1, \tmp2, \rx 29 moveq \rx, \tmp1 34 .macro addruart_current, rx, tmp1, tmp2 35 addruart \rx, \tmp1, \tmp2
|
| /openbmc/u-boot/scripts/ |
| H A D | build-whitelist.sh | 37 |sort |uniq >scripts/config_whitelist.txt.tmp1; 47 comm -23 scripts/config_whitelist.txt.tmp1 scripts/config_whitelist.txt.tmp2 \
|
| /openbmc/qemu/target/mips/tcg/ |
| H A D | op_helper.c | 58 uint64_t tmp1 = tmp0; in helper_rotx() local 72 tmp1 |= 1LL << i; in helper_rotx() 74 tmp1 &= ~(1LL << i); in helper_rotx() 79 uint64_t tmp2 = tmp1; in helper_rotx() 89 if (tmp1 & (1LL << (i + 8))) { in helper_rotx()
|
| H A D | nanomips_translate.c.inc | 997 TCGv tmp1 = tcg_temp_new(); 1004 tcg_gen_extr_i64_tl(tmp2, tmp1, tval); 1006 tcg_gen_extr_i64_tl(tmp1, tmp2, tval); 1008 gen_store_gpr(tmp1, reg1); 1022 TCGv tmp1 = tcg_temp_new(); 1032 gen_load_gpr(tmp1, reg1); 1036 tcg_gen_concat_tl_i64(tval, tmp2, tmp1); 1038 tcg_gen_concat_tl_i64(tval, tmp1, tmp2);
|
| /openbmc/qemu/target/rx/ |
| H A D | op_helper.c | 201 uint8_t tmp0, tmp1; in helper_scmpu() local 207 tmp1 = cpu_ldub_data_ra(env, env->regs[2]++, 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 340 tmp1 = cpu_ldfn[sz](env, env->regs[2], GETPC()); in helper_rmpa() 341 tmp0 *= tmp1; in helper_rmpa()
|
| /openbmc/qemu/tests/tcg/alpha/system/ |
| H A D | boot.S | 225 #define tmp1 $3 macro 246 subq modulus, divisor, tmp1 249 cmovne compare, tmp1, modulus 263 #undef tmp1
|
| /openbmc/fb-ipmi-oem/src/ |
| H A D | selcommands.cpp | 422 std::stringstream tmp1, tmp2; in logPcieErr() local 423 tmp1 << std::hex << std::uppercase << std::setfill('0'); in logPcieErr() 425 tmp1 << " (Bus " << std::setw(2) << (int)(data[2]) << " / Dev " in logPcieErr() 432 errLog = "PCI PERR" + tmp1.str(); in logPcieErr() 435 errLog = "PCI SERR" + tmp1.str(); in logPcieErr() 438 errLog = "Correctable" + tmp1.str(); in logPcieErr() 441 errLog = "Uncorrectable" + tmp1.str(); in logPcieErr() 444 errLog = "Bus Fatal" + tmp1.str(); in logPcieErr()
|
| /openbmc/u-boot/drivers/ddr/marvell/axp/ |
| H A D | ddr3_hw_training.c | 487 u32 tmp1, tmp2, reg; in ddr3_set_performance_params() local 502 tmp1 = (dram_info->rl_max_phase - dram_info->wl_min_phase) / 2 + in ddr3_set_performance_params() 508 trd2wr_wr2rd = (tmp1 >= tmp2) ? tmp1 : tmp2; in ddr3_set_performance_params()
|
| /openbmc/qemu/target/arm/tcg/ |
| H A D | neon_helper.c | 867 uint64_t tmp1, tmp2; in HELPER() local 871 tmp1 = a & elementmask; in HELPER() 872 tmp1 ^= nsignmask; in HELPER() 873 tmp1 |= wsignmask; in HELPER() 874 tmp1 = (tmp1 - nsignmask) ^ wsignmask; in HELPER() 885 signres = (tmp1 ^ tmp2) & wsignmask; in HELPER() 886 res = (tmp1 & ~wsignmask) + (tmp2 & ~wsignmask); in HELPER()
|
| /openbmc/qemu/bsd-user/ |
| H A D | elfload.c | 135 char *tmp, *tmp1, *pag = NULL; in copy_elf_strings() local 147 tmp1 = tmp; in copy_elf_strings() 151 len = tmp - tmp1; in copy_elf_strings()
|
| /openbmc/u-boot/drivers/ram/rockchip/ |
| H A D | sdram_rk3399.c | 463 u32 tmp, tmp1, tmp2; in pctl_cfg() local 496 tmp1 = readl(&denali_phy[921]); in pctl_cfg() 499 (((tmp1 >> 16) & 0x1) == 0x1) && in pctl_cfg() 500 (((tmp1 >> 0) & 0x1) == 0x1) && in pctl_cfg()
|
| /openbmc/qemu/target/ppc/translate/ |
| H A D | vmx-impl.c.inc | 2763 TCGv_i64 tmp0, tmp1, prod1h, prod1l, prod0h, prod0l, zero; 2769 tmp1 = tcg_temp_new_i64(); 2778 get_avr64(tmp1, a->vrb, false); 2779 tcg_gen_mulu2_i64(prod1l, prod1h, tmp0, tmp1); 2783 get_avr64(tmp1, a->vrb, true); 2784 tcg_gen_mulu2_i64(prod0l, prod0h, tmp0, tmp1); 2787 get_avr64(tmp1, a->rc, false); 2788 tcg_gen_add2_i64(tmp1, tmp0, tmp1, zero, prod1l, zero); 2789 tcg_gen_add2_i64(tmp1, tmp0, tmp1, tmp0, prod0l, zero); 2795 get_avr64(tmp1, a->rc, true); [all …]
|
| /openbmc/qemu/hw/s390x/ |
| H A D | css.c | 752 CCW1 tmp1; in copy_ccw_from_guest() local 756 cpu_physical_memory_read(addr, &tmp1, sizeof(tmp1)); in copy_ccw_from_guest() 757 ret.cmd_code = tmp1.cmd_code; in copy_ccw_from_guest() 758 ret.flags = tmp1.flags; in copy_ccw_from_guest() 759 ret.count = be16_to_cpu(tmp1.count); in copy_ccw_from_guest() 760 ret.cda = be32_to_cpu(tmp1.cda); in copy_ccw_from_guest()
|
| /openbmc/u-boot/arch/x86/cpu/quark/ |
| H A D | smc.c | 69 u32 tmp1, tmp2; in prog_ddr_timing_control() local 101 tmp1 = tcl - 5; in prog_ddr_timing_control() 161 dtr4 |= ((1 + tmp1 - tmp2 + 2) << 8); in prog_ddr_timing_control() 163 dtr4 |= ((1 + tmp1 - tmp2 + 2) << 12); in prog_ddr_timing_control()
|