Searched refs:_M_base (Results 1 - 6 of 6) sorted by relevance

/external/stlport/src/
H A Dfstream.cpp57 if (__this->_M_base.__regular_file()
59 && __this->_M_base._M_in_binary_mode()) {
62 __this->_M_base._M_unmap(__this->_M_mmap_base, __this->_M_mmap_len);
66 streamoff __cur = __this->_M_base._M_seek(0, ios_base::cur);
67 streamoff __size = __this->_M_base._M_file_size();
69 streamoff __offset = (__cur / __this->_M_base.__page_size()) * __this->_M_base.__page_size();
77 if ((__this->_M_mmap_base = __this->_M_base._M_mmap(__offset, __this->_M_mmap_len)) != 0) {
/external/stlport/stlport/stl/
H A D_fstream.c48 : basic_streambuf<_CharT, _Traits>(), _M_base(),
93 __ok = _M_base._M_close() && __ok;
120 _M_base._M_unmap(_M_mmap_base, _M_mmap_len);
139 streamoff __pos = _M_base._M_seek(0, ios_base::cur);
140 streamoff __size = _M_base._M_file_size();
305 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence),
311 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence),
320 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __adjust)
321 : _M_seek_return(_M_base._M_seek(__off - __adjust, ios_base::cur), _State_type());
333 streamoff __eadj = _M_base
[all...]
H A D_fstream.h166 bool is_open() const { return _M_base.__is_open(); }
169 return _M_base._M_open(__s, __m) ? this : 0;
176 return _M_base._M_open(__s, __m, __protection) ? this : 0;
179 _STLP_fd fd() const { return _M_base.__get_fd(); }
187 return _M_base._M_open(__id, _Init_mode) ? this : 0;
194 return _M_base._M_open(__id, _Init_mode) ? this : 0;
261 _Filebuf_base _M_base; member in class:basic_filebuf
322 bool _M_write(char* __buf, ptrdiff_t __n) {return _M_base._M_write(__buf, __n); }
H A D_alloc.h485 _Base(_STLP_PRIV _AsMoveSource(src.get()._M_base())),
488 _Base& _M_base() function in class:_STLP_alloc_proxy
H A D_rope.h568 _RopeRep *_M_base; // not 0 member in struct:_Rope_RopeSubstring
574 switch (_M_base->_M_tag) {
579 __STATIC_CAST(_RopeFunction*, _M_base)->_M_fn;
581 _STLP_ASSERT(_M_start + this->_M_size._M_data <= _M_base->_M_size._M_data)
588 __STATIC_CAST(_RopeLeaf*, _M_base)->_M_data;
603 _M_base(__b), _M_start(__s) {
606 _M_base->_M_ref_nonnil();
610 { _M_base->_M_unref_nonnil(); }
H A D_rope.c683 _RopeSubstring* __result = _S_new_RopeSubstring(__old->_M_base,

Completed in 1031 milliseconds