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

/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi-priv.h149 void s_mp_copy(const mp_digit *sp, mp_digit *dp, mp_size count); /* copy */
168 #define s_mp_copy(sp, dp, count) \ macro
171 #define s_mp_copy(sp, dp, count) memcpy(dp, sp, (count) * sizeof(mp_digit)) macro
H A Dmpi.c177 s_mp_copy(DIGITS(from), DIGITS(mp), USED(from));
222 s_mp_copy(DIGITS(from), DIGITS(to), USED(from));
228 s_mp_copy(DIGITS(from), tmp, USED(from));
2791 s_mp_copy(DIGITS(mp), tmp, USED(mp));
2853 /* {{{ s_mp_copy(sp, dp, count) */
2857 void s_mp_copy(const mp_digit *sp, mp_digit *dp, mp_size count) function
2868 } /* end s_mp_copy() */

Completed in 53 milliseconds