Lines Matching refs:clen

946 UINT clen;  in _nx_crypto_ec_point_extract_uncompressed()  local
948 clen = (curve -> nx_crypto_ec_bits + 7) >> 3; in _nx_crypto_ec_point_extract_uncompressed()
950 if (byte_stream_size < 1 + (clen << 1)) in _nx_crypto_ec_point_extract_uncompressed()
961 byte_stream, clen); in _nx_crypto_ec_point_extract_uncompressed()
968 byte_stream += clen; in _nx_crypto_ec_point_extract_uncompressed()
969 *huge_number_size = *huge_number_size + clen; in _nx_crypto_ec_point_extract_uncompressed()
970 byte_stream_size -= clen; in _nx_crypto_ec_point_extract_uncompressed()
973 byte_stream, clen); in _nx_crypto_ec_point_extract_uncompressed()
980 *huge_number_size = *huge_number_size + clen; in _nx_crypto_ec_point_extract_uncompressed()
4593 UINT clen; in _nx_crypto_ec_x25519_448_multiple() local
4597 clen = (curve -> nx_crypto_ec_bits + 7) >> 3; in _nx_crypto_ec_x25519_448_multiple()
4599 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&k_2, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4600 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&x_1, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4601 clen = clen << 1; in _nx_crypto_ec_x25519_448_multiple()
4602 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&x_2, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4603 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&z_2, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4604 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&x_3, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4605 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&z_3, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4606 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&t_1, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()
4607 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&t_2, scratch, clen); in _nx_crypto_ec_x25519_448_multiple()