Searched refs:t5 (Results 1 – 1 of 1) sorted by relevance
/tinycrypt-latest/lib/source/ |
D | ecc.c | 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() [all …]
|