Home
last modified time | relevance | path

Searched refs:t1 (Results 1 – 4 of 4) sorted by relevance

/mbedtls-3.5.0/3rdparty/everest/library/
DHacl_Curve25519.c441 uint64_t t1 = input[1U]; in Hacl_EC_Format_fcontract_first_carry_pass() local
445 uint64_t t1_ = t1 + (t0 >> (uint32_t)51U); in Hacl_EC_Format_fcontract_first_carry_pass()
469 uint64_t t1 = input[1U]; in Hacl_EC_Format_fcontract_second_carry_pass() local
473 uint64_t t1_ = t1 + (t0 >> (uint32_t)51U); in Hacl_EC_Format_fcontract_second_carry_pass()
532 uint64_t t1 = input[1U]; in Hacl_EC_Format_fcontract_store() local
536 uint64_t o0 = t1 << (uint32_t)51U | t0; in Hacl_EC_Format_fcontract_store()
537 uint64_t o1 = t2 << (uint32_t)38U | t1 >> (uint32_t)13U; in Hacl_EC_Format_fcontract_store()
/mbedtls-3.5.0/3rdparty/everest/library/legacy/
DHacl_Curve25519.c486 uint64_t t1 = input[1U]; in Hacl_EC_Format_fcontract_first_carry_pass() local
490 uint64_t t1_ = t1 + (t0 >> (uint32_t)51U); in Hacl_EC_Format_fcontract_first_carry_pass()
514 uint64_t t1 = input[1U]; in Hacl_EC_Format_fcontract_second_carry_pass() local
518 uint64_t t1_ = t1 + (t0 >> (uint32_t)51U); in Hacl_EC_Format_fcontract_second_carry_pass()
577 uint64_t t1 = input[1U]; in Hacl_EC_Format_fcontract_store() local
581 uint64_t o0 = t1 << (uint32_t)51U | t0; in Hacl_EC_Format_fcontract_store()
582 uint64_t o1 = t2 << (uint32_t)38U | t1 >> (uint32_t)13U; in Hacl_EC_Format_fcontract_store()
/mbedtls-3.5.0/tests/suites/
Dtest_suite_ssl.function1136 mbedtls_ssl_transform t0, t1;
1145 mbedtls_ssl_transform_init(&t1);
1146 ret = mbedtls_test_ssl_build_transforms(&t0, &t1, cipher_type, hash_id,
1160 t_enc = &t1;
1162 t_dec = &t1;
1245 mbedtls_ssl_transform_free(&t1);
1279 mbedtls_ssl_transform t0, t1;
1299 mbedtls_ssl_transform_init(&t1);
1300 ret = mbedtls_test_ssl_build_transforms(&t0, &t1, cipher_type, hash_id,
1314 t_enc = &t1;
[all …]
/mbedtls-3.5.0/library/
Dbignum.c753 size_t i, v0, t1; in mbedtls_mpi_shift_l() local
758 t1 = count & (biL - 1); in mbedtls_mpi_shift_l()
784 if (t1 > 0) { in mbedtls_mpi_shift_l()
786 r1 = X->p[i] >> (biL - t1); in mbedtls_mpi_shift_l()
787 X->p[i] <<= t1; in mbedtls_mpi_shift_l()