/external/dropbear/libtommath/ |
bn_mp_div_3.c | 20 mp_div_3 (mp_int * a, mp_int *c, mp_digit * d) function
|
bn_mp_div_d.c | 69 return mp_div_3(a, c, d);
|
bn_mp_toom_mul.c | 238 if ((res = mp_div_3(&w1, &w1, NULL)) != MP_OKAY) { 242 if ((res = mp_div_3(&w3, &w3, NULL)) != MP_OKAY) {
|
bn_mp_toom_sqr.c | 182 if ((res = mp_div_3(&w1, &w1, NULL)) != MP_OKAY) { 186 if ((res = mp_div_3(&w3, &w3, NULL)) != MP_OKAY) {
|
tommath.h | 346 int mp_div_3(mp_int *a, mp_int *c, mp_digit *d);
|
/external/dropbear/libtommath/pre_gen/ |
mpi.c | 2044 mp_div_3 (mp_int * a, mp_int *c, mp_digit * d) function [all...] |
/external/dropbear/libtommath/demo/ |
demo.c | 281 /* test mp_div_3 */ 282 printf("Testing mp_div_3...\n"); 291 mp_div_3(&a, &c, &r2);
|