Home
last modified time | relevance | path

Searched refs:computed (Results 1 - 25 of 32) sorted by relevance

12

/kernel/linux/linux-5.10/drivers/gpu/drm/mgag200/
H A Dmgag200_mode.c126 long computed; in mgag200_g200_set_plls() local
150 computed = ref_clk * (testn + 1) / (testm + 1); in mgag200_g200_set_plls()
151 if (computed < f_vco) in mgag200_g200_set_plls()
152 tmp_delta = f_vco - computed; in mgag200_g200_set_plls()
154 tmp_delta = computed - f_vco; in mgag200_g200_set_plls()
193 unsigned int computed; in mga_g200se_set_plls() local
216 computed = (pllreffreq * testn) / in mga_g200se_set_plls()
218 if (computed > clock) in mga_g200se_set_plls()
219 tmpdelta = computed - clock; in mga_g200se_set_plls()
221 tmpdelta = clock - computed; in mga_g200se_set_plls()
314 unsigned int computed; mga_g200wb_set_plls() local
495 unsigned int computed; mga_g200ev_set_plls() local
590 unsigned int computed; mga_g200eh_set_plls() local
723 unsigned int computed, vco; mga_g200er_set_plls() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/mgag200/
H A Dmgag200_g200eh3.c31 unsigned int computed; in mgag200_g200eh3_pixpllc_atomic_check() local
43 computed = (pllreffreq * testn) / testm; in mgag200_g200eh3_pixpllc_atomic_check()
44 if (computed > clock) in mgag200_g200eh3_pixpllc_atomic_check()
45 tmpdelta = computed - clock; in mgag200_g200eh3_pixpllc_atomic_check()
47 tmpdelta = clock - computed; in mgag200_g200eh3_pixpllc_atomic_check()
H A Dmgag200_g200se.c128 unsigned int computed; in mgag200_g200se_00_pixpllc_atomic_check() local
142 computed = (pllreffreq * testn) / (testm * testp); in mgag200_g200se_00_pixpllc_atomic_check()
143 if (computed > clock) in mgag200_g200se_00_pixpllc_atomic_check()
144 tmpdelta = computed - clock; in mgag200_g200se_00_pixpllc_atomic_check()
146 tmpdelta = clock - computed; in mgag200_g200se_00_pixpllc_atomic_check()
212 unsigned int computed; in mgag200_g200se_04_pixpllc_atomic_check() local
236 computed = (pllreffreq * testn) / (testm * testp); in mgag200_g200se_04_pixpllc_atomic_check()
237 if (computed > clock) in mgag200_g200se_04_pixpllc_atomic_check()
238 tmpdelta = computed - clock; in mgag200_g200se_04_pixpllc_atomic_check()
240 tmpdelta = clock - computed; in mgag200_g200se_04_pixpllc_atomic_check()
[all...]
H A Dmgag200_g200ew3.c38 unsigned int computed; in mgag200_g200ew3_pixpllc_atomic_check() local
53 computed = (pllreffreq * testn) / (testm * testp * testp2); in mgag200_g200ew3_pixpllc_atomic_check()
54 if (computed > clock) in mgag200_g200ew3_pixpllc_atomic_check()
55 tmpdelta = computed - clock; in mgag200_g200ew3_pixpllc_atomic_check()
57 tmpdelta = clock - computed; in mgag200_g200ew3_pixpllc_atomic_check()
H A Dmgag200_g200er.c74 unsigned int computed, vco; in mgag200_g200er_pixpllc_atomic_check() local
95 computed = vco / (m_div_val[testm] * (testo + 1)); in mgag200_g200er_pixpllc_atomic_check()
96 if (computed > clock) in mgag200_g200er_pixpllc_atomic_check()
97 tmpdelta = computed - clock; in mgag200_g200er_pixpllc_atomic_check()
99 tmpdelta = clock - computed; in mgag200_g200er_pixpllc_atomic_check()
H A Dmgag200_g200ev.c62 unsigned int computed; in mgag200_g200ev_pixpllc_atomic_check() local
75 computed = (pllreffreq * testn) / in mgag200_g200ev_pixpllc_atomic_check()
77 if (computed > clock) in mgag200_g200ev_pixpllc_atomic_check()
78 tmpdelta = computed - clock; in mgag200_g200ev_pixpllc_atomic_check()
80 tmpdelta = clock - computed; in mgag200_g200ev_pixpllc_atomic_check()
H A Dmgag200_g200wb.c54 unsigned int computed; in mgag200_g200wb_pixpllc_atomic_check() local
67 computed = (pllreffreq * testn) / (testm * testp); in mgag200_g200wb_pixpllc_atomic_check()
68 if (computed > clock) in mgag200_g200wb_pixpllc_atomic_check()
69 tmpdelta = computed - clock; in mgag200_g200wb_pixpllc_atomic_check()
71 tmpdelta = clock - computed; in mgag200_g200wb_pixpllc_atomic_check()
H A Dmgag200_g200eh.c56 unsigned int computed; in mgag200_g200eh_pixpllc_atomic_check() local
69 computed = (pllreffreq * testn) / (testm * testp); in mgag200_g200eh_pixpllc_atomic_check()
70 if (computed > clock) in mgag200_g200eh_pixpllc_atomic_check()
71 tmpdelta = computed - clock; in mgag200_g200eh_pixpllc_atomic_check()
73 tmpdelta = clock - computed; in mgag200_g200eh_pixpllc_atomic_check()
H A Dmgag200_g200.c81 long computed; in mgag200_g200_pixpllc_atomic_check() local
106 computed = ref_clk * (testn + 1) / (testm + 1); in mgag200_g200_pixpllc_atomic_check()
107 if (computed < f_vco) in mgag200_g200_pixpllc_atomic_check()
108 tmp_delta = f_vco - computed; in mgag200_g200_pixpllc_atomic_check()
110 tmp_delta = computed - f_vco; in mgag200_g200_pixpllc_atomic_check()
/kernel/linux/linux-6.6/drivers/gpu/drm/loongson/
H A Dlsdc_pixpll.c201 unsigned int computed; in lsdc_pixel_pll_compute() local
216 computed = refclk / div_ref * loopc / div_out; in lsdc_pixel_pll_compute()
218 if (clock >= computed) in lsdc_pixel_pll_compute()
219 diff = clock - computed; in lsdc_pixel_pll_compute()
221 diff = computed - clock; in lsdc_pixel_pll_compute()
/kernel/linux/linux-5.10/tools/perf/
H A Dbuiltin-diff.c285 pair->diff.computed = true; in compute_delta()
294 pair->diff.computed = true; in compute_ratio()
304 pair->diff.computed = true; in compute_wdiff()
635 pair->diff.computed = true; in compute_cycles_diff()
844 * The delta can be computed without the baseline, but in hist_entry__cmp_compute_idx()
1418 if (pair->diff.computed) in __hpp__color_compare()
1429 if (pair->diff.computed) in __hpp__color_compare()
1440 if (pair->diff.computed) in __hpp__color_compare()
1594 if (pair->diff.computed) in hpp__entry_pair()
1609 if (pair->diff.computed) in hpp__entry_pair()
[all...]
/kernel/linux/linux-6.6/tools/perf/
H A Dbuiltin-diff.c285 pair->diff.computed = true; in compute_delta()
294 pair->diff.computed = true; in compute_ratio()
304 pair->diff.computed = true; in compute_wdiff()
637 pair->diff.computed = true; in compute_cycles_diff()
846 * The delta can be computed without the baseline, but in hist_entry__cmp_compute_idx()
1421 if (pair->diff.computed) in __hpp__color_compare()
1432 if (pair->diff.computed) in __hpp__color_compare()
1443 if (pair->diff.computed) in __hpp__color_compare()
1597 if (pair->diff.computed) in hpp__entry_pair()
1612 if (pair->diff.computed) in hpp__entry_pair()
[all...]
/kernel/linux/linux-5.10/arch/c6x/lib/
H A Ddivu.S33 ;; in A4. The top bit of the quotient is computed first and is
H A Ddivremu.S16 ;; in A4. The top bit of the quotient is computed first and is
/kernel/linux/linux-5.10/tools/perf/util/
H A Dsort.h62 bool computed; member
/kernel/linux/linux-6.6/tools/perf/util/
H A Dsort.h61 bool computed; member
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
H A Dbindec.S49 | If LEN is computed to be greater than 17, set OPERR in
282 | If LEN is computed to be greater than 17, set OPERR in
657 | 10^LEN-1 is computed for this test and A14. If the input was
692 | 10^LEN is again computed using whatever table is in a1 since the
H A Dssin.S68 | sin(r) and cos(r) are computed as odd and even polynomials
73 | sin(r) and cos(r) are computed as odd and even polynomials
/kernel/linux/linux-6.6/arch/m68k/fpsp040/
H A Dbindec.S49 | If LEN is computed to be greater than 17, set OPERR in
282 | If LEN is computed to be greater than 17, set OPERR in
657 | 10^LEN-1 is computed for this test and A14. If the input was
692 | 10^LEN is again computed using whatever table is in a1 since the
H A Dssin.S68 | sin(r) and cos(r) are computed as odd and even polynomials
73 | sin(r) and cos(r) are computed as odd and even polynomials
/kernel/linux/linux-5.10/arch/sparc/lib/
H A Dchecksum_32.S145 mov %o2, %o0 ! return computed csum
365 mov %g7, %o0 ! give em the computed checksum
/kernel/linux/linux-6.6/arch/sparc/lib/
H A Dchecksum_32.S145 mov %o2, %o0 ! return computed csum
356 mov %g7, %o0 ! give em the computed checksum
/kernel/linux/linux-5.10/fs/ocfs2/cluster/
H A Dheartbeat.c652 u32 read, computed; in o2hb_verify_crc() local
655 computed = o2hb_compute_block_crc_le(reg, hb_block); in o2hb_verify_crc()
657 return read == computed; in o2hb_verify_crc()
1003 * computed from this value, and a discrepancy might in o2hb_check_slot()
/kernel/linux/linux-6.6/fs/ocfs2/cluster/
H A Dheartbeat.c645 u32 read, computed; in o2hb_verify_crc() local
648 computed = o2hb_compute_block_crc_le(reg, hb_block); in o2hb_verify_crc()
650 return read == computed; in o2hb_verify_crc()
996 * computed from this value, and a discrepancy might in o2hb_check_slot()
/kernel/linux/linux-5.10/arch/x86/crypto/
H A Dsha512-avx-asm.S163 # Two rounds are computed based on the values for K[t-2]+W[t-2] and

Completed in 26 milliseconds

12