Home | History | Annotate | Download | only in nvmectl

Lines Matching defs:signed_multiply

96 static int signed_multiply(mp_int * a, mp_int * b, mp_int * c);
1855 if ((res = signed_multiply(&a0, &b0, &w0)) != MP_OKAY) {
1860 if ((res = signed_multiply(&a2, &b2, &w4)) != MP_OKAY) {
1891 if ((res = signed_multiply(&tmp1, &tmp2, &w1)) != MP_OKAY) {
1922 if ((res = signed_multiply(&tmp1, &tmp2, &w3)) != MP_OKAY) {
1940 if ((res = signed_multiply(&tmp1, &tmp2, &w2)) != MP_OKAY) {
2086 * are saved. Note also that the call to signed_multiply can end up back
2174 if (signed_multiply(&x0, &y0, &x0y0) != MP_OKAY) {
2177 if (signed_multiply(&x1, &y1, &x1y1) != MP_OKAY) {
2187 if (signed_multiply(&t1, &x0, &t1) != MP_OKAY) {
2411 signed_multiply(mp_int * a, mp_int * b, mp_int * c)
2599 if ((res = signed_multiply(&q, mu, &q)) != MP_OKAY) {
2700 if ((res = signed_multiply(&q, d, &q)) != MP_OKAY) {
3327 if ((err = signed_multiply(&M[x - 1], &M[1], &M[x])) != MP_OKAY) {
3402 if ((err = signed_multiply(&res, &M[bitbuf], &res)) != MP_OKAY) {
3430 if ((err = signed_multiply(&res, &M[1], &res)) != MP_OKAY) {
3529 if ((res = signed_multiply(a, b, &t)) != MP_OKAY) {
4159 if ((err = signed_multiply(&M[x - 1], &M[1], &M[x])) != MP_OKAY) {
4228 if ((err = signed_multiply(&res, &M[bitbuf], &res)) != MP_OKAY) {
4257 if ((err = signed_multiply(&res, &M[1], &res)) != MP_OKAY) {
5380 return signed_multiply(__UNCONST(a), __UNCONST(b), r) == MP_OKAY;