Home
last modified time | relevance | path

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)); in mp_init_copy()
231 s_mp_copy(DIGITS(from), DIGITS(to), USED(from)); in mp_copy()
237 s_mp_copy(DIGITS(from), tmp, USED(from)); in mp_copy()
2801 s_mp_copy(DIGITS(mp), tmp, USED(mp)); in s_mp_grow()
2867 void s_mp_copy(const mp_digit *sp, mp_digit *dp, mp_size count) in s_mp_copy() function