Searched refs:s_mp_cmp (Results 1 - 3 of 3) sorted by relevance
/openjdk7/jdk/src/share/native/sun/security/ec/impl/ |
H A D | mpmontg.c | 104 if ((res = s_mp_cmp(T, &mmm->N)) >= 0) { 168 if (s_mp_cmp(c, &mmm->N) >= 0) {
|
H A D | mpi-priv.h | 224 int s_mp_cmp(const mp_int *a, const mp_int *b); /* magnitude comparison */
|
H A D | mpi.c | 748 } else if(s_mp_cmp(a, b) >= 0) { /* different sign: |a| >= |b| */ 786 } else if (!(magDiff = s_mp_cmp(a, b))) { 1043 if ((cmp = s_mp_cmp(a, b)) <= 0) { 1236 if((mag = s_mp_cmp(a, m)) > 0) { 1681 if((mag = s_mp_cmp(a, b)) == MP_EQ) 1711 return s_mp_cmp(a, b); 4251 while (MP_USED(rem) > MP_USED(div) || s_mp_cmp(rem, div) >= 0) { 4259 if (s_mp_cmp(&part, div) < 0) { 4305 for (i = 4; s_mp_cmp(&t, &part) > 0 && i > 0; --i) { 4431 /* {{{ s_mp_cmp( 4434 int s_mp_cmp(const mp_int *a, const mp_int *b) function [all...] |
Completed in 623 milliseconds