HomeSort by relevance Sort by last modified time
    Searched defs:__offset (Results 1 - 8 of 8) sorted by null

  /external/stlport/src/
fstream.cpp 69 streamoff __offset = (__cur / __this->_M_base.__page_size()) * __this->_M_base.__page_size(); local
70 streamoff __remainder = __cur - __offset;
72 __this->_M_mmap_len = __size - __offset;
77 if ((__this->_M_mmap_base = __this->_M_base._M_mmap(__offset, __this->_M_mmap_len)) != 0) {
  /ndk/sources/android/stlport/src/
fstream.cpp 69 streamoff __offset = (__cur / __this->_M_base.__page_size()) * __this->_M_base.__page_size(); local
70 streamoff __remainder = __cur - __offset;
72 __this->_M_mmap_len = __size - __offset;
77 if ((__this->_M_mmap_base = __this->_M_base._M_mmap(__offset, __this->_M_mmap_len)) != 0) {
  /external/stlport/stlport/stl/
_bitset.c 38 const size_t __offset = __shift % __BITS_PER_WORD; local
40 if (__offset == 0)
45 const size_t __sub_offset = __BITS_PER_WORD - __offset;
47 _M_w[__n] = (_M_w[__n - __wshift] << __offset) |
49 _M_w[__wshift] = _M_w[0] << __offset;
60 const size_t __offset = __shift % __BITS_PER_WORD; local
63 if (__offset == 0)
68 const size_t __sub_offset = __BITS_PER_WORD - __offset;
70 _M_w[__n] = (_M_w[__n + __wshift] >> __offset) |
72 _M_w[__limit] = _M_w[_Nw-1] >> __offset;
    [all...]
_sstream.c 150 ptrdiff_t __offset = this->gptr() - this->eback(); local
153 this->setg(__data_ptr, __data_ptr + __offset, _S_finish(_M_str));
_deque.h 141 difference_type __offset = __n + (_M_cur - _M_first); local
142 if (__offset >= 0 && __offset < difference_type(buffersize))
146 __offset > 0 ? __offset / buffersize
147 : -difference_type((-__offset - 1) / buffersize) - 1;
151 (__offset - __node_offset * difference_type(buffersize));
    [all...]
  /ndk/sources/android/stlport/stlport/stl/
_bitset.c 38 const size_t __offset = __shift % __BITS_PER_WORD; local
40 if (__offset == 0)
45 const size_t __sub_offset = __BITS_PER_WORD - __offset;
47 _M_w[__n] = (_M_w[__n - __wshift] << __offset) |
49 _M_w[__wshift] = _M_w[0] << __offset;
60 const size_t __offset = __shift % __BITS_PER_WORD; local
63 if (__offset == 0)
68 const size_t __sub_offset = __BITS_PER_WORD - __offset;
70 _M_w[__n] = (_M_w[__n + __wshift] >> __offset) |
72 _M_w[__limit] = _M_w[_Nw-1] >> __offset;
    [all...]
_sstream.c 150 ptrdiff_t __offset = this->gptr() - this->eback(); local
153 this->setg(__data_ptr, __data_ptr + __offset, _S_finish(_M_str));
_deque.h 141 difference_type __offset = __n + (_M_cur - _M_first); local
142 if (__offset >= 0 && __offset < difference_type(buffersize))
146 __offset > 0 ? __offset / buffersize
147 : -difference_type((-__offset - 1) / buffersize) - 1;
151 (__offset - __node_offset * difference_type(buffersize));
    [all...]

Completed in 125 milliseconds