Home
last modified time | relevance | path

Searched refs:f_gcd (Results 1 – 12 of 12) sorted by relevance

/dports/math/lidia/lidia-2.3.0+latte-patches-2014-10-04/src/ec_order/eco_gfp/eco_gfp/
H A Deco_prime.cc223 ff_pol f_xp, f_gcd, f_x; in compute_splitting_type() local
231 f_gcd.set_modulus(p); in compute_splitting_type()
244 f_gcd = gcd(f_xp - f_x, meq_pol); in compute_splitting_type()
256 std::cout << "\nsplitting type: GCD = " << f_gcd << std::flush; in compute_splitting_type()
259 lidia_size_t gcd_degree = f_gcd.degree(); in compute_splitting_type()
262 ftau[0] = find_root(f_gcd); in compute_splitting_type()
280 ftau[0] = find_root(f_gcd); in compute_splitting_type()
295 ftau[0] = find_root(f_gcd); in compute_splitting_type()
296 divide(ftau[1], ff_element(f_gcd.const_term()), ftau[0]); in compute_splitting_type()
318 divide(meq_pol, meq_pol, f_gcd); in compute_splitting_type()
/dports/math/lidia/lidia-2.3.0+latte-patches-2014-10-04/src/ec_order/eco_gf2n/eco_gf2n/
H A Deco_gf2n.cc397 gf2n_polynomial f_xp, f_gcd, f_x; in compute_splitting_type() local
418 gcd (f_gcd, f_xp + f_x, meq_pol); in compute_splitting_type()
430 std::cout << "\nsplitting type: GCD = " << f_gcd << std::flush; in compute_splitting_type()
433 lidia_size_t gcd_degree = f_gcd.degree (); in compute_splitting_type()
456 ftau[0] = find_root (f_gcd, def_degree); in compute_splitting_type()
475 ftau[0] = find_root (f_gcd, def_degree); in compute_splitting_type()
476 divide (ftau[1], ff_element (f_gcd.const_term ()), ftau[0]); in compute_splitting_type()
504 divide (meq_pol, meq_pol, f_gcd); in compute_splitting_type()
/dports/lang/ruby26/ruby-2.6.9/
H A Drational.c268 #define f_gcd f_gcd_orig macro
351 f_gcd(VALUE x, VALUE y) in f_gcd() function
365 #undef f_gcd
368 f_gcd(VALUE x, VALUE y) in f_gcd() function
466 gcd = f_gcd(*x, *y); in nurat_reduce()
698 g = f_gcd(c, g); in f_addsub()
705 VALUE g = f_gcd(aden, bden); in f_addsub()
716 g = f_gcd(c, g); in f_addsub()
859 VALUE g1 = f_gcd(anum, bden); in f_muldiv()
860 VALUE g2 = f_gcd(aden, bnum); in f_muldiv()
[all …]
/dports/math/GiNaC/ginac-1.8.2/ginsh/
H A Dginsh_parser.cpp1995 static ex f_gcd(const exprseq &e) {return gcd(e[0], e[1]);} in f_gcd() function
2364 {"gcd", f_gcd, 2},
H A Dginsh_parser.ypp342 static ex f_gcd(const exprseq &e) {return gcd(e[0], e[1]);}
711 {"gcd", f_gcd, 2},
/dports/math/libqalculate/libqalculate-3.17.0/libqalculate/
H A DCalculator.h347 …MathFunction *f_abs, *f_gcd, *f_lcm, *f_signum, *f_heaviside, *f_dirac, *f_round, *f_floor, *f_cei… variable
H A DCalculator.cc1522 f_gcd = addFunction(new GcdFunction()); in addBuiltinFunctions()
/dports/lang/eisl/eisl-2.35/
H A Deisl.h828 int f_gcd(int x);
H A Dfunction.c112 defsubr("GCD", f_gcd); in initsubr()
931 f_gcd(int arglist) in f_gcd() function
/dports/math/qalculate/qalculate-gtk-3.17.0/src/
H A Dinterface.cc1011 …MENU_ITEM_WITH_POINTER(CALCULATOR->f_gcd->title(true).c_str(), insert_button_function, CALCULATOR-… in create_button_menus()
/dports/math/calc/calc-2.14.0.14/
H A Dfunc.c1664 f_gcd(int count, NUMBER **vals) in f_gcd() function
10106 {"gcd", 1, IN, 0, OP_NOP, f_gcd, 0,
/dports/lang/ruby26/ruby-2.6.9/doc/
H A DChangeLog-2.1.05270 * rational.c (f_gcd): Relax the condition to use GMP.
5356 (f_gcd_normal): Renamed from f_gcd.
5358 (f_gcd): Invoke rb_gcd_gmp or f_gcd_normal.