Searched refs:gcd (Results 1 - 14 of 14) sorted by relevance

/freebsd-10.1-release/sys/kgssapi/krb5/
H A Dkcrypto.c90 gcd(size_t a, size_t b) function
95 return gcd(b, a % b);
101 return ((a * b) / gcd(a, b));
/freebsd-10.1-release/contrib/file/src/
H A Dgetopt_long.c93 static int gcd(int, int);
115 gcd(a, b) function
153 ncycle = gcd(nnonopts, nopts);
/freebsd-10.1-release/crypto/openssh/openbsd-compat/
H A Dgetopt_long.c98 static int gcd(int, int);
119 gcd(int a, int b) function
150 ncycle = gcd(nnonopts, nopts);
/freebsd-10.1-release/lib/libc/stdlib/
H A Dgetopt_long.c104 static int gcd(int, int);
135 gcd(int a, int b) function
166 ncycle = gcd(nnonopts, nopts);
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/
H A DTargetSchedule.cpp39 static unsigned gcd(unsigned Dividend, unsigned Divisor) { function
49 unsigned LCM = (uint64_t(A) * B) / gcd(A, B);
/freebsd-10.1-release/contrib/gcc/
H A Dlambda.h385 gcd (int a, int b) function
414 gcd1 = gcd (gcd1, vector[i]);
H A Dlambda-code.c448 return (abs (a) * abs (b) / gcd (a, b));
810 /* Computes the gcd of the coefficients of the linear part. */
814 gcd1 = gcd (gcd1, determinant);
816 /* Now divide through by the gcd. */
872 /* Find the gcd and divide by it here, rather than doing it
877 gcd1 = gcd (gcd1, gcd2);
878 gcd1 = gcd (gcd1, LLE_CONSTANT (target_expr));
879 gcd1 = gcd (gcd1, LLE_DENOMINATOR (target_expr));
928 /* Find the gcd and divide by it here, instead of at the
933 gcd1 = gcd (gcd
[all...]
H A Dtree-data-ref.c572 /* Determines whether (A == gcd (A, B)). */
2653 gcd_steps_a_b = gcd (step_a, step_b);
2949 /* The classic "gcd-test". */
2952 /* The "gcd-test" has determined that there is no integer
/freebsd-10.1-release/sbin/geom/misc/
H A Dsubr.c68 gcd(unsigned int a, unsigned int b) function
87 return ((a * b) / gcd(a, b));
/freebsd-10.1-release/sys/geom/concat/
H A Dg_concat.c76 gcd(u_int a, u_int b) function
95 return ((a * b) / gcd(a, b));
/freebsd-10.1-release/sys/geom/shsec/
H A Dg_shsec.c89 gcd(u_int a, u_int b) function
108 return ((a * b) / gcd(a, b));
/freebsd-10.1-release/sys/geom/stripe/
H A Dg_stripe.c104 gcd(u_int a, u_int b) function
123 return ((a * b) / gcd(a, b));
/freebsd-10.1-release/contrib/llvm/lib/Analysis/
H A DScalarEvolution.cpp5392 // 1. D = gcd(A, N)
5394 // The gcd of A and N may have only one prime factor: 2. The number of
6680 static const APInt gcd(const SCEVConstant *C1, const SCEVConstant *C2) {
6749 const SCEV *Res = SE.getConstant(gcd(Constant, CGCD));
6755 Res = SE.getConstant(gcd(Constant, CGCD));
/freebsd-10.1-release/sys/dev/sound/pci/hda/
H A Dhdaa.c2028 gcd(unsigned a, unsigned b) function
2047 return ((a * b) / gcd(a, b));

Completed in 178 milliseconds