Home
last modified time | relevance | path

Searched refs:small_shift (Results 1 – 1 of 1) sorted by relevance

/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dwide-int.cc1895 unsigned int small_shift = shift % HOST_BITS_PER_WIDE_INT; in lshift_large() local
1903 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() local
1939 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()