Searched refs:tspace (Results 1 – 3 of 3) sorted by relevance
| /linux/lib/crypto/mpi/ |
| H A D | mpih-mul.c | 21 #define MPN_MUL_N_RECURSE(prodp, up, vp, size, tspace) \ argument 26 mul_n(prodp, up, vp, size, tspace); \ 29 #define MPN_SQR_N_RECURSE(prodp, up, size, tspace) \ argument 34 mpih_sqr_n(prodp, up, size, tspace); \ 96 mpi_size_t size, mpi_ptr_t tspace) in mul_n() argument 112 MPN_MUL_N_RECURSE(prodp, up, vp, esize, tspace); in mul_n() 143 tspace); in mul_n() 166 MPN_MUL_N_RECURSE(tspace, prodp, prodp + hsize, hsize, in mul_n() 167 tspace + size); in mul_n() 177 mpihelp_sub_n(prodp + hsize, prodp + hsize, tspace, in mul_n() [all …]
|
| H A D | mpi-pow.c | 31 mpi_ptr_t tspace = NULL; in mpi_powm() local 187 if (!tspace) { in mpi_powm() 189 tspace = in mpi_powm() 191 if (!tspace) in mpi_powm() 194 mpi_free_limb_space(tspace); in mpi_powm() 196 tspace = in mpi_powm() 198 if (!tspace) in mpi_powm() 201 mpih_sqr_n(xp, rp, rsize, tspace); in mpi_powm() 307 if (tspace) in mpi_powm() 308 mpi_free_limb_space(tspace); in mpi_powm()
|
| H A D | mpi-internal.h | 94 #define MPN_MUL_N_RECURSE(prodp, up, vp, size, tspace) \ argument 99 mul_n(prodp, up, vp, size, tspace); \ 160 mpi_ptr_t tspace; member 176 mpi_ptr_t tspace);
|