Lines Matching refs:t5
1085 u64 t5[ECC_MAX_DIGITS];
1094 /* t5 = x1*y1^2 = A */
1095 vli_mod_mult_fast(t5, x1, t4, curve);
1129 vli_mod_sub(z1, z1, t5, curve_prime, ndigits);
1131 vli_mod_sub(z1, z1, t5, curve_prime, ndigits);
1132 /* t5 = A - x3 */
1133 vli_mod_sub(t5, t5, z1, curve_prime, ndigits);
1135 vli_mod_mult_fast(x1, x1, t5, curve);
1186 u64 t5[ECC_MAX_DIGITS];
1190 /* t5 = x2 - x1 */
1191 vli_mod_sub(t5, x2, x1, curve_prime, ndigits);
1192 /* t5 = (x2 - x1)^2 = A */
1193 vli_mod_square_fast(t5, t5, curve);
1195 vli_mod_mult_fast(x1, x1, t5, curve);
1197 vli_mod_mult_fast(x2, x2, t5, curve);
1200 /* t5 = (y2 - y1)^2 = D */
1201 vli_mod_square_fast(t5, y2, curve);
1203 /* t5 = D - B */
1204 vli_mod_sub(t5, t5, x1, curve_prime, ndigits);
1205 /* t5 = D - B - C = x3 */
1206 vli_mod_sub(t5, t5, x2, curve_prime, ndigits);
1212 vli_mod_sub(x2, x1, t5, curve_prime, ndigits);
1218 vli_set(x2, t5, ndigits);
1229 u64 t5[ECC_MAX_DIGITS];
1235 /* t5 = x2 - x1 */
1236 vli_mod_sub(t5, x2, x1, curve_prime, ndigits);
1237 /* t5 = (x2 - x1)^2 = A */
1238 vli_mod_square_fast(t5, t5, curve);
1240 vli_mod_mult_fast(x1, x1, t5, curve);
1242 vli_mod_mult_fast(x2, x2, t5, curve);
1244 vli_mod_add(t5, y2, y1, curve_prime, ndigits);
1267 vli_mod_square_fast(t7, t5, curve);
1273 vli_mod_mult_fast(t6, t6, t5, curve);