Lines Matching refs:clen
945 UINT clen; in _nx_crypto_ec_point_extract_uncompressed() local
947 clen = (curve -> nx_crypto_ec_bits + 7) >> 3; in _nx_crypto_ec_point_extract_uncompressed()
949 if (byte_stream_size < 1 + (clen << 1)) in _nx_crypto_ec_point_extract_uncompressed()
960 byte_stream, clen); in _nx_crypto_ec_point_extract_uncompressed()
967 byte_stream += clen; in _nx_crypto_ec_point_extract_uncompressed()
968 *huge_number_size = *huge_number_size + clen; in _nx_crypto_ec_point_extract_uncompressed()
969 byte_stream_size -= clen; in _nx_crypto_ec_point_extract_uncompressed()
972 byte_stream, clen); in _nx_crypto_ec_point_extract_uncompressed()
979 *huge_number_size = *huge_number_size + clen; in _nx_crypto_ec_point_extract_uncompressed()
4592 UINT clen; in _nx_crypto_ec_x25519_448_multiple() local
4596 clen = (curve -> nx_crypto_ec_bits + 7) >> 3; in _nx_crypto_ec_x25519_448_multiple()
4598 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&k_2, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4599 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&x_1, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4600 clen = clen << 1; in _nx_crypto_ec_x25519_448_multiple()
4601 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&x_2, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4602 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&z_2, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4603 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&x_3, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4604 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&z_3, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4605 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&t_1, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4606 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&t_2, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()