Searched refs:__offset (Results 1 – 7 of 7) sorted by relevance
38 const size_t __offset = __shift % __BITS_PER_WORD; in _M_do_left_shift() local40 if (__offset == 0) in _M_do_left_shift()45 const size_t __sub_offset = __BITS_PER_WORD - __offset; in _M_do_left_shift()47 _M_w[__n] = (_M_w[__n - __wshift] << __offset) | in _M_do_left_shift()49 _M_w[__wshift] = _M_w[0] << __offset; in _M_do_left_shift()60 const size_t __offset = __shift % __BITS_PER_WORD; in _M_do_right_shift() local63 if (__offset == 0) in _M_do_right_shift()68 const size_t __sub_offset = __BITS_PER_WORD - __offset; in _M_do_right_shift()70 _M_w[__n] = (_M_w[__n + __wshift] >> __offset) | in _M_do_right_shift()72 _M_w[__limit] = _M_w[_Nw-1] >> __offset; in _M_do_right_shift()
145 pos_type pubseekoff(off_type __offset, ios_base::seekdir __way,147 { return this->seekoff(__offset, __way, __mod); }
141 difference_type __offset = __n + (_M_cur - _M_first); in _M_advance() local142 if (__offset >= 0 && __offset < difference_type(buffersize)) in _M_advance()146 __offset > 0 ? __offset / buffersize in _M_advance()147 : -difference_type((-__offset - 1) / buffersize) - 1; in _M_advance()151 (__offset - __node_offset * difference_type(buffersize)); in _M_advance()
150 ptrdiff_t __offset = this->gptr() - this->eback(); in overflow() local153 this->setg(__data_ptr, __data_ptr + __offset, _S_finish(_M_str)); in overflow()
69 streamoff _M_seek(streamoff __offset, ios_base::seekdir __dir);74 void* _M_mmap(streamoff __offset, streamoff __len);
69 streamoff __offset = (__cur / __this->_M_base.__page_size()) * __this->_M_base.__page_size(); in _M_doit() local70 streamoff __remainder = __cur - __offset; in _M_doit()72 __this->_M_mmap_len = __size - __offset; in _M_doit()77 if ((__this->_M_mmap_base = __this->_M_base._M_mmap(__offset, __this->_M_mmap_len)) != 0) { in _M_doit()
374 _Self& operator += (difference_type __offset) {375 _M_ite += __offset;