/external/dropbear/libtommath/etc/ |
D | pprime.c | 328 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()
|
D | 2kprime.c | 69 mp_toradix(&q, buf, 10); in main()
|
D | drprime.c | 48 mp_toradix(&a, buf, 10); in main()
|
/external/dropbear/libtommath/mtest/ |
D | mpi.h | 213 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)
|
D | mtest.c | 68 #define mp_to64(a, b) mp_toradix(a, b, 64)
|
D | mpi.c | 2544 mp_err mp_toradix(mp_int *mp, unsigned char *str, int radix) in mp_toradix() function
|
/external/dropbear/libtommath/ |
D | tommath.h | 533 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)
|
D | bn_mp_fwrite.c | 32 if ((err = mp_toradix(a, buf, radix)) != MP_OKAY) { in mp_fwrite()
|
D | bn_mp_toradix.c | 19 int mp_toradix (mp_int * a, char *str, int radix) in mp_toradix() function
|
D | changes.txt | 123 … -- 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
|
D | bn.tex | 1710 int mp_toradix (mp_int * a, char *str, int radix);
|
/external/dropbear/libtomcrypt/src/headers/ |
D | tomcrypt_math.h | 465 #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/ |
D | timing.c | 19 mp_toradix(a, buf, 64); in ndraw()
|
D | demo.c | 17 mp_toradix(a, buf, 10); in ndraw() 236 mp_toradix(&a, buf, 10); in main()
|
/external/dropbear/libtomcrypt/src/math/ |
D | ltm_desc.c | 180 return mpi_to_ltc_error(mp_toradix(a, b, radix)); in write_radix()
|
/external/dropbear/libtommath/pre_gen/ |
D | mpi.c | 3131 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
|