Searched refs:t1 (Results 1 – 7 of 7) sorted by relevance
/mbedtls-latest/3rdparty/p256-m/p256-m/ |
D | p256-m.c | 924 uint32_t t1[8], t2[8], t3[8]; in point_add() local 929 m256_mul_p(t1, z1, z1); in point_add() 930 m256_mul_p(t2, t1, z1); in point_add() 931 m256_mul_p(t1, t1, x2); in point_add() 937 m256_sub_p(t1, t1, x1); /* t1 = x2 * z1^2 - x1 */ in point_add() 943 m256_mul_p(z1, z1, t1); in point_add() 946 m256_mul_p(t3, t1, t1); in point_add() 947 m256_mul_p(t1, t3, t1); in point_add() 956 m256_sub_p(x1, x1, t1); in point_add() 961 m256_mul_p(t1, t1, y1); in point_add() [all …]
|
/mbedtls-latest/tests/suites/ |
D | test_suite_ssl_decrypt.function | 144 mbedtls_ssl_transform t0, t1; 156 mbedtls_ssl_transform_init(&t1); 160 ret = mbedtls_test_ssl_build_transforms(&t0, &t1, cipher_type, hash_id, 240 TEST_EQUAL(0, mbedtls_ssl_decrypt_buf(&ssl, &t1, &rec)); 266 mbedtls_ssl_decrypt_buf(&ssl, &t1, &rec)); 301 TEST_EQUAL(exp_ret, mbedtls_ssl_decrypt_buf(&ssl, &t1, &rec)); 307 mbedtls_ssl_transform_free(&t1);
|
D | test_suite_ssl.function | 1238 mbedtls_ssl_transform t0, t1; 1245 mbedtls_ssl_transform_init(&t1); 1248 ret = mbedtls_test_ssl_build_transforms(&t0, &t1, cipher_type, hash_id, 1262 t_enc = &t1; 1264 t_dec = &t1; 1347 mbedtls_ssl_transform_free(&t1); 1381 mbedtls_ssl_transform t0, t1; 1399 mbedtls_ssl_transform_init(&t1); 1402 ret = mbedtls_test_ssl_build_transforms(&t0, &t1, cipher_type, hash_id, 1416 t_enc = &t1; [all …]
|
/mbedtls-latest/3rdparty/everest/library/ |
D | Hacl_Curve25519.c | 441 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-latest/3rdparty/everest/library/legacy/ |
D | Hacl_Curve25519.c | 486 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-latest/library/ |
D | x509.c | 1036 int mbedtls_x509_time_cmp(const mbedtls_x509_time *t1, in mbedtls_x509_time_cmp() argument 1041 x = (((t1->year << 9) | (t1->mon << 5) | (t1->day)) - in mbedtls_x509_time_cmp() 1047 x = (((t1->hour << 12) | (t1->min << 6) | (t1->sec)) - in mbedtls_x509_time_cmp()
|
/mbedtls-latest/include/mbedtls/ |
D | x509.h | 385 int mbedtls_x509_time_cmp(const mbedtls_x509_time *t1, const mbedtls_x509_time *t2);
|