Lines Matching refs:P521_WIDTH
5137 #define P521_WIDTH (521 / 8 / sizeof(mbedtls_mpi_uint) + 1)
5151 mbedtls_mpi_uint Mp[P521_WIDTH + 1];
5154 * P521_WIDTH + 1. Otherwise P521_WIDTH is enough. */
5156 if (N->n < P521_WIDTH) {
5162 M.n = N->n - (P521_WIDTH - 1);
5163 if (M.n > P521_WIDTH + 1) {
5164 M.n = P521_WIDTH + 1;
5167 memcpy(Mp, N->p + P521_WIDTH - 1, M.n * sizeof(mbedtls_mpi_uint));
5171 N->p[P521_WIDTH - 1] &= P521_MASK;
5172 for (i = P521_WIDTH; i < N->n; i++) {
5183 #undef P521_WIDTH