Searched +refs:math +refs:gcd (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10.1/vim-55/runtime/syntax/
H A Dplaintex.vim70 " Keep this after plaintexMath, as we don���t want math mode started at a \$.
92 \ '\\\%(aleph\|alpha\|beta\|chi\|[dD]elta\|ell\|epsilon\|eta\|[gG]amma\|[ij]math\|iota\|kappa\|[lL]ambda\|[mn]u\|[oO]mega\|[pP][hs]\=i\|rho\|[sS]igma\|tau\|[tT]heta\|[uU]psilon\|var\%(epsilon\|ph\=i\|rho\|sigma\|theta\)\|[xX]i\|zeta\)\>'
96 \ '\\\%(arc\%(cos\|sin\|tan\)\|arg\|\%(cos\|sin\|tan\)h\=\|coth\=\|csc\|de[gt]\|dim\|exp\|gcd\|hom\|inf\|ker\|lo\=g\|lim\%(inf\|sup\)\=\|ln\|max\|min\|Pr\|sec\|sup\)\>'
/macosx-10.10.1/ruby-106/ruby/
H A Drational.c10 #include <math.h>
474 VALUE gcd; local
486 gcd = f_gcd(num, den);
487 num = f_idiv(num, gcd);
488 den = f_idiv(den, gcd);
625 * rat.numerator.gcd(rat.denominator) #=> 1
1687 * int.gcd(int2) -> integer
1689 * Returns the greatest common divisor (always positive). 0.gcd(x)
1690 * and x.gcd(0) return abs(x).
1692 * 2.gcd(
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/mtest/
H A Dmpi.c26 If MP_LOGTAB is not defined, use the math library to compute the
56 #include <math.h>
2018 ... by computing the product, and dividing out the gcd.
2023 mp_int gcd, prod; local
2029 if((res = mp_init(&gcd)) != MP_OKAY)
2036 if((res = mp_gcd(a, b, &gcd)) != MP_OKAY)
2039 res = mp_div(&prod, &gcd, c, NULL);
2044 mp_clear(&gcd);
/macosx-10.10.1/emacs-93/emacs/lisp/calc/
H A Dcalc-lang.el38 (setq math-expr-opers (or (get lang 'math-oper-table) math-standard-opers)
39 math-expr-function-mapping (get lang 'math-function-table)
40 math-expr-special-function-mapping (get lang 'math-special-function-table)
41 math-expr-variable-mapping (get lang 'math-variable-table)
42 calc-language-input-filter (get lang 'math
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn.tex19 \def\gcd{{\rm gcd}}
80 to implement ``bignum'' math. However, the resulting code has proven to be very useful. It has been used by numerous
259 are the pros and cons of LibTomMath by comparing it to the math routines from GnuPG\footnote{GnuPG v1.2.3 versus LibTomMath v0.28}.
280 It may seem odd to compare LibTomMath to GnuPG since the math in GnuPG is only a small portion of the entire application.
284 So it may feel tempting to just rip the math code out of GnuPG (or GnuMP where it was taken from originally) in your
290 on the other side of the coin LibTomMath offers you a totally free (public domain) well structured math library
1564 $gcd(G, P) = 1$.
H A Dtommath.tex19 \def\gcd{{\rm gcd}}
183 The most prevalent need for multiple precision arithmetic, often referred to as ``bignum'' math, is within the implementation
271 package. As a case study the ``LibTomMath''\footnote{Available at \url{http://math.libtomcrypt.com}} package is used
495 effect a math error (i.e. invalid input, heap error, etc) can cause a program to stop functioning which is definitely

Completed in 203 milliseconds