Searched refs:intermed (Results 1 – 1 of 1) sorted by relevance
/mbedtls-3.4.0/library/ |
D | sha512.c | 348 uint64x2_t initial_sum, sum, intermed; in mbedtls_internal_sha512_process_many_a64_crypto() local 378 intermed = vsha512hq_u64( sum, vextq_u64( ef, gh, 1 ), vextq_u64( cd, ef, 1 ) ); in mbedtls_internal_sha512_process_many_a64_crypto() 379 gh = vsha512h2q_u64( intermed, cd, ab ); in mbedtls_internal_sha512_process_many_a64_crypto() 380 cd = vaddq_u64( cd, intermed ); in mbedtls_internal_sha512_process_many_a64_crypto() 385 intermed = vsha512hq_u64( sum, vextq_u64( cd, ef, 1 ), vextq_u64( ab, cd, 1 ) ); in mbedtls_internal_sha512_process_many_a64_crypto() 386 ef = vsha512h2q_u64( intermed, ab, gh ); in mbedtls_internal_sha512_process_many_a64_crypto() 387 ab = vaddq_u64( ab, intermed ); in mbedtls_internal_sha512_process_many_a64_crypto() 392 intermed = vsha512hq_u64( sum, vextq_u64( ab, cd, 1 ), vextq_u64( gh, ab, 1 ) ); in mbedtls_internal_sha512_process_many_a64_crypto() 393 cd = vsha512h2q_u64( intermed, gh, ef ); in mbedtls_internal_sha512_process_many_a64_crypto() 394 gh = vaddq_u64( gh, intermed ); in mbedtls_internal_sha512_process_many_a64_crypto() [all …]
|