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

/osnet-11/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.c193 s_mp_copy(DIGITS(from), DIGITS(mp), USED(from));
235 s_mp_copy(DIGITS(from), DIGITS(to), USED(from));
241 s_mp_copy(DIGITS(from), tmp, USED(from));
2973 s_mp_copy(DIGITS(mp), tmp, USED(mp));
3035 /* {{{ s_mp_copy(sp, dp, count) */
3039 void s_mp_copy(const mp_digit *sp, mp_digit *dp, mp_size count) function
3050 } /* end s_mp_copy() */

Completed in 46 milliseconds