mpi.c | 134 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)); 2727 void s_mp_copy(mp_digit *sp, mp_digit *dp, mp_size count) function [all...] |