Searched refs:small_shift (Results 1 – 1 of 1) sorted by relevance
1895 unsigned int small_shift = shift % HOST_BITS_PER_WIDE_INT; in lshift_large() local1903 if (small_shift == 0) in lshift_large()1915 val[i] = (x << small_shift) | carry; in lshift_large()1916 carry = x >> (-small_shift % HOST_BITS_PER_WIDE_INT); in lshift_large()1932 unsigned int small_shift = shift % HOST_BITS_PER_WIDE_INT; in rshift_large_common() local1939 if (small_shift == 0) in rshift_large_common()1949 val[i] = curr >> small_shift; in rshift_large_common()1951 val[i] |= curr << (-small_shift % HOST_BITS_PER_WIDE_INT); in rshift_large_common()