Home
last modified time | relevance | path

Searched refs:temp2 (Results 1 – 10 of 10) sorted by relevance

/openbmc/u-boot/drivers/ddr/fsl/
H A Dlc_common_dimm_params.c82 unsigned int temp1, temp2; in compute_cas_latency() local
104 temp2 = 0; in compute_cas_latency()
105 temp2 |= 1 << dimm_params[i].caslat_x; in compute_cas_latency()
106 temp2 |= 1 << dimm_params[i].caslat_x_minus_1; in compute_cas_latency()
107 temp2 |= 1 << dimm_params[i].caslat_x_minus_2; in compute_cas_latency()
119 temp1 &= temp2; in compute_cas_latency()
128 temp2 = 0; in compute_cas_latency()
131 temp2 = __ilog2(temp1); in compute_cas_latency()
132 debug("checking common caslat = %u\n", temp2); in compute_cas_latency()
139 if (dimm_params[i].caslat_x == temp2) { in compute_cas_latency()
[all …]
/openbmc/qemu/target/tricore/
H A Dtranslate.c283 TCGv temp2 = tcg_temp_new(); in gen_ldmst() local
291 tcg_gen_and_tl(temp2, cpu_gpr_d[ereg], cpu_gpr_d[ereg+1]); in gen_ldmst()
293 tcg_gen_or_tl(temp, temp, temp2); in gen_ldmst()
313 TCGv temp2 = tcg_temp_new(); in gen_cmpswap() local
316 tcg_gen_movcond_tl(TCG_COND_EQ, temp2, cpu_gpr_d[reg+1], temp, in gen_cmpswap()
318 tcg_gen_qemu_st_tl(temp2, ea, ctx->mem_idx, MO_LEUL); in gen_cmpswap()
325 TCGv temp2 = tcg_temp_new(); in gen_swapmsk() local
329 tcg_gen_and_tl(temp2, cpu_gpr_d[reg], cpu_gpr_d[reg+1]); in gen_swapmsk()
331 tcg_gen_or_tl(temp2, temp2, temp3); in gen_swapmsk()
332 tcg_gen_qemu_st_tl(temp2, ea, ctx->mem_idx, MO_LEUL); in gen_swapmsk()
[all …]
/openbmc/qemu/target/riscv/insn_trans/
H A Dtrans_rvm.c.inc178 TCGv temp1, temp2, zero, one, mone, min;
181 temp2 = tcg_temp_new();
188 * If overflow, set temp2 to 1, else source2.
192 tcg_gen_setcond_tl(TCG_COND_EQ, temp2, source2, mone);
193 tcg_gen_and_tl(temp1, temp1, temp2);
194 tcg_gen_movcond_tl(TCG_COND_NE, temp2, temp1, zero, one, source2);
197 * If div by zero, set temp1 to -1 and temp2 to 1 to
201 tcg_gen_movcond_tl(TCG_COND_EQ, temp2, source2, zero, one, temp2);
203 tcg_gen_div_tl(ret, temp1, temp2);
221 TCGv temp1, temp2, zero, one, max;
[all …]
/openbmc/u-boot/board/freescale/common/
H A Ddcu_sii9022a.c64 u16 temp1, temp2; in dcu_set_dvi_encoder() local
109 temp2 = videomode->vsync_len + videomode->upper_margin + in dcu_set_dvi_encoder()
111 temp = (u8)(temp2 & 0xFF); in dcu_set_dvi_encoder()
113 temp = (u8)(temp2 >> 8); in dcu_set_dvi_encoder()
117 temp3 = temp1 * temp2; in dcu_set_dvi_encoder()
/openbmc/openbmc-test-automation/lib/
H A Dgen_robot_plug_in.py122 temp2 = tempfile.NamedTemporaryFile()
123 temp_properties_file_path = temp2.name
/openbmc/u-boot/lib/
H A Dsha256.c60 uint32_t temp1, temp2; in sha256_process() local
101 temp2 = S2(a) + F0(a,b,c); \ in sha256_process()
102 d += temp1; h = temp1 + temp2; \ in sha256_process()
/openbmc/u-boot/drivers/video/
H A Dipu_common.c68 u32 temp2; \
75 temp2 = _param_word(base, w)[i + 1]; \
76 temp2 &= mask >> (off ? (32 - off) : 0); \
77 temp1 |= temp2 << (off ? (32 - off) : 0); \
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/aom/aom/
H A D0001-subpel_variance_neon-Provide-prototypes-for-missing-.patch10 | return aom_variance8x8_neon(temp2, 8, dst, dst_stride, sse);
/openbmc/u-boot/arch/x86/cpu/quark/
H A Dsmc.c1962 uint32_t temp2; in rd_train() local
1976 temp2 = (x_coordinate[R][B][ch][rk][bl] + x_coordinate[L][B][ch][rk][bl]) / 2; in rd_train()
1978 x_center[ch][rk][bl] = (uint8_t) ((temp1 + temp2) / 2); in rd_train()
1992 temp2 = (y_coordinate[L][T][ch][bl] + y_coordinate[L][B][ch][bl]) / 2; in rd_train()
1994 y_center[ch][bl] = (uint8_t) ((temp1 + temp2) / 2); in rd_train()
/openbmc/qemu/target/i386/
H A Dops_sse.h1822 float32 prod1, prod2, temp2, temp3, temp4; in glue() local
1840 temp2 = float32_add(prod1, prod2, &env->sse_status); in glue()
1852 temp4 = float32_add(temp2, temp3, &env->sse_status); in glue()
1866 float64 prod1, prod2, temp2; in glue() local
1878 temp2 = float64_add(prod1, prod2, &env->sse_status); in glue()
1879 d->ZMM_D(0) = (mask & (1 << 0)) ? temp2 : float64_zero; in glue()
1880 d->ZMM_D(1) = (mask & (1 << 1)) ? temp2 : float64_zero; in glue()