Symbol: mp_cmp
usr/src/common/crypto/ecc/ec.c
1026
if (mp_cmp(&v, &r_)) {
usr/src/common/crypto/ecc/ec.c
689
if ((mp_cmp_z(&k) <= 0) || (mp_cmp(&k, &n) >= 0)) {
usr/src/common/crypto/ecc/ec.c
941
mp_cmp(&r_, &n) >= 0 || mp_cmp(&s_, &n) >= 0) {
usr/src/common/crypto/ecc/ec2_aff.c
106
if (mp_cmp(px, qx) != 0) {
usr/src/common/crypto/ecc/ec2_aff.c
122
if (((mp_cmp(py, qy) != 0)) || (mp_cmp_z(qx) == 0)) {
usr/src/common/crypto/ecc/ec2_aff.c
307
if ((MP_SIGN(px) == MP_NEG) || (mp_cmp(px, &group->meth->irr) >= 0) ||
usr/src/common/crypto/ecc/ec2_aff.c
308
(MP_SIGN(py) == MP_NEG) || (mp_cmp(py, &group->meth->irr) >= 0)) {
usr/src/common/crypto/ecc/ec2_test.c
204
if ((mp_cmp(&rx, &group->genx) != 0)
usr/src/common/crypto/ecc/ec2_test.c
205
|| (mp_cmp(&ry, &group->geny) != 0)) {
usr/src/common/crypto/ecc/ec2_test.c
224
if ((mp_cmp(&rx, &group->genx) != 0)
usr/src/common/crypto/ecc/ec2_test.c
225
|| (mp_cmp(&ry, &group->geny) != 0)) {
usr/src/common/crypto/ecc/ec2_test.c
244
if ((mp_cmp(&rx, &group->genx) != 0)
usr/src/common/crypto/ecc/ec2_test.c
245
|| (mp_cmp(&ry, &group->geny) != 0)) {
usr/src/common/crypto/ecc/ec2_test.c
263
if ((mp_cmp(&rx, &gx) != 0) || (mp_cmp(&ry, &gy) != 0)) {
usr/src/common/crypto/ecc/ec2_test.c
280
if ((mp_cmp(&rx, &gx) != 0) || (mp_cmp(&ry, &gy) != 0)) {
usr/src/common/crypto/ecc/ec2_test.c
384
if ((mp_cmp(&rx, &gx) != 0) || (mp_cmp(&ry, &gy) != 0)) {
usr/src/common/crypto/ecc/ecl_gf.c
224
if (mp_cmp(r, &meth->irr) >= 0) {
usr/src/common/crypto/ecc/ecl_gf.c
327
((r2 == a2) && mp_cmp(r,&meth->irr) != MP_LT)) {
usr/src/common/crypto/ecc/ecl_gf.c
423
((r3 == a3) && mp_cmp(r,&meth->irr) != MP_LT)) {
usr/src/common/crypto/ecc/ecl_gf.c
517
((r4 == a4) && mp_cmp(r,&meth->irr) != MP_LT)) {
usr/src/common/crypto/ecc/ecl_gf.c
610
((r5 == a5) && mp_cmp(r,&meth->irr) != MP_LT)) {
usr/src/common/crypto/ecc/ecl_mult.c
331
if (mp_cmp(k1, &group->order) >= 0) {
usr/src/common/crypto/ecc/ecl_mult.c
342
if (mp_cmp(k2, &group->order) >= 0) {
usr/src/common/crypto/ecc/ecl_mult.c
68
if (mp_cmp(k, &group->order) > 0) {
usr/src/common/crypto/ecc/ecp_256.c
268
if (mp_cmp(r,&meth->irr) != MP_LT) {
usr/src/common/crypto/ecc/ecp_aff.c
113
if (mp_cmp(px, qx) != 0) {
usr/src/common/crypto/ecc/ecp_aff.c
120
if (((mp_cmp(py, qy) != 0)) || (mp_cmp_z(qy) == 0)) {
usr/src/common/crypto/ecc/ecp_aff.c
320
if ((MP_SIGN(px) == MP_NEG) || (mp_cmp(px, &group->meth->irr) >= 0) ||
usr/src/common/crypto/ecc/ecp_aff.c
321
(MP_SIGN(py) == MP_NEG) || (mp_cmp(py, &group->meth->irr) >= 0)) {
usr/src/common/crypto/ecc/ecp_jm.c
176
if (mp_cmp(A, px) == 0) {
usr/src/common/crypto/ecc/ecp_jm.c
177
if (mp_cmp(B, py) == 0) {
usr/src/common/crypto/ecc/ecp_test.c
202
if ((mp_cmp(&rx, &group->genx) != 0)
usr/src/common/crypto/ecc/ecp_test.c
203
|| (mp_cmp(&ry, &group->geny) != 0)) {
usr/src/common/crypto/ecc/ecp_test.c
223
if ((mp_cmp(&rx, &group->genx) != 0)
usr/src/common/crypto/ecc/ecp_test.c
224
|| (mp_cmp(&ry, &group->geny) != 0)) {
usr/src/common/crypto/ecc/ecp_test.c
242
if ((mp_cmp(&rx, &gx) != 0) || (mp_cmp(&ry, &gy) != 0)) {
usr/src/common/crypto/ecc/ecp_test.c
259
if ((mp_cmp(&rx, &gx) != 0) || (mp_cmp(&ry, &gy) != 0)) {
usr/src/common/crypto/ecc/ecp_test.c
346
if ((mp_cmp(&rx, &gx) != 0) || (mp_cmp(&ry, &gy) != 0)) {
usr/src/common/mpi/mpi.c
1743
out = mp_cmp(a, &tmp);
usr/src/common/mpi/mpi.c
2011
if(mp_cmp(&u, &v) >= 0) {
usr/src/common/mpi/mpi.c
2129
diff_sign = mp_cmp(&f, &g);
usr/src/common/mpi/mpi.c
2330
if (mp_cmp(&t1, &t0) == MP_EQ)
usr/src/common/mpi/mpi.c
4419
while(mp_cmp(x, m) >= 0) {
usr/src/common/mpi/mpi.h
311
int mp_cmp(const mp_int *a, const mp_int *b);
usr/src/common/mpi/mpmontg.c
118
if ((res = mp_cmp(T, &mmm->N)) >= 0) {