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

/external/dropbear/libtommath/mtest/
H A Dmpi.c134 void s_mp_copy(mp_digit *sp, mp_digit *dp, mp_size count); /* copy */
150 #define s_mp_copy(sp, dp, count) \ macro
153 #define s_mp_copy(sp, dp, count) memcpy(dp, sp, (count) * sizeof(mp_digit)) macro
317 s_mp_copy(DIGITS(from), DIGITS(mp), USED(from));
357 s_mp_copy(DIGITS(from), DIGITS(to), USED(from));
363 s_mp_copy(DIGITS(from), tmp, USED(from));
2665 s_mp_copy(DIGITS(mp), tmp, USED(mp));
2723 /* {{{ s_mp_copy(sp, dp, count) */
2727 void s_mp_copy(mp_digit *sp, mp_digit *dp, mp_size count) function
2738 } /* end s_mp_copy() */
[all...]

Completed in 78 milliseconds