HomeSort by: relevance | last modified time | path
    Searched defs:polys (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/ml_dsa/
ml_dsa_key.c 321 POLY *polys; local
326 polys = OPENSSL_malloc(sizeof(*polys) * (k + l + k * l));
327 if (polys == NULL)
330 vector_init(&t, polys, k);
353 OPENSSL_free(polys);
382 POLY *polys = NULL; local
389 polys = OPENSSL_malloc(sizeof(*polys) * (2 * k));
390 if (polys == NULL
    [all...]
ml_dsa_sign.c 66 POLY *polys = NULL, *p, *c_ntt; local
83 + sizeof(*polys) * (1 + num_polys_k + num_polys_l + num_polys_k_by_l + num_polys_sig_k);
92 /* Init the temp vectors to point to the allocated polys blob */
212 POLY *polys = NULL, *p, *c_ntt; local
236 + sizeof(*polys) * (1 + num_polys_k + num_polys_l + num_polys_k_by_l + num_polys_sig));
244 /* Init the temp vectors to point to the allocated polys blob */
  /src/external/mit/isl/dist/
isl_polynomial.c 3784 isl_poly **polys; local
3814 polys = isl_alloc_array(qp->dim->ctx, struct isl_poly *, n);
3815 if (!polys)
3818 polys[i] = subs[i]->poly;
3821 poly = isl_poly_subs(poly, first, n, polys);
3824 free(polys);

Completed in 29 milliseconds