Lines Matching refs:TV
1884 mbedtls_mpi G, TA, TU, U1, U2, TB, TV, V1, V2;
1891 mbedtls_mpi_init(&G); mbedtls_mpi_init(&TB); mbedtls_mpi_init(&TV);
1904 MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&TV, N));
1924 while ((TV.p[0] & 1) == 0) {
1925 MBEDTLS_MPI_CHK(mbedtls_mpi_shift_r(&TV, 1));
1936 if (mbedtls_mpi_cmp_mpi(&TU, &TV) >= 0) {
1937 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&TU, &TU, &TV));
1941 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&TV, &TV, &TU));
1960 mbedtls_mpi_free(&G); mbedtls_mpi_free(&TB); mbedtls_mpi_free(&TV);