(162 . 11)(162 . 15)
5 bitno = n % BITS_PER_MPI_LIMB;
6
7 if( limbno >= a->nlimbs )
8 return; /* not allocated, so need to clear bits :-) */
9 return; /* not allocated, so no effect */
10
11 for( ; bitno < BITS_PER_MPI_LIMB; bitno++ )
12 a->d[limbno] &= ~(A_LIMB_1 << bitno);
13 a->d[limbno] &= ~(A_LIMB_1 << bitno);
14
15 /* adjust nlimbs to clear any leading zero-value limbs (normalize) */
16 a->nlimbs = limbno+1;
17 for( ; a->nlimbs && !a->d[a->nlimbs-1]; a->nlimbs-- );
18
19 }
20
21 /****************