Lines Matching refs:small_prec

396       unsigned int blocks_needed, unsigned int small_prec,  in selt()  argument
409 if (small_prec && index == blocks_needed - 1) in selt()
411 ? sext_hwi (val, small_prec) in selt()
412 : zext_hwi (val, small_prec)); in selt()
442 unsigned int small_prec = prec & (HOST_BITS_PER_WIDE_INT - 1); in eq_p_large() local
447 if (op0len == BLOCKS_NEEDED (prec) && small_prec) in eq_p_large()
451 if (zext_hwi (op0 [l0], small_prec) != zext_hwi (op1 [l0], small_prec)) in eq_p_large()
474 unsigned int small_prec = precision & (HOST_BITS_PER_WIDE_INT - 1); in lts_p_large() local
479 s0 = selt (op0, op0len, blocks_needed, small_prec, l, SIGNED); in lts_p_large()
480 s1 = selt (op1, op1len, blocks_needed, small_prec, l, SIGNED); in lts_p_large()
489 u0 = selt (op0, op0len, blocks_needed, small_prec, l, SIGNED); in lts_p_large()
490 u1 = selt (op1, op1len, blocks_needed, small_prec, l, SIGNED); in lts_p_large()
512 unsigned int small_prec = precision & (HOST_BITS_PER_WIDE_INT - 1); in cmps_large() local
517 s0 = selt (op0, op0len, blocks_needed, small_prec, l, SIGNED); in cmps_large()
518 s1 = selt (op1, op1len, blocks_needed, small_prec, l, SIGNED); in cmps_large()
527 u0 = selt (op0, op0len, blocks_needed, small_prec, l, SIGNED); in cmps_large()
528 u1 = selt (op1, op1len, blocks_needed, small_prec, l, SIGNED); in cmps_large()
549 unsigned int small_prec = precision & (HOST_BITS_PER_WIDE_INT - 1); in ltu_p_large() local
554 x0 = selt (op0, op0len, blocks_needed, small_prec, l, UNSIGNED); in ltu_p_large()
555 x1 = selt (op1, op1len, blocks_needed, small_prec, l, UNSIGNED); in ltu_p_large()
576 unsigned int small_prec = precision & (HOST_BITS_PER_WIDE_INT - 1); in cmpu_large() local
581 x0 = selt (op0, op0len, blocks_needed, small_prec, l, UNSIGNED); in cmpu_large()
582 x1 = selt (op1, op1len, blocks_needed, small_prec, l, UNSIGNED); in cmpu_large()
1197 unsigned int small_prec = prec & (HOST_BITS_PER_WIDE_INT - 1); in wi_unpack() local
1217 if (small_prec) in wi_unpack()
1220 x = sext_hwi (x, small_prec); in wi_unpack()
1222 x = zext_hwi (x, small_prec); in wi_unpack()
1971 unsigned int small_prec = (xprecision - shift) % HOST_BITS_PER_WIDE_INT; in lrshift_large() local
1972 if (small_prec) in lrshift_large()
1973 val[len - 1] = zext_hwi (val[len - 1], small_prec); in lrshift_large()
1998 unsigned int small_prec = (xprecision - shift) % HOST_BITS_PER_WIDE_INT; in arshift_large() local
1999 if (small_prec) in arshift_large()
2000 val[len - 1] = sext_hwi (val[len - 1], small_prec); in arshift_large()