Searched refs:mp_int (Results 1 - 25 of 127) sorted by relevance

123456

/barrelfish-2018-10-04/lib/tommath/mtest/
H A Dmpi.h55 /* Macros for accessing the mp_int internals */
79 } mp_int; typedef in typeref:struct:__anon1399
90 mp_err mp_init(mp_int *mp);
91 mp_err mp_init_array(mp_int mp[], int count);
92 mp_err mp_init_size(mp_int *mp, mp_size prec);
93 mp_err mp_init_copy(mp_int *mp, mp_int *from);
94 mp_err mp_copy(mp_int *from, mp_int *to);
95 void mp_exch(mp_int *mp
[all...]
/barrelfish-2018-10-04/lib/tommath/
H A Dtommath.h178 /* the infamous mp_int structure */
182 } mp_int; typedef in typeref:struct:__anon1402
197 int mp_init(mp_int *a);
200 void mp_clear(mp_int *a);
203 int mp_init_multi(mp_int *mp, ...);
206 void mp_clear_multi(mp_int *mp, ...);
209 void mp_exch(mp_int *a, mp_int *b);
212 int mp_shrink(mp_int *a);
215 int mp_grow(mp_int *
[all...]
H A Dbn_mp_exch.c19 * mp_int pointers around
22 mp_exch (mp_int * a, mp_int * b)
24 mp_int t;
H A Dbn_mp_signed_bin_size.c19 int mp_signed_bin_size (mp_int * a)
H A Dbn_mp_addmod.c20 mp_addmod (mp_int * a, mp_int * b, mp_int * c, mp_int * d)
23 mp_int t;
H A Dbn_mp_mulmod.c19 int mp_mulmod (mp_int * a, mp_int * b, mp_int * c, mp_int * d)
22 mp_int t;
H A Dbn_mp_submod.c20 mp_submod (mp_int * a, mp_int * b, mp_int * c, mp_int * d)
23 mp_int t;
H A Dbn_mp_init_copy.c19 int mp_init_copy (mp_int * a, mp_int * b)
H A Dbn_mp_sqrmod.c20 mp_sqrmod (mp_int * a, mp_int * b, mp_int * c)
23 mp_int t;
H A Dbn_mp_clear_multi.c19 void mp_clear_multi(mp_int *mp, ...)
21 mp_int* next_mp = mp;
26 next_mp = va_arg(args, mp_int*);
H A Dbn_mp_invmod.c19 int mp_invmod (mp_int * a, mp_int * b, mp_int * c)
H A Dbn_mp_reduce_2k_setup_l.c19 int mp_reduce_2k_setup_l(mp_int *a, mp_int *d)
22 mp_int tmp;
H A Dbn_mp_init_multi.c19 int mp_init_multi(mp_int *mp, ...)
23 mp_int* cur_arg = mp;
42 cur_arg = va_arg(clean_args, mp_int*);
49 cur_arg = va_arg(args, mp_int*);
H A Dbn_mp_mod.c20 mp_mod (mp_int * a, mp_int * b, mp_int * c)
22 mp_int t;
H A Dbn_mp_unsigned_bin_size.c19 int mp_unsigned_bin_size (mp_int * a)
H A Dbn_mp_abs.c23 mp_abs (mp_int * a, mp_int * b)
H A Dbn_mp_cmp.c20 mp_cmp (mp_int * a, mp_int * b)
H A Dbn_mp_neg.c19 int mp_neg (mp_int * a, mp_int * b)
H A Dbn_mp_reduce_setup.c21 int mp_reduce_setup (mp_int * a, mp_int * b)
H A Dbn_mp_add.c19 int mp_add (mp_int * a, mp_int * b, mp_int * c)
H A Dbn_mp_expt_d.c19 int mp_expt_d (mp_int * a, mp_digit b, mp_int * c)
22 mp_int g;
H A Dbn_mp_prime_fermat.c26 int mp_prime_fermat (mp_int * a, mp_int * b, int *result)
28 mp_int t;
H A Dbn_mp_sub.c20 mp_sub (mp_int * a, mp_int * b, mp_int * c)
H A Dbn_mp_and.c20 mp_and (mp_int * a, mp_int * b, mp_int * c)
23 mp_int t, *x;
43 /* zero digits above the last from the smallest mp_int */
H A Dbn_mp_clamp.c26 mp_clamp (mp_int * a)

Completed in 68 milliseconds

123456