Home
last modified time | relevance | path

Searched refs:temp2 (Results 1 – 8 of 8) sorted by relevance

/NetX-Duo-v6.2.1/crypto_libraries/src/
Dnx_crypto_sha2.c440 ULONG temp1, temp2; in _nx_crypto_sha256_process_buffer() local
464 temp2 = LARGE_SIGMA_0(a) + MAJ_FUNC(a, b, c); in _nx_crypto_sha256_process_buffer()
466 h = temp1 + temp2; in _nx_crypto_sha256_process_buffer()
470 temp2 = LARGE_SIGMA_0(h) + MAJ_FUNC(h, a, b); in _nx_crypto_sha256_process_buffer()
472 g = temp1 + temp2; in _nx_crypto_sha256_process_buffer()
476 temp2 = LARGE_SIGMA_0(g) + MAJ_FUNC(g, h, a); in _nx_crypto_sha256_process_buffer()
478 f = temp1 + temp2; in _nx_crypto_sha256_process_buffer()
482 temp2 = LARGE_SIGMA_0(f) + MAJ_FUNC(f, g, h); in _nx_crypto_sha256_process_buffer()
484 e = temp1 + temp2; in _nx_crypto_sha256_process_buffer()
488 temp2 = LARGE_SIGMA_0(e) + MAJ_FUNC(e, f, g); in _nx_crypto_sha256_process_buffer()
[all …]
Dnx_crypto_ecjpake.c1118 NX_CRYPTO_HUGE_NUMBER h, temp1, temp2; in _nx_crypto_ecjpake_schnorr_zkp_generate() local
1123 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp2, scratch, buffer_size << 1); in _nx_crypto_ecjpake_schnorr_zkp_generate()
1143 _nx_crypto_huge_number_multiply(&h, private_key, &temp2); in _nx_crypto_ecjpake_schnorr_zkp_generate()
1144 _nx_crypto_huge_number_subtract(&temp1, &temp2); in _nx_crypto_ecjpake_schnorr_zkp_generate()
1220 NX_CRYPTO_EC_POINT temp1, temp2; in _nx_crypto_ecjpake_schnorr_zkp_verify() local
1227 NX_CRYPTO_EC_POINT_INITIALIZE(&temp2, in _nx_crypto_ecjpake_schnorr_zkp_verify()
1243 curve -> nx_crypto_ec_multiple(curve, g, r, &temp2, scratch); in _nx_crypto_ecjpake_schnorr_zkp_verify()
1244 curve -> nx_crypto_ec_add(curve, &temp1, &temp2, scratch); in _nx_crypto_ecjpake_schnorr_zkp_verify()
1408 NX_CRYPTO_EC_POINT temp1, temp2; in _nx_crypto_ecjpake_pre_master_secret_generate() local
1417 NX_CRYPTO_EC_POINT_INITIALIZE(&temp2, in _nx_crypto_ecjpake_pre_master_secret_generate()
[all …]
Dnx_crypto_ec.c1088 NX_CRYPTO_HUGE_NUMBER temp1, temp2, zi; in _nx_crypto_ec_point_fp_projective_to_affine() local
1103 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp2, scratch, buffer_size << 1); in _nx_crypto_ec_point_fp_projective_to_affine()
1113 &temp1, &temp2, scratch); in _nx_crypto_ec_point_fp_projective_to_affine()
1114 NX_CRYPTO_HUGE_NUMBER_COPY(&point -> nx_crypto_ec_point_x, &temp2); in _nx_crypto_ec_point_fp_projective_to_affine()
1117 NX_CRYPTO_EC_MULTIPLE_REDUCE(curve, &zi, &temp1, &temp2, scratch); in _nx_crypto_ec_point_fp_projective_to_affine()
1119 &temp2, &temp1, scratch); in _nx_crypto_ec_point_fp_projective_to_affine()
2258 NX_CRYPTO_HUGE_NUMBER temp1, temp2, temp3, temp4, temp5; in _nx_crypto_ec_fp_projective_add() local
2289 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp2, scratch, buffer_size << 1); in _nx_crypto_ec_fp_projective_add()
2299 &temp1, &temp2, scratch); in _nx_crypto_ec_fp_projective_add()
2300 _nx_crypto_ec_subtract_reduce(curve, &temp2, &projective_point -> nx_crypto_ec_point_x, in _nx_crypto_ec_fp_projective_add()
[all …]
Dnx_crypto_sha5.c504 ULONG64 temp1, temp2; in _nx_crypto_sha512_process_buffer() local
548 temp2 = LARGE_SIGMA_0(a) + MAJ_FUNC(a, b, c); in _nx_crypto_sha512_process_buffer()
556 a = temp1 + temp2; in _nx_crypto_sha512_process_buffer()
572 temp1 = 0; temp2 = 0; in _nx_crypto_sha512_process_buffer()
Dnx_crypto_huge_number.c2805 NX_CRYPTO_HUGE_NUMBER temp1, temp2, temp3; in _nx_crypto_huge_number_crt_power_modulus() local
2837 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp2, scratch, p -> nx_crypto_huge_buffer_size); in _nx_crypto_huge_number_crt_power_modulus()
2843 ep = &temp2; in _nx_crypto_huge_number_crt_power_modulus()
2867 eq = &temp2; in _nx_crypto_huge_number_crt_power_modulus()
/NetX-Duo-v6.2.1/test/regression/nat_test/
Dnetx_nat_tcp_remove_oldest_udp_entry_test.c247 UINT temp1, temp2, oldest_local_port; in thread_client_entry() local
352 timestamp += temp2 - temp1; in thread_client_entry()
379 timestamp += temp2 - temp1; in thread_client_entry()
415 timestamp += temp2 - temp1; in thread_client_entry()
544 temp2 = tx_time_get(); in thread_client_entry()
/NetX-Duo-v6.2.1/addons/sntp/
Dnxd_sntp_client.c6421 UINT _nx_sntp_client_utility_addition_overflow_check(ULONG temp1, ULONG temp2) in _nx_sntp_client_utility_addition_overflow_check() argument
6431 sum_lower_16 = (temp1 & NX_LOWER_16_MASK) + (temp2 & NX_LOWER_16_MASK); in _nx_sntp_client_utility_addition_overflow_check()
6442 sum_upper_16 = (temp1 >> NX_SHIFT_BY_16) + (temp2 >> NX_SHIFT_BY_16) + carry; in _nx_sntp_client_utility_addition_overflow_check()
Dnxd_sntp_client.h768 UINT _nx_sntp_client_utility_addition_overflow_check(ULONG temp1, ULONG temp2);