Lines Matching defs:v3
2965 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp;
2968 if ((err = mp_init_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)) != MP_OKAY) {
2976 /* initialize, (v1,v2,v3) = (0,1,b) */
2978 if ((err = mp_copy(b, &v3)) != MP_OKAY) { goto _ERR; }
2980 /* loop while v3 != 0 */
2981 while (mp_iszero(&v3) == MP_NO) {
2982 /* q = u3/v3 */
2983 if ((err = mp_div(&u3, &v3, &q, NULL)) != MP_OKAY) { goto _ERR; }
2985 /* (t1,t2,t3) = (u1,u2,u3) - (v1,v2,v3)q */
2990 if ((err = mp_mul(&v3, &q, &tmp)) != MP_OKAY) { goto _ERR; }
2993 /* (u1,u2,u3) = (v1,v2,v3) */
2996 if ((err = mp_copy(&v3, &u3)) != MP_OKAY) { goto _ERR; }
2998 /* (v1,v2,v3) = (t1,t2,t3) */
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);
9495 Intel P4 Northwood /GCC v3.4.1 / 88/ 128/LTM 0.32 ;-)
9496 AMD Athlon64 /GCC v3.4.4 / 80/ 120/LTM 0.35