Home
last modified time | relevance | path

Searched refs:mp_toradix (Results 1 – 16 of 16) sorted by relevance

/external/dropbear/libtommath/etc/
Dpprime.c328 mp_toradix(&n, buf, 10); in pprime()
330 mp_toradix(&a, buf, 10); in pprime()
332 mp_toradix(&b, buf, 10); in pprime()
390 mp_toradix (&p, buf, 10); in main()
392 mp_toradix (&q, buf, 10); in main()
D2kprime.c69 mp_toradix(&q, buf, 10); in main()
Ddrprime.c48 mp_toradix(&a, buf, 10); in main()
/external/dropbear/libtommath/mtest/
Dmpi.h213 mp_err mp_toradix(mp_int *mp, unsigned char *str, int radix);
217 #define mp_tobinary(M, S) mp_toradix((M), (S), 2)
218 #define mp_tooctal(M, S) mp_toradix((M), (S), 8)
219 #define mp_todecimal(M, S) mp_toradix((M), (S), 10)
220 #define mp_tohex(M, S) mp_toradix((M), (S), 16)
Dmtest.c68 #define mp_to64(a, b) mp_toradix(a, b, 64)
Dmpi.c2544 mp_err mp_toradix(mp_int *mp, unsigned char *str, int radix) in mp_toradix() function
/external/dropbear/libtommath/
Dtommath.h533 int mp_toradix(mp_int *a, char *str, int radix);
547 #define mp_tobinary(M, S) mp_toradix((M), (S), 2)
548 #define mp_tooctal(M, S) mp_toradix((M), (S), 8)
549 #define mp_todecimal(M, S) mp_toradix((M), (S), 10)
550 #define mp_tohex(M, S) mp_toradix((M), (S), 16)
Dbn_mp_fwrite.c32 if ((err = mp_toradix(a, buf, radix)) != MP_OKAY) { in mp_fwrite()
Dbn_mp_toradix.c19 int mp_toradix (mp_int * a, char *str, int radix) in mp_toradix() function
Dchanges.txt123 … -- Henrik Goldman also spotted two typos. One in mp_radix_size() and another in mp_toradix().
354 -- Made mp_toradix and mp_read_radix use char instead of unsigned char arrays
Dbn.tex1710 int mp_toradix (mp_int * a, char *str, int radix);
/external/dropbear/libtomcrypt/src/headers/
Dtomcrypt_math.h465 #define mp_toradix(a, b, c) ltc_mp.write_radix(a, b, c) macro
500 #define mp_tohex(a, b) mp_toradix(a, b, 16)
/external/dropbear/libtommath/demo/
Dtiming.c19 mp_toradix(a, buf, 64); in ndraw()
Ddemo.c17 mp_toradix(a, buf, 10); in ndraw()
236 mp_toradix(&a, buf, 10); in main()
/external/dropbear/libtomcrypt/src/math/
Dltm_desc.c180 return mpi_to_ltc_error(mp_toradix(a, b, radix)); in write_radix()
/external/dropbear/libtommath/pre_gen/
Dmpi.c3131 if ((err = mp_toradix(a, buf, radix)) != MP_OKAY) { in mp_fwrite()
8357 int mp_toradix (mp_int * a, char *str, int radix) in mp_toradix() function