Home | History | Annotate | Download | only in 4.8.3

Lines Matching full:__shift

154       _M_do_left_shift(size_t __shift) _GLIBCXX_NOEXCEPT;
157 _M_do_right_shift(size_t __shift) _GLIBCXX_NOEXCEPT;
236 _Base_bitset<_Nw>::_M_do_left_shift(size_t __shift) _GLIBCXX_NOEXCEPT
238 if (__builtin_expect(__shift != 0, 1))
240 const size_t __wshift = __shift / _GLIBCXX_BITSET_BITS_PER_WORD;
241 const size_t __offset = __shift % _GLIBCXX_BITSET_BITS_PER_WORD;
262 _Base_bitset<_Nw>::_M_do_right_shift(size_t __shift) _GLIBCXX_NOEXCEPT
264 if (__builtin_expect(__shift != 0, 1))
266 const size_t __wshift = __shift / _GLIBCXX_BITSET_BITS_PER_WORD;
267 const size_t __offset = __shift % _GLIBCXX_BITSET_BITS_PER_WORD;
440 _M_do_left_shift(size_t __shift) _GLIBCXX_NOEXCEPT
441 { _M_w <<= __shift; }
444 _M_do_right_shift(size_t __shift) _GLIBCXX_NOEXCEPT
445 { _M_w >>= __shift; }