Lines Matching full:x
98 * \param[in,out] X The address of the MPI to be converted.
102 * in range `0 <= X < 2 * N` (where N is the modulus).
105 * \param[in] X_limbs The length of \p X in limbs.
112 int mbedtls_ecp_mod_p224_raw(mbedtls_mpi_uint *X, size_t X_limbs);
120 * \param[in,out] X The address of the MPI to be converted.
124 * in range `0 <= X < 2 * N` (where N is the modulus).
127 * \param[in] X_limbs The length of \p X in limbs.
134 int mbedtls_ecp_mod_p256_raw(mbedtls_mpi_uint *X, size_t X_limbs);
142 * \param[in,out] X The address of the MPI to be converted.
146 * in range `0 <= X < 2 * N` (where N is the modulus).
149 * \param[in] X_limbs The length of \p X in limbs.
156 int mbedtls_ecp_mod_p521_raw(mbedtls_mpi_uint *X, size_t X_limbs);
164 * \param[in,out] X The address of the MPI to be converted.
168 * in range `0 <= X < 2 * N` (where N is the modulus).
178 int mbedtls_ecp_mod_p384_raw(mbedtls_mpi_uint *X, size_t X_limbs);
187 * \param[in,out] X The address of the MPI to be converted.
191 * in range `0 <= X < 2 * N` (where N is the modulus).
194 * \param[in] X_limbs The length of \p X in limbs.
197 * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if \p X does not have
202 int mbedtls_ecp_mod_p192k1_raw(mbedtls_mpi_uint *X, size_t X_limbs);
211 * \param[in,out] X The address of the MPI to be converted.
215 * in range `0 <= X < 2 * N` (where N is the modulus).
218 * \param[in] X_limbs The length of \p X in limbs.
221 * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if \p X does not have
226 int mbedtls_ecp_mod_p224k1_raw(mbedtls_mpi_uint *X, size_t X_limbs);
235 * \param[in,out] X The address of the MPI to be converted.
239 * in range `0 <= X < 2 * N` (where N is the modulus).
242 * \param[in] X_limbs The length of \p X in limbs.
245 * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if \p X does not have
250 int mbedtls_ecp_mod_p256k1_raw(mbedtls_mpi_uint *X, size_t X_limbs);
258 * \param[in,out] X The address of the MPI to be converted.
262 * in range `0 <= X < 2 * N` (where N is the modulus).
263 * \param[in] X_limbs The length of \p X in limbs.
266 * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if \p X does not have
271 int mbedtls_ecp_mod_p255_raw(mbedtls_mpi_uint *X, size_t X_limbs);
278 * Write X as A0 + 2^448 A1 and A1 as B0 + 2^224 B1, and return A0 + A1 + B1 +
281 * \param[in,out] X The address of the MPI to be converted.
284 * holds the reduced value which is in range `0 <= X <
288 * \param[in] X_limbs The length of \p X in limbs.
291 * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if \p X does not have
297 int mbedtls_ecp_mod_p448_raw(mbedtls_mpi_uint *X, size_t X_limbs);