Searched refs:mp_add (Results 1 - 22 of 22) sorted by relevance

/barrelfish-2018-10-04/lib/tommath/
H A Dbn_mp_toom_mul.c86 if ((res = mp_add(&tmp1, &a1, &tmp1)) != MP_OKAY) {
92 if ((res = mp_add(&tmp1, &a2, &tmp1)) != MP_OKAY) {
99 if ((res = mp_add(&tmp2, &b1, &tmp2)) != MP_OKAY) {
105 if ((res = mp_add(&tmp2, &b2, &tmp2)) != MP_OKAY) {
117 if ((res = mp_add(&tmp1, &a1, &tmp1)) != MP_OKAY) {
123 if ((res = mp_add(&tmp1, &a0, &tmp1)) != MP_OKAY) {
130 if ((res = mp_add(&tmp2, &b1, &tmp2)) != MP_OKAY) {
136 if ((res = mp_add(&tmp2, &b0, &tmp2)) != MP_OKAY) {
146 if ((res = mp_add(&a2, &a1, &tmp1)) != MP_OKAY) {
149 if ((res = mp_add(
[all...]
H A Dbn_mp_addmod.c29 if ((res = mp_add (a, b, &t)) != MP_OKAY) {
H A Dbn_mp_toom_sqr.c63 if ((res = mp_add(&tmp1, &a1, &tmp1)) != MP_OKAY) {
69 if ((res = mp_add(&tmp1, &a2, &tmp1)) != MP_OKAY) {
81 if ((res = mp_add(&tmp1, &a1, &tmp1)) != MP_OKAY) {
87 if ((res = mp_add(&tmp1, &a0, &tmp1)) != MP_OKAY) {
97 if ((res = mp_add(&a2, &a1, &tmp1)) != MP_OKAY) {
100 if ((res = mp_add(&tmp1, &a0, &tmp1)) != MP_OKAY) {
204 if ((res = mp_add(&w0, &w1, b)) != MP_OKAY) {
207 if ((res = mp_add(&w2, &w3, &tmp1)) != MP_OKAY) {
210 if ((res = mp_add(&w4, &tmp1, &tmp1)) != MP_OKAY) {
213 if ((res = mp_add(
[all...]
H A Dbn_mp_add.c19 int mp_add (mp_int * a, mp_int * b, mp_int * c) function
H A Dbn_mp_mod.c38 res = mp_add (b, &t, c);
H A Dbn_mp_sqrt.c50 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
61 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
H A Dbn_mp_karatsuba_mul.c134 if (mp_add (&x0y0, &x1y1, &x0) != MP_OKAY)
145 if (mp_add (&x0y0, &t1, &t1) != MP_OKAY)
147 if (mp_add (&t1, &x1y1, c) != MP_OKAY)
H A Dbn_mp_invmod_slow.c69 if ((res = mp_add (&A, &y, &A)) != MP_OKAY) {
94 if ((res = mp_add (&C, &y, &C)) != MP_OKAY) {
153 if ((res = mp_add(&C, b, &C)) != MP_OKAY) {
H A Dbn_mp_karatsuba_sqr.c101 if (mp_add (&x0x0, &t1, &t1) != MP_OKAY)
103 if (mp_add (&t1, &x1x1, b) != MP_OKAY)
H A Dbn_mp_reduce.c80 if ((res = mp_add (x, &q, x)) != MP_OKAY)
H A Dbn_fast_mp_invmod.c133 if ((res = mp_add (&D, b, &D)) != MP_OKAY) {
H A Dbn_mp_div.c62 ((res = mp_add(&q, &tq, &q)) != MP_OKAY)) {
250 if ((res = mp_add (&x, &t1, &x)) != MP_OKAY) {
H A Dtommath.h311 int mp_add(mp_int *a, mp_int *b, mp_int *c);
H A Dbn.tex360 mp_add(&a, &b, &c); /* c = a + b */
369 mp_add(&a, &b, &b); /* b = a + b */
1108 int mp_add (mp_int * a, mp_int * b, mp_int * c);
H A Dtommath.tex660 mp_add(&a, &b, &a); /* a = a + b */
710 if ((err = mp_add(&a, &b, &c)) != MP_OKAY) {
/barrelfish-2018-10-04/lib/tommath/etc/
H A Dmersenne.c47 if ((res = mp_add (&u, &n, &u)) != MP_OKAY) {
/barrelfish-2018-10-04/lib/tommath/pre_gen/
H A Dmpi.c185 if ((res = mp_add (&D, b, &D)) != MP_OKAY) {
829 int mp_add (mp_int * a, mp_int * b, mp_int * c) function
1012 if ((res = mp_add (a, b, &t)) != MP_OKAY) {
1617 ((res = mp_add(&q, &tq, &q)) != MP_OKAY)) {
1805 if ((res = mp_add (&x, &t1, &x)) != MP_OKAY) {
3767 if ((res = mp_add (&A, &y, &A)) != MP_OKAY) {
3792 if ((res = mp_add (&C, &y, &C)) != MP_OKAY) {
3851 if ((res = mp_add(&C, b, &C)) != MP_OKAY) {
4233 if (mp_add (&x0y0, &x1y1, &x0) != MP_OKAY)
4244 if (mp_add (
[all...]
/barrelfish-2018-10-04/lib/tommath/demo/
H A Dtiming.c117 DO(mp_add(&a, &b, &c));
H A Ddemo.c480 mp_add(&d, &b, &d);
/barrelfish-2018-10-04/lib/tommath/mtest/
H A Dmpi.h124 mp_err mp_add(mp_int *a, mp_int *b, mp_int *c);
H A Dmtest.c124 mp_add(&a, &b, &c);
H A Dmpi.c855 /* {{{ mp_add(a, b, c) */
858 mp_add(a, b, c)
863 mp_err mp_add(mp_int *a, mp_int *b, mp_int *c) function
951 } /* end mp_add() */
1381 if((res = mp_add(c, m, c)) != MP_OKAY)
1390 if((res = mp_add(c, m, c)) != MP_OKAY)
1539 if((res = mp_add(a, b, c)) != MP_OKAY)
2116 if((res = mp_add(&A, &yc, &A)) != MP_OKAY) goto CLEANUP;
2129 if((res = mp_add(&C, &yc, &C)) != MP_OKAY) goto CLEANUP;
3401 if((res = mp_add(
[all...]

Completed in 177 milliseconds