Searched refs:u1 (Results 1 – 5 of 5) sorted by relevance
/openthread-2.7.6/third_party/mbedtls/repo/library/ |
D | ecdsa.c | 63 mbedtls_mpi u1, u2; /* intermediate values */ member 75 mbedtls_mpi_init( &ctx->u1 ); in ecdsa_restart_ver_init() 88 mbedtls_mpi_free( &ctx->u1 ); in ecdsa_restart_ver_free() 599 mbedtls_mpi e, s_inv, u1, u2; in ecdsa_verify_restartable() local 601 mbedtls_mpi *pu1 = &u1, *pu2 = &u2; in ecdsa_verify_restartable() 605 mbedtls_mpi_init( &u1 ); mbedtls_mpi_init( &u2 ); in ecdsa_verify_restartable() 617 pu1 = &rs_ctx->ver->u1; in ecdsa_verify_restartable() 690 mbedtls_mpi_free( &u1 ); mbedtls_mpi_free( &u2 ); in ecdsa_verify_restartable()
|
D | bignum.c | 1668 static mbedtls_mpi_uint mbedtls_int_div_int( mbedtls_mpi_uint u1, in mbedtls_int_div_int() argument 1684 if( 0 == d || u1 >= d ) in mbedtls_int_div_int() 1692 dividend = (mbedtls_t_udbl) u1 << biL; in mbedtls_int_div_int() 1715 u1 = u1 << s; in mbedtls_int_div_int() 1716 u1 |= ( u0 >> ( biL - s ) ) & ( -(mbedtls_mpi_sint)s >> ( biL - 1 ) ); in mbedtls_int_div_int() 1728 q1 = u1 / d1; in mbedtls_int_div_int() 1729 r0 = u1 - d1 * q1; in mbedtls_int_div_int() 1739 rAX = ( u1 * radix ) + ( u0_msw - q1 * d ); in mbedtls_int_div_int() 2035 mbedtls_mpi_uint u0, u1, *d; in mpi_montmul() local 2049 u1 = ( d[0] + u0 * B->p[0] ) * mm; in mpi_montmul() [all …]
|
/openthread-2.7.6/third_party/mbedtls/repo/tests/data_files/ |
D | rsa_pkcs8_pbes2_pbkdf2_4096_3des.pem | 52 FpldzwRoyFRjDnGVACMo/X1eaCwvew+1M8fcSs1p+qrBfrfRiI4tg8bNrYdL/0u1
|
/openthread-2.7.6/third_party/mbedtls/repo/3rdparty/everest/library/kremlib/ |
D | FStar_UInt128_extracted.c | 392 uint64_t u1 = scrut.fst; in FStar_UInt128_mul_wide_impl() local 399 FStar_UInt128_u32_combine_(u1 * (y >> FStar_UInt128_u32_32) + FStar_UInt128_u64_mod_32(t_), in FStar_UInt128_mul_wide_impl() 404 + ((u1 * (y >> FStar_UInt128_u32_32) + FStar_UInt128_u64_mod_32(t_)) >> FStar_UInt128_u32_32) in FStar_UInt128_mul_wide_impl()
|
/openthread-2.7.6/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_ecp.function | 508 * Compute R = u1 * G + u2 * Q 516 mbedtls_mpi u1, u2, xR, yR; 524 mbedtls_mpi_init( &u1 ); mbedtls_mpi_init( &u2 ); 529 TEST_ASSERT( mbedtls_mpi_read_string( &u1, 16, u1_str ) == 0 ); 544 &u1, &grp.G, &u2, &Q, &ctx ); 559 &u1, &grp.G, &u2, &Q, &ctx ); 568 mbedtls_mpi_free( &u1 ); mbedtls_mpi_free( &u2 );
|