Searched refs:__offset (Results 1 – 8 of 8) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _bitset.c | 38 const size_t __offset = __shift % __BITS_PER_WORD; in _M_do_left_shift() local 40 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() local 63 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()
|
D | _streambuf.h | 145 pos_type pubseekoff(off_type __offset, ios_base::seekdir __way, 147 { return this->seekoff(__offset, __way, __mod); }
|
D | _deque.h | 141 difference_type __offset = __n + (_M_cur - _M_first); in _M_advance() local 142 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()
|
D | _sstream.c | 150 ptrdiff_t __offset = this->gptr() - this->eback(); in overflow() local 153 this->setg(__data_ptr, __data_ptr + __offset, _S_finish(_M_str)); in overflow()
|
D | _fstream.h | 69 streamoff _M_seek(streamoff __offset, ios_base::seekdir __dir); 74 void* _M_mmap(streamoff __offset, streamoff __len);
|
/ndk/sources/cxx-stl/stlport/src/ |
D | fstream.cpp | 69 streamoff __offset = (__cur / __this->_M_base.__page_size()) * __this->_M_base.__page_size(); in _M_doit() local 70 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()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
D | _tools.h | 374 _Self& operator += (difference_type __offset) { 375 _M_ite += __offset;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | regex | 5886 int __offset = (__flags & regex_constants::match_prev_avail) ? 1 : 0; 5887 basic_string<_CharT> __s(_VSTD::prev(__first, __offset), __last); 5889 bool __r = __e.__search(__s.data() + __offset, __s.data() + __s.size(), __mc, __flags);
|