HomeSort by relevance Sort by last modified time
    Searched full:lcm (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /external/dropbear/
genrsa.c 45 DEF_MP_INT(lcm);
56 &pminus, &lcm, &qminus, NULL);
77 /* lcm(p-1, q-1) */
78 if (mp_lcm(&pminus, &qminus, &lcm) != MP_OKAY) {
83 /* de = 1 mod lcm(p-1,q-1) */
84 /* therefore d = (e^-1) mod lcm(p-1,q-1) */
85 if (mp_invmod(key->e, &lcm, key->d) != MP_OKAY) {
90 mp_clear_multi(&pminus, &qminus, &lcm, NULL);
  /external/dropbear/libtommath/
bn_mp_lcm.c 36 /* store quotient in t2 such that t2 * b is the LCM */
42 /* store quotient in t2 such that t2 * a is the LCM */
poster.tex 30 $c = a^{1/b}$ & {\tt mp\_n\_root(\&a, b, \&c)} & $c = \mbox{lcm}(a, b)$ & {\tt mp\_lcm(\&a, \&b, \&c)} \\
  /external/opencv/cvaux/src/
cvlcm.cpp 102 // LCM : in&out.
107 int _cvConstructLCM(CvLCM* LCM);
279 CvLCM LCM = {NULL, VoronoiDiagram,NULL,NULL,maxWidth};
301 LCM.EdgeStorage = cvCreateChildMemStorage(LCMstorage);
302 LCM.ContourStorage = cvCreateChildMemStorage(LCMstorage);
303 LCM.Graph = cvCreateGraph(CV_SEQ_KIND_GRAPH|CV_GRAPH_FLAG_ORIENTED,
308 if(!_cvConstructLCM(&LCM))
309 cvReleaseLinearContorModelStorage(&LCM.Graph);
313 return LCM.Graph;
351 int _cvConstructLCM(CvLCM* LCM)
    [all...]
  /external/dropbear/libtomcrypt/src/pk/rsa/
rsa_make_key.c 70 /* tmp1 = lcm(p-1, q-1) */
73 if ((err = mp_lcm( tmp1, tmp2, tmp1)) != CRYPT_OK) { goto errkey; } /* tmp1 = lcm(p-1, q-1) */
81 if ((err = mp_invmod( key->e, tmp1, key->d)) != CRYPT_OK) { goto errkey; } /* key->d = 1/e mod lcm(p-1,q-1) */
  /external/dropbear/libtomcrypt/src/math/
gmp_desc.c 298 /* lcm */
299 static int lcm(void *a, void *b, void *c) function
428 &lcm,
ltm_desc.c 302 /* lcm */
303 static int lcm(void *a, void *b, void *c) function
434 &lcm,
tfm_desc.c 312 /* lcm */
313 static int lcm(void *a, void *b, void *c) function
722 &lcm,
  /external/openssl/crypto/rsa/
rsa_chk.c 107 /* d*e = 1 mod lcm(p-1,q-1)? */
114 /* now compute k = lcm(i,j) */
  /external/dropbear/libtommath/mtest/
mtest.c 218 /* lcm test */
224 printf("lcm\n");
  /external/libvpx/examples/includes/geshi/geshi/
haskell.php 83 'lcm', 'fromIntegral', 'realToFrac',
scheme.php 77 'l', 'lambda', 'last-pair', 'lcm', 'length', 'let', 'let*', 'letrec',
matlab.php 107 'lcm','legend','legendre','light','lighting','lightingangle',
scilab.php 127 'kron', 'kroneck', 'label_properties', 'labostat', 'LANGUAGE', 'lasterror', 'lattn', 'lattp', 'lcf', 'lcm',
  /external/qemu/audio/
mixeng.c 278 * lcm(in_rate,out_rate).
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_math.h 256 /** lcm
262 int (*lcm)(void *a, void *b, void *c); member in struct:__anon5289
482 #define mp_lcm(a, b, c) ltc_mp.lcm(a, b, c)
  /external/libvpx/examples/includes/ASCIIMathPHP-2.0/
ASCIIMathPHP-2.0.cfg.php 162 'lcm' => array( 'input'=>'lcm', 'tag'=>'mo', 'output'=>'lcm', 'unary'=>TRUE, 'func'=>TRUE),
  /external/dropbear/libtommath/demo/
demo.c 610 } else if (!strcmp(cmd, "lcm")) {
622 printf("lcm %lu failure!\n", lcm_n);
  /external/icu4c/i18n/
nfrs.cpp 98 // x * y == gcd(x, y) * lcm(x, y)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
basic-block.h 837 /* In lcm.c */
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
basic-block.h 837 /* In lcm.c */
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
basic-block.h 837 /* In lcm.c */
    [all...]
  /external/v8/benchmarks/
earley-boyer.js 418 var lcm = 1;
420 var f = Math.round(arguments[i] / sc_euclid_gcd(arguments[i], lcm));
421 lcm *= Math.abs(f);
423 return lcm;
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-earley-boyer.js 412 var lcm = 1;
414 var f = Math.round(arguments[i] / sc_euclid_gcd(arguments[i], lcm));
415 lcm *= Math.abs(f);
417 return lcm;
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-earley-boyer.js 412 var lcm = 1;
414 var f = Math.round(arguments[i] / sc_euclid_gcd(arguments[i], lcm));
415 lcm *= Math.abs(f);
417 return lcm;
    [all...]

Completed in 576 milliseconds

1 2 3 4 5 6 7