Searched refs:temp2 (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-2.7.6/components/wpa_supplicant/src/crypto/ |
D | crypto_mbedtls-ec.c | 361 mbedtls_mpi temp, temp2, num; in crypto_ec_point_compute_y_sqr() local 370 mbedtls_mpi_init(&temp2); in crypto_ec_point_compute_y_sqr() 385 MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&temp2, (const mbedtls_mpi *) x, &num)); in crypto_ec_point_compute_y_sqr() 386 MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&temp2, &temp2, &e->group.P)); in crypto_ec_point_compute_y_sqr() 389 MBEDTLS_MPI_CHK(mbedtls_mpi_add_mpi(&temp2, &temp2, &e->group.B)); in crypto_ec_point_compute_y_sqr() 390 MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&temp2, &temp2, &e->group.P)); in crypto_ec_point_compute_y_sqr() 393 MBEDTLS_MPI_CHK(mbedtls_mpi_add_mpi(&temp2, &temp2, &temp)); in crypto_ec_point_compute_y_sqr() 394 MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(y_sqr, &temp2, &e->group.P)); in crypto_ec_point_compute_y_sqr() 398 mbedtls_mpi_free(&temp2); in crypto_ec_point_compute_y_sqr()
|
/hal_espressif-2.7.6/components/mbedtls/port/sha/parallel_engine/ |
D | esp_sha256.c | 202 temp2 = S2(a) + F0(a,b,c); \ 203 d += temp1; h = temp1 + temp2; \ 241 uint32_t temp1, temp2, W[64]; in mbedtls_sha256_software_process() local
|
D | esp_sha512.c | 270 uint64_t temp1, temp2, W[80]; in mbedtls_sha512_software_process() local 288 temp2 = S2(a) + F0(a,b,c); \ in mbedtls_sha512_software_process() 289 d += temp1; h = temp1 + temp2; \ in mbedtls_sha512_software_process()
|