Searched refs:small_shift (Results 1 – 2 of 2) sorted by relevance
1946 unsigned int small_shift = shift % HOST_BITS_PER_WIDE_INT; in lshift_large() local1954 if (small_shift == 0) in lshift_large()1966 val[i] = (x << small_shift) | carry; in lshift_large()1967 carry = x >> (-small_shift % HOST_BITS_PER_WIDE_INT); in lshift_large()1983 unsigned int small_shift = shift % HOST_BITS_PER_WIDE_INT; in rshift_large_common() local1990 if (small_shift == 0) in rshift_large_common()2000 val[i] = curr >> small_shift; in rshift_large_common()2002 val[i] |= curr << (-small_shift % HOST_BITS_PER_WIDE_INT); in rshift_large_common()