Lines Matching refs:small_prec

410       unsigned int blocks_needed, unsigned int small_prec,  in selt()  argument
423 if (small_prec && index == blocks_needed - 1) in selt()
425 ? sext_hwi (val, small_prec) in selt()
426 : zext_hwi (val, small_prec)); in selt()
456 unsigned int small_prec = prec & (HOST_BITS_PER_WIDE_INT - 1); in eq_p_large() local
461 if (op0len == BLOCKS_NEEDED (prec) && small_prec) in eq_p_large()
465 if (zext_hwi (op0 [l0], small_prec) != zext_hwi (op1 [l0], small_prec)) in eq_p_large()
488 unsigned int small_prec = precision & (HOST_BITS_PER_WIDE_INT - 1); in lts_p_large() local
493 s0 = selt (op0, op0len, blocks_needed, small_prec, l, SIGNED); in lts_p_large()
494 s1 = selt (op1, op1len, blocks_needed, small_prec, l, SIGNED); in lts_p_large()
503 u0 = selt (op0, op0len, blocks_needed, small_prec, l, SIGNED); in lts_p_large()
504 u1 = selt (op1, op1len, blocks_needed, small_prec, l, SIGNED); in lts_p_large()
526 unsigned int small_prec = precision & (HOST_BITS_PER_WIDE_INT - 1); in cmps_large() local
531 s0 = selt (op0, op0len, blocks_needed, small_prec, l, SIGNED); in cmps_large()
532 s1 = selt (op1, op1len, blocks_needed, small_prec, l, SIGNED); in cmps_large()
541 u0 = selt (op0, op0len, blocks_needed, small_prec, l, SIGNED); in cmps_large()
542 u1 = selt (op1, op1len, blocks_needed, small_prec, l, SIGNED); in cmps_large()
563 unsigned int small_prec = precision & (HOST_BITS_PER_WIDE_INT - 1); in ltu_p_large() local
568 x0 = selt (op0, op0len, blocks_needed, small_prec, l, UNSIGNED); in ltu_p_large()
569 x1 = selt (op1, op1len, blocks_needed, small_prec, l, UNSIGNED); in ltu_p_large()
590 unsigned int small_prec = precision & (HOST_BITS_PER_WIDE_INT - 1); in cmpu_large() local
595 x0 = selt (op0, op0len, blocks_needed, small_prec, l, UNSIGNED); in cmpu_large()
596 x1 = selt (op1, op1len, blocks_needed, small_prec, l, UNSIGNED); in cmpu_large()
1225 unsigned int small_prec = prec & (HOST_BITS_PER_WIDE_INT - 1); in wi_unpack() local
1245 if (small_prec) in wi_unpack()
1248 x = sext_hwi (x, small_prec); in wi_unpack()
1250 x = zext_hwi (x, small_prec); in wi_unpack()
2015 unsigned int small_prec = (xprecision - shift) % HOST_BITS_PER_WIDE_INT; in lrshift_large() local
2016 if (small_prec) in lrshift_large()
2017 val[len - 1] = zext_hwi (val[len - 1], small_prec); in lrshift_large()
2042 unsigned int small_prec = (xprecision - shift) % HOST_BITS_PER_WIDE_INT; in arshift_large() local
2043 if (small_prec) in arshift_large()
2044 val[len - 1] = sext_hwi (val[len - 1], small_prec); in arshift_large()