Home | History | Annotate | Download | only in libbid

Lines Matching defs:CX

279   UINT128 CX, res;
541 CX.w[0] = 0;
542 CX.w[1] = 0;
549 CX.w[0] = coeff_high;
550 CX.w[1] = 0;
565 __mul_64x64_to_128_fast (CX, coeff_high, scale_high);
567 CX.w[0] += coeff_low;
568 if (CX.w[0] < coeff_low)
569 CX.w[1]++;
571 get_BID128 (&res, sign_x, dec_expon, CX,&rnd_mode,pfpsf);
661 __mul_64x64_to_128_fast (CX, coeff_high, scale_high);
664 CX.w[0] += coeff_low;
665 if (CX.w[0] < coeff_low)
666 CX.w[1]++;
669 get_BID128(&res, sign_x, dec_expon, CX, &rnd_mode, pfpsf);