1 /* TomsFastMath, a fast ISO C bignum library.
3 * This project is meant to fill in where LibTomMath
4 * falls short. That is speed ;-)
6 * This project is public domain and free for all purposes.
8 * Tom St Denis, tomstdenis@gmail.com
10 #include <tfm_private.h>
12 void fp_lshd(fp_int *a, int x)
16 /* move up and truncate as required */
17 y = MIN(a->used + x - 1, (int)(FP_SIZE-1));
24 a->dp[y] = a->dp[y-x];
27 /* zero lower digits */