Home
last modified time | relevance | path

Searched refs:mp_neg (Results 1 – 11 of 11) sorted by relevance

/external/dropbear/libtommath/
Dbn_mp_exteuclid.c64 mp_neg(&u1, &u1); in mp_exteuclid()
65 mp_neg(&u2, &u2); in mp_exteuclid()
66 mp_neg(&u3, &u3); in mp_exteuclid()
Dbn_mp_neg.c19 int mp_neg (mp_int * a, mp_int * b) in mp_neg() function
Dtommath.h299 int mp_neg(mp_int *a, mp_int *b);
Dchanges.txt152 -- Martin Marcel noticed a bug in mp_neg() that allowed negative zeroes.
385 -- Added mp_cmp_mag, mp_neg, mp_abs and mp_radix_size that were missing.
Dbn.tex837 if ((result = mp_neg(&number2, &number2)) != MP_OKAY) \{
895 if ((result = mp_neg(&number2, &number2)) != MP_OKAY) \{
1122 int mp_neg (mp_int * a, mp_int * b);
/external/dropbear/libtommath/mtest/
Dmpi.h119 mp_err mp_neg(mp_int *a, mp_int *b);
Dmpi.c589 mp_neg(b, b); in mp_sub_d()
835 mp_err mp_neg(mp_int *a, mp_int *b) in mp_neg() function
/external/dropbear/libtomcrypt/src/headers/
Dtomcrypt_math.h450 #define mp_neg(a, b) ltc_mp.neg(a, b) macro
/external/dropbear/libtomcrypt/src/math/
Dltm_desc.c72 return mpi_to_ltc_error(mp_neg(a, b)); in neg()
/external/dropbear/libtommath/pre_gen/
Dmpi.c3006 mp_neg(&u1, &u1); in mp_exteuclid()
3007 mp_neg(&u2, &u2); in mp_exteuclid()
3008 mp_neg(&u3, &u3); in mp_exteuclid()
5442 int mp_neg (mp_int * a, mp_int * b) in mp_neg() function
/external/dropbear/libtomcrypt/
Dchanges188 -- Added mp_neg() to the math descriptors.