Lines Matching refs:compare_value
1191 UINT compare_value; in _nx_crypto_ec_secp192r1_reduce() local
1193 compare_value = _nx_crypto_huge_number_compare(value, &curve -> nx_crypto_ec_field.fp); in _nx_crypto_ec_secp192r1_reduce()
1194 if (compare_value == NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_secp192r1_reduce()
1198 else if (compare_value == NX_CRYPTO_HUGE_NUMBER_EQUAL) in _nx_crypto_ec_secp192r1_reduce()
1239 compare_value = _nx_crypto_huge_number_compare_unsigned(value, &curve -> nx_crypto_ec_field.fp); in _nx_crypto_ec_secp192r1_reduce()
1240 while (compare_value != NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_secp192r1_reduce()
1243 compare_value = _nx_crypto_huge_number_compare_unsigned(value, in _nx_crypto_ec_secp192r1_reduce()
1328 UINT compare_value; in _nx_crypto_ec_secp224r1_reduce() local
1330 compare_value = _nx_crypto_huge_number_compare(value, &curve -> nx_crypto_ec_field.fp); in _nx_crypto_ec_secp224r1_reduce()
1331 if (compare_value == NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_secp224r1_reduce()
1335 else if (compare_value == NX_CRYPTO_HUGE_NUMBER_EQUAL) in _nx_crypto_ec_secp224r1_reduce()
1382 compare_value = _nx_crypto_huge_number_compare_unsigned(value, &curve -> nx_crypto_ec_field.fp); in _nx_crypto_ec_secp224r1_reduce()
1383 while (compare_value != NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_secp224r1_reduce()
1386 compare_value = _nx_crypto_huge_number_compare_unsigned(value, in _nx_crypto_ec_secp224r1_reduce()
1472 UINT compare_value; in _nx_crypto_ec_secp256r1_reduce() local
1474 compare_value = _nx_crypto_huge_number_compare(value, &curve -> nx_crypto_ec_field.fp); in _nx_crypto_ec_secp256r1_reduce()
1475 if (compare_value == NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_secp256r1_reduce()
1479 else if (compare_value == NX_CRYPTO_HUGE_NUMBER_EQUAL) in _nx_crypto_ec_secp256r1_reduce()
1550 compare_value = _nx_crypto_huge_number_compare_unsigned(value, &curve -> nx_crypto_ec_field.fp); in _nx_crypto_ec_secp256r1_reduce()
1551 while (compare_value != NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_secp256r1_reduce()
1554 compare_value = _nx_crypto_huge_number_compare_unsigned(value, in _nx_crypto_ec_secp256r1_reduce()
1637 UINT compare_value; in _nx_crypto_ec_secp384r1_reduce() local
1639 compare_value = _nx_crypto_huge_number_compare(value, &curve -> nx_crypto_ec_field.fp); in _nx_crypto_ec_secp384r1_reduce()
1640 if (compare_value == NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_secp384r1_reduce()
1644 else if (compare_value == NX_CRYPTO_HUGE_NUMBER_EQUAL) in _nx_crypto_ec_secp384r1_reduce()
1724 compare_value = _nx_crypto_huge_number_compare_unsigned(value, &curve -> nx_crypto_ec_field.fp); in _nx_crypto_ec_secp384r1_reduce()
1725 while (compare_value != NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_secp384r1_reduce()
1728 compare_value = _nx_crypto_huge_number_compare_unsigned(value, in _nx_crypto_ec_secp384r1_reduce()
1808 UINT compare_value; in _nx_crypto_ec_secp521r1_reduce() local
1810 compare_value = _nx_crypto_huge_number_compare(value, &curve -> nx_crypto_ec_field.fp); in _nx_crypto_ec_secp521r1_reduce()
1811 if (compare_value == NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_secp521r1_reduce()
1815 else if (compare_value == NX_CRYPTO_HUGE_NUMBER_EQUAL) in _nx_crypto_ec_secp521r1_reduce()
1845 compare_value = _nx_crypto_huge_number_compare_unsigned(value, &curve -> nx_crypto_ec_field.fp); in _nx_crypto_ec_secp521r1_reduce()
1846 while (compare_value != NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_secp521r1_reduce()
1849 compare_value = _nx_crypto_huge_number_compare_unsigned(value, in _nx_crypto_ec_secp521r1_reduce()
4293 UINT compare_value; in _nx_crypto_ec_validate_public_key() local
4308 …compare_value = _nx_crypto_huge_number_compare(&public_key -> nx_crypto_ec_point_x, &chosen_curve … in _nx_crypto_ec_validate_public_key()
4309 if (compare_value != NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_validate_public_key()
4314 …compare_value = _nx_crypto_huge_number_compare(&public_key -> nx_crypto_ec_point_y, &chosen_curve … in _nx_crypto_ec_validate_public_key()
4315 if (compare_value != NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_validate_public_key()
4348 compare_value = _nx_crypto_huge_number_compare(&temp, &right); in _nx_crypto_ec_validate_public_key()
4349 if (compare_value != NX_CRYPTO_HUGE_NUMBER_EQUAL) in _nx_crypto_ec_validate_public_key()