Home | History | Annotate | Download | only in mpf

Lines Matching refs:zeros

40    limbs if it's too big, or padding with low zeros if it's too small.  The
57 mp_size_t prec, nsize, dsize, qsize, prospective_qsize, tsize, zeros;
89 zeros = qsize - prospective_qsize; /* n zeros to get desired qsize */
90 tsize = nsize + zeros; /* size of intermediate numerator */
93 if (zeros > 0)
95 /* pad n with zeros into temporary space */
96 MPN_ZERO (tp, zeros);
97 MPN_COPY (tp+zeros, np, nsize);
103 np -= zeros;