Lines Matching full:t5
1125 u64 t5[ECC_MAX_DIGITS]; in ecc_point_double_jacobian() local
1134 /* t5 = x1*y1^2 = A */ in ecc_point_double_jacobian()
1135 vli_mod_mult_fast(t5, x1, t4, curve); in ecc_point_double_jacobian()
1169 vli_mod_sub(z1, z1, t5, curve_prime, ndigits); in ecc_point_double_jacobian()
1171 vli_mod_sub(z1, z1, t5, curve_prime, ndigits); in ecc_point_double_jacobian()
1172 /* t5 = A - x3 */ in ecc_point_double_jacobian()
1173 vli_mod_sub(t5, t5, z1, curve_prime, ndigits); in ecc_point_double_jacobian()
1175 vli_mod_mult_fast(x1, x1, t5, curve); in ecc_point_double_jacobian()
1226 u64 t5[ECC_MAX_DIGITS]; in xycz_add() local
1230 /* t5 = x2 - x1 */ in xycz_add()
1231 vli_mod_sub(t5, x2, x1, curve_prime, ndigits); in xycz_add()
1232 /* t5 = (x2 - x1)^2 = A */ in xycz_add()
1233 vli_mod_square_fast(t5, t5, curve); in xycz_add()
1235 vli_mod_mult_fast(x1, x1, t5, curve); in xycz_add()
1237 vli_mod_mult_fast(x2, x2, t5, curve); in xycz_add()
1240 /* t5 = (y2 - y1)^2 = D */ in xycz_add()
1241 vli_mod_square_fast(t5, y2, curve); in xycz_add()
1243 /* t5 = D - B */ in xycz_add()
1244 vli_mod_sub(t5, t5, x1, curve_prime, ndigits); in xycz_add()
1245 /* t5 = D - B - C = x3 */ in xycz_add()
1246 vli_mod_sub(t5, t5, x2, curve_prime, ndigits); in xycz_add()
1252 vli_mod_sub(x2, x1, t5, curve_prime, ndigits); in xycz_add()
1258 vli_set(x2, t5, ndigits); in xycz_add()
1269 u64 t5[ECC_MAX_DIGITS]; in xycz_add_c() local
1275 /* t5 = x2 - x1 */ in xycz_add_c()
1276 vli_mod_sub(t5, x2, x1, curve_prime, ndigits); in xycz_add_c()
1277 /* t5 = (x2 - x1)^2 = A */ in xycz_add_c()
1278 vli_mod_square_fast(t5, t5, curve); in xycz_add_c()
1280 vli_mod_mult_fast(x1, x1, t5, curve); in xycz_add_c()
1282 vli_mod_mult_fast(x2, x2, t5, curve); in xycz_add_c()
1284 vli_mod_add(t5, y2, y1, curve_prime, ndigits); in xycz_add_c()
1307 vli_mod_square_fast(t7, t5, curve); in xycz_add_c()
1313 vli_mod_mult_fast(t6, t6, t5, curve); in xycz_add_c()