Home | History | Annotate | Download | only in pre_gen

Lines Matching full:_err

2974    if ((err = mp_copy(a, &u3)) != MP_OKAY)                                        { goto _ERR; }
2978 if ((err = mp_copy(b, &v3)) != MP_OKAY) { goto _ERR; }
2983 if ((err = mp_div(&u3, &v3, &q, NULL)) != MP_OKAY) { goto _ERR; }
2986 if ((err = mp_mul(&v1, &q, &tmp)) != MP_OKAY) { goto _ERR; }
2987 if ((err = mp_sub(&u1, &tmp, &t1)) != MP_OKAY) { goto _ERR; }
2988 if ((err = mp_mul(&v2, &q, &tmp)) != MP_OKAY) { goto _ERR; }
2989 if ((err = mp_sub(&u2, &tmp, &t2)) != MP_OKAY) { goto _ERR; }
2990 if ((err = mp_mul(&v3, &q, &tmp)) != MP_OKAY) { goto _ERR; }
2991 if ((err = mp_sub(&u3, &tmp, &t3)) != MP_OKAY) { goto _ERR; }
2994 if ((err = mp_copy(&v1, &u1)) != MP_OKAY) { goto _ERR; }
2995 if ((err = mp_copy(&v2, &u2)) != MP_OKAY) { goto _ERR; }
2996 if ((err = mp_copy(&v3, &u3)) != MP_OKAY) { goto _ERR; }
2999 if ((err = mp_copy(&t1, &v1)) != MP_OKAY) { goto _ERR; }
3000 if ((err = mp_copy(&t2, &v2)) != MP_OKAY) { goto _ERR; }
3001 if ((err = mp_copy(&t3, &v3)) != MP_OKAY) { goto _ERR; }
3017 _ERR: mp_clear_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL);