Searched refs:s_mp_copy (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/mpi/
H A Dmpi-priv.h158 void s_mp_copy(const mp_digit *sp, mp_digit *dp, mp_size count); /* copy */
177 #define s_mp_copy(sp, dp, count) \ macro
180 #define s_mp_copy(sp, dp, count) memcpy(dp, sp, (count) * sizeof(mp_digit)) macro
H A Dmpi.c189 s_mp_copy(DIGITS(from), DIGITS(mp), USED(from));
231 s_mp_copy(DIGITS(from), DIGITS(to), USED(from));
237 s_mp_copy(DIGITS(from), tmp, USED(from));
2801 s_mp_copy(DIGITS(mp), tmp, USED(mp));
2863 /* {{{ s_mp_copy(sp, dp, count) */
2867 void s_mp_copy(const mp_digit *sp, mp_digit *dp, mp_size count) function
2878 } /* end s_mp_copy() */

Completed in 69 milliseconds