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