Lines Matching defs:temp_ff
3148 fixed20_12 peak_disp_bw, mem_bw, pix_clk, pix_clk2, temp_ff;
3262 temp_ff.full = dfixed_const(temp);
3263 mem_bw.full = dfixed_mul(mclk_ff, temp_ff);
3269 temp_ff.full = dfixed_const(1000);
3271 pix_clk.full = dfixed_div(pix_clk, temp_ff);
3272 temp_ff.full = dfixed_const(pixel_bytes1);
3273 peak_disp_bw.full += dfixed_mul(pix_clk, temp_ff);
3276 temp_ff.full = dfixed_const(1000);
3278 pix_clk2.full = dfixed_div(pix_clk2, temp_ff);
3279 temp_ff.full = dfixed_const(pixel_bytes2);
3280 peak_disp_bw.full += dfixed_mul(pix_clk2, temp_ff);
3383 temp_ff.full = dfixed_const_666(16);
3384 sclk_eff_ff.full -= dfixed_mul(agpmode_ff, temp_ff);
3420 temp_ff.full = dfixed_const(2);
3421 mc_latency_mclk.full = dfixed_mul(trcd_ff, temp_ff);
3422 temp_ff.full = dfixed_const(c);
3423 mc_latency_mclk.full += dfixed_mul(tcas_ff, temp_ff);
3424 temp_ff.full = dfixed_const(4);
3425 mc_latency_mclk.full += dfixed_mul(tras_ff, temp_ff);
3426 mc_latency_mclk.full += dfixed_mul(trp_ff, temp_ff);
3430 mc_latency_mclk.full += dfixed_div(temp_ff, sclk_eff_ff);
3435 temp_ff.full = dfixed_const((2 * (cur_size - (rdev->mc.vram_is_ddr + 1))));
3436 temp_ff.full += trcd_ff.full;
3437 if (temp_ff.full < tras_ff.full)
3438 temp_ff.full = tras_ff.full;
3439 cur_latency_mclk.full = dfixed_div(temp_ff, mclk_ff);
3441 temp_ff.full = dfixed_const(cur_size);
3442 cur_latency_sclk.full = dfixed_div(temp_ff, sclk_eff_ff);
3475 temp_ff.full = dfixed_const((16/pixel_bytes1));
3476 disp_drain_rate.full = dfixed_div(pix_clk, temp_ff);
3555 temp_ff.full = dfixed_const((16/pixel_bytes2));
3556 disp_drain_rate2.full = dfixed_div(pix_clk2, temp_ff);
3577 temp_ff.full = dfixed_const(temp);
3578 temp_ff.full = dfixed_mul(mclk_ff, temp_ff);
3579 if (sclk_ff.full < temp_ff.full)
3580 temp_ff.full = sclk_ff.full;
3582 read_return_rate.full = temp_ff.full;
3585 temp_ff.full = read_return_rate.full - disp_drain_rate.full;
3586 time_disp1_drop_priority.full = dfixed_div(crit_point_ff, temp_ff);