Searched refs:_M_w (Results 1 – 2 of 2) sorted by relevance
42 _M_w[__n] = _M_w[__n - __wshift]; 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()65 _M_w[__n] = _M_w[__n + __wshift]; in _M_do_right_shift()70 _M_w[__n] = (_M_w[__n + __wshift] >> __offset) | in _M_do_right_shift()71 (_M_w[__n + __wshift + 1] << __sub_offset); in _M_do_right_shift()72 _M_w[__limit] = _M_w[_Nw-1] >> __offset; in _M_do_right_shift()75 fill(_M_w + __limit + 1, _M_w + _Nw, __STATIC_CAST(_WordT,0)); in _M_do_right_shift()[all …]
110 _WordT _M_w[_Nw]; // 0 is the least significant word. member116 _M_w[0] = __val; in _Base_bitset()132 _WordT& _M_getword(size_t __pos) { return _M_w[_S_whichword(__pos)]; } in _M_getword()133 _WordT _M_getword(size_t __pos) const { return _M_w[_S_whichword(__pos)]; } in _M_getword()135 _WordT& _M_hiword() { return _M_w[_Nw - 1]; } in _M_hiword()136 _WordT _M_hiword() const { return _M_w[_Nw - 1]; } in _M_hiword()140 _M_w[__i] &= __x._M_w[__i]; in _M_do_and()146 _M_w[__i] |= __x._M_w[__i]; in _M_do_or()152 _M_w[__i] ^= __x._M_w[__i]; in _M_do_xor()162 _M_w[__i] = ~_M_w[__i]; in _M_do_flip()[all …]