Home | History | Annotate | Download | only in mtest

Lines Matching refs:mp_digit

78   mp_digit     *dp;      /* the digits themselves      */
99 void mp_set(mp_int *mp, mp_digit d);
107 mp_err mp_add_d(mp_int *a, mp_digit d, mp_int *b);
108 mp_err mp_sub_d(mp_int *a, mp_digit d, mp_int *b);
109 mp_err mp_mul_d(mp_int *a, mp_digit d, mp_int *b);
111 mp_err mp_div_d(mp_int *a, mp_digit d, mp_int *q, mp_digit *r);
113 mp_err mp_expt_d(mp_int *a, mp_digit d, mp_int *c);
127 mp_err mp_mul_2d(mp_int *a, mp_digit d, mp_int *c);
134 mp_err mp_div_2d(mp_int *a, mp_digit d, mp_int *q, mp_int *r);
136 mp_err mp_2expt(mp_int *a, mp_digit k);
144 mp_err mp_mod_d(mp_int *a, mp_digit d, mp_digit *c);
154 mp_err mp_exptmod_d(mp_int *a, mp_digit d, mp_int *m, mp_int *c);
161 int mp_cmp_d(mp_int *a, mp_digit d);