Lines Matching refs:t5
1073 u64 t5[ECC_MAX_DIGITS];
1082 /* t5 = x1*y1^2 = A */
1083 vli_mod_mult_fast(t5, x1, t4, curve);
1117 vli_mod_sub(z1, z1, t5, curve_prime, ndigits);
1119 vli_mod_sub(z1, z1, t5, curve_prime, ndigits);
1120 /* t5 = A - x3 */
1121 vli_mod_sub(t5, t5, z1, curve_prime, ndigits);
1123 vli_mod_mult_fast(x1, x1, t5, curve);
1174 u64 t5[ECC_MAX_DIGITS];
1178 /* t5 = x2 - x1 */
1179 vli_mod_sub(t5, x2, x1, curve_prime, ndigits);
1180 /* t5 = (x2 - x1)^2 = A */
1181 vli_mod_square_fast(t5, t5, curve);
1183 vli_mod_mult_fast(x1, x1, t5, curve);
1185 vli_mod_mult_fast(x2, x2, t5, curve);
1188 /* t5 = (y2 - y1)^2 = D */
1189 vli_mod_square_fast(t5, y2, curve);
1191 /* t5 = D - B */
1192 vli_mod_sub(t5, t5, x1, curve_prime, ndigits);
1193 /* t5 = D - B - C = x3 */
1194 vli_mod_sub(t5, t5, x2, curve_prime, ndigits);
1200 vli_mod_sub(x2, x1, t5, curve_prime, ndigits);
1206 vli_set(x2, t5, ndigits);
1217 u64 t5[ECC_MAX_DIGITS];
1223 /* t5 = x2 - x1 */
1224 vli_mod_sub(t5, x2, x1, curve_prime, ndigits);
1225 /* t5 = (x2 - x1)^2 = A */
1226 vli_mod_square_fast(t5, t5, curve);
1228 vli_mod_mult_fast(x1, x1, t5, curve);
1230 vli_mod_mult_fast(x2, x2, t5, curve);
1232 vli_mod_add(t5, y2, y1, curve_prime, ndigits);
1255 vli_mod_square_fast(t7, t5, curve);
1261 vli_mod_mult_fast(t6, t6, t5, curve);