Lines Matching refs:t5
460 uECC_word_t t5[NUM_ECC_WORDS]; in double_jacobian_default() local
468 uECC_vli_modMult_fast(t5, X1, t4, curve); /* t5 = x1*y1^2 = A */ in double_jacobian_default()
490 uECC_vli_modSub(Z1, Z1, t5, curve->p, num_words); /* t3 = B^2 - A */ in double_jacobian_default()
491 uECC_vli_modSub(Z1, Z1, t5, curve->p, num_words); /* t3 = B^2 - 2A = x3 */ in double_jacobian_default()
492 uECC_vli_modSub(t5, t5, Z1, curve->p, num_words); /* t5 = A - x3 */ in double_jacobian_default()
493 uECC_vli_modMult_fast(X1, X1, t5, curve); /* t1 = B * (A - x3) */ in double_jacobian_default()
666 uECC_word_t t5[NUM_ECC_WORDS]; in XYcZ_add() local
669 uECC_vli_modSub(t5, X2, X1, curve->p, num_words); /* t5 = x2 - x1 */ in XYcZ_add()
670 uECC_vli_modSquare_fast(t5, t5, curve); /* t5 = (x2 - x1)^2 = A */ in XYcZ_add()
671 uECC_vli_modMult_fast(X1, X1, t5, curve); /* t1 = x1*A = B */ in XYcZ_add()
672 uECC_vli_modMult_fast(X2, X2, t5, curve); /* t3 = x2*A = C */ in XYcZ_add()
674 uECC_vli_modSquare_fast(t5, Y2, curve); /* t5 = (y2 - y1)^2 = D */ in XYcZ_add()
676 uECC_vli_modSub(t5, t5, X1, curve->p, num_words); /* t5 = D - B */ in XYcZ_add()
677 uECC_vli_modSub(t5, t5, X2, curve->p, num_words); /* t5 = D - B - C = x3 */ in XYcZ_add()
680 uECC_vli_modSub(X2, X1, t5, curve->p, num_words); /* t3 = B - x3 */ in XYcZ_add()
684 uECC_vli_set(X2, t5, num_words); in XYcZ_add()
696 uECC_word_t t5[NUM_ECC_WORDS]; in XYcZ_addC() local
701 uECC_vli_modSub(t5, X2, X1, curve->p, num_words); /* t5 = x2 - x1 */ in XYcZ_addC()
702 uECC_vli_modSquare_fast(t5, t5, curve); /* t5 = (x2 - x1)^2 = A */ in XYcZ_addC()
703 uECC_vli_modMult_fast(X1, X1, t5, curve); /* t1 = x1*A = B */ in XYcZ_addC()
704 uECC_vli_modMult_fast(X2, X2, t5, curve); /* t3 = x2*A = C */ in XYcZ_addC()
705 uECC_vli_modAdd(t5, Y2, Y1, curve->p, num_words); /* t5 = y2 + y1 */ in XYcZ_addC()
719 uECC_vli_modSquare_fast(t7, t5, curve); /* t7 = (y2 + y1)^2 = F */ in XYcZ_addC()
722 uECC_vli_modMult_fast(t6, t6, t5, curve); /* t6 = (y2+y1)*(x3' - B) */ in XYcZ_addC()