HomeSort by: relevance | last modified time | path
    Searched defs:c_shifted (Results 1 - 1 of 1) sorted by relevancy

  /src/external/lgpl3/mpfr/dist/src/
add1sp.c 788 mp_limb_t cy, cy2, c_shifted; local
799 c_shifted = (cp[i+1] << (GMP_NUMB_BITS - d)) | (cp[i] >> d);
800 ap[i] = bp[i] + c_shifted;
801 cy2 = ap[i] < c_shifted;
806 c_shifted = cp[i] >> d;
807 ap[i] = bp[i] + c_shifted;
808 cy2 = ap[i] < c_shifted;
832 c_shifted = (cp[q+i+1] << (GMP_NUMB_BITS - r)) | (cp[q+i] >> r);
833 ap[i] = bp[i] + c_shifted;
834 cy2 = ap[i] < c_shifted;
    [all...]

Completed in 25 milliseconds