Home
last modified time | relevance | path

Searched full:testp (Results 1 – 7 of 7) sorted by relevance

/linux/drivers/gpu/drm/mgag200/
H A Dmgag200_g200ew3.c37 unsigned int testp, testm, testn, testp2; in mgag200_g200ew3_pixpllc_atomic_check()
44 for (testp = 1; testp < 8; testp++) { in mgag200_g200ew3_pixpllc_atomic_check()
46 if (testp < testp2) in mgag200_g200ew3_pixpllc_atomic_check()
48 if ((clock * testp * testp2) > vcomax) in mgag200_g200ew3_pixpllc_atomic_check()
50 if ((clock * testp * testp2) < vcomin) in mgag200_g200ew3_pixpllc_atomic_check()
54 computed = (pllreffreq * testn) / (testm * testp * testp2); in mgag200_g200ew3_pixpllc_atomic_check()
63 p = testp + 1; in mgag200_g200ew3_pixpllc_atomic_check()
36 unsigned int testp, testm, testn, testp2; mgag200_g200ew3_pixpllc_atomic_check() local
H A Dmgag200_g200eh.c55 unsigned int testp, testm, testn; in mgag200_g200eh_pixpllc_atomic_check()
62 for (testp = 16; testp > 0; testp >>= 1) { in mgag200_g200eh_pixpllc_atomic_check()
63 if (clock * testp > vcomax) in mgag200_g200eh_pixpllc_atomic_check()
65 if (clock * testp < vcomin) in mgag200_g200eh_pixpllc_atomic_check()
70 computed = (pllreffreq * testn) / (testm * testp); in mgag200_g200eh_pixpllc_atomic_check()
79 p = testp; in mgag200_g200eh_pixpllc_atomic_check()
54 unsigned int testp, testm, testn; mgag200_g200eh_pixpllc_atomic_check() local
H A Dmgag200_g200wb.c53 unsigned int testp, testm, testn; in mgag200_g200wb_pixpllc_atomic_check()
60 for (testp = 1; testp < 9; testp++) { in mgag200_g200wb_pixpllc_atomic_check()
61 if (clock * testp > vcomax) in mgag200_g200wb_pixpllc_atomic_check()
63 if (clock * testp < vcomin) in mgag200_g200wb_pixpllc_atomic_check()
68 computed = (pllreffreq * testn) / (testm * testp); in mgag200_g200wb_pixpllc_atomic_check()
77 p = testp; in mgag200_g200wb_pixpllc_atomic_check()
52 unsigned int testp, testm, testn; mgag200_g200wb_pixpllc_atomic_check() local
H A Dmgag200_g200.c79 u8 testp, testm, testn; in mgag200_g200_pixpllc_atomic_check()
97 for (testp = 0; in mgag200_g200_pixpllc_atomic_check()
98 testp <= post_div_max && f_vco < p_clk_min; in mgag200_g200_pixpllc_atomic_check()
99 testp = (testp << 1) + 1, f_vco <<= 1) in mgag200_g200_pixpllc_atomic_check()
101 p = testp + 1; in mgag200_g200_pixpllc_atomic_check()
78 u8 testp, testm, testn; mgag200_g200_pixpllc_atomic_check() local
H A Dmgag200_g200eh3.c30 unsigned int testp, testm, testn; in mgag200_g200eh3_pixpllc_atomic_check()
36 testp = 0; in mgag200_g200eh3_pixpllc_atomic_check()
53 p = testp + 1; in mgag200_g200eh3_pixpllc_atomic_check()
29 unsigned int testp, testm, testn; mgag200_g200eh3_pixpllc_atomic_check() local
/linux/tools/testing/selftests/powerpc/alignment/
H A Dalignment_handler.c95 #define TESTP(name, ld_op, st_op, ld_reg, st_reg) \ macro
125 #define LOAD_MLS_PREFIX_TEST(op) TESTP(op, op, PSTD, 31, 31)
126 #define STORE_MLS_PREFIX_TEST(op) TESTP(op, PLD, op, 31, 31)
128 #define LOAD_8LS_PREFIX_TEST(op) TESTP(op, op, PSTD, 31, 31)
129 #define STORE_8LS_PREFIX_TEST(op) TESTP(op, PLD, op, 31, 31)
131 #define LOAD_FLOAT_MLS_PREFIX_TEST(op) TESTP(op, op, PSTFD, 0, 0)
132 #define STORE_FLOAT_MLS_PREFIX_TEST(op) TESTP(op, PLFD, op, 0, 0)
134 #define LOAD_VSX_8LS_PREFIX_TEST(op, tail) TESTP(op, op, PSTXV ## tail, 0, 32)
135 #define STORE_VSX_8LS_PREFIX_TEST(op, tail) TESTP(op, PLXV ## tail, op, 32, 0)
/linux/tools/testing/selftests/x86/
H A Dtest_FCOMI.c183 int testp(long flags) in testp() function
320 err |= testp(0); in main()
323 err |= testp(CF|ZF|PF); in main()