Searched refs:__wshift (Results 1 – 1 of 1) sorted by relevance
37 const size_t __wshift = __shift / __BITS_PER_WORD; in _M_do_left_shift() local41 for (size_t __n = _Nw - 1; __n >= __wshift; --__n) in _M_do_left_shift()42 _M_w[__n] = _M_w[__n - __wshift]; in _M_do_left_shift()46 for (size_t __n = _Nw - 1; __n > __wshift; --__n) in _M_do_left_shift()47 _M_w[__n] = (_M_w[__n - __wshift] << __offset) | in _M_do_left_shift()48 (_M_w[__n - __wshift - 1] >> __sub_offset); in _M_do_left_shift()49 _M_w[__wshift] = _M_w[0] << __offset; in _M_do_left_shift()52 fill(_M_w + 0, _M_w + __wshift, __STATIC_CAST(_WordT,0)); in _M_do_left_shift()59 const size_t __wshift = __shift / __BITS_PER_WORD; in _M_do_right_shift() local61 const size_t __limit = _Nw - __wshift - 1; in _M_do_right_shift()[all …]