Searched defs:s_mp_cmp (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c748 } 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 43 milliseconds