Lines Matching refs:roots

64    mpc_t *roots;  in example1()  local
81 roots = (mpc_t *) malloc (deg * sizeof (mpc_t)); in example1()
83 mpc_init2 (roots [i], prec); in example1()
85 mpc_set_str (roots [ 0], "11.537612002601293729555643926712700128", 10, MPC_RNDNN); in example1()
86 mpc_set_str (roots [ 1], "-1.2359811407720793940569330632262337764", 10, MPC_RNDNN); in example1()
87 mpc_set_str (roots [ 2], "-0.88158412095480496703824738845507654109", 10, MPC_RNDNN); in example1()
88 mpc_set_str (roots [ 3], "1.0537757586472475214611033030981796170", 10, MPC_RNDNN); in example1()
89 …mpc_set_str (roots [ 4], "(-1.3738815073324657798749662481447867991 -1.152823466487532837270753795… in example1()
90 …mpc_set_str (roots [ 5], "(0.15539825039129532339792538912105083438 0.8325568221194235058040024515… in example1()
91 …mpc_set_str (roots [ 6], "(0.23751391794267422186896086399600757039 -0.664252313096245773782375685… in example1()
92 …mpc_set_str (roots [ 7], "(0.75323765599341107222341710074633201727 -0.243540738060616261680532422… in example1()
93 …mpc_set_str (roots [ 8], "(-0.66231668017784407796844395136033368855 0.701487280323607124873115629… in example1()
94 …mpc_set_str (roots [ 9], "(-0.62514835842316383925952894202832472183 -0.49160598090266240182413906… in example1()
95 …mpc_set_str (roots [10], "(-0.22655403352361409872463829988445090319 -0.81762769695565820067029579… in example1()
96 …mpc_set_str (roots [11], "(-0.49516049463112126662350930151027902325 -0.04876903326892244252584901… in example1()
97 mpc_conj (roots [12], roots [10], MPC_RNDNN); in example1()
98 mpc_conj (roots [13], roots [11], MPC_RNDNN); in example1()
99 mpc_conj (roots [14], roots [ 8], MPC_RNDNN); in example1()
100 mpc_conj (roots [15], roots [ 9], MPC_RNDNN); in example1()
101 mpc_conj (roots [16], roots [ 6], MPC_RNDNN); in example1()
102 mpc_conj (roots [17], roots [ 7], MPC_RNDNN); in example1()
103 mpc_conj (roots [18], roots [ 4], MPC_RNDNN); in example1()
104 mpc_conj (roots [19], roots [ 5], MPC_RNDNN); in example1()
107 mpcx_tower_decomposition (twr, roots); in example1()
131 mpc_clear (roots [i]); in example1()
132 free (roots); in example1()
144 mpc_t *roots; in example2() local
152 roots = (mpc_t *) malloc (deg * sizeof (mpc_t)); in example2()
154 mpc_init2 (roots [i], prec); in example2()
156 mpc_set_str (roots [ 0], "1.2599210498948731647672106072782283506", 10, MPC_RNDNN); in example2()
157 …mpc_set_str (roots [ 1], "(-0.62996052494743658238360530363911417528 1.091123635971721403560072614… in example2()
158 mpc_conj (roots [2], roots [1], MPC_RNDNN); in example2()
161 mpcx_tower_decomposition (twr, roots); in example2()
177 mpc_clear (roots [i]); in example2()
178 free (roots); in example2()