Searched refs:_M_end_of_storage (Results 1 - 7 of 7) sorted by relevance

/external/stlport/stlport/stl/
H A D_string_base.h34 // allocator and whose size is _M_end_of_storage - _M_start_of_storage._M_data.
55 _Tp* _M_end_of_storage; member in union:_String_base::_Buffers
59 _Tp* _M_end_of_storage; member in class:_String_base
68 { return _M_using_static_buf() ? _M_buffers._M_static_buf + _DEFAULT_SIZE : _M_buffers._M_end_of_storage; }
70 { return _M_using_static_buf() ? _M_buffers._M_static_buf + _DEFAULT_SIZE : _M_buffers._M_end_of_storage; }
72 { return _M_using_static_buf() ? static_cast<size_type>(_DEFAULT_SIZE) : _M_buffers._M_end_of_storage - _M_start_of_storage._M_data; }
74 { return _M_using_static_buf() ? _DEFAULT_SIZE - (_M_finish - _M_buffers._M_static_buf) : _M_buffers._M_end_of_storage - _M_finish; }
78 _Tp const* _M_End() const { return _M_end_of_storage; }
79 _Tp* _M_End() { return _M_end_of_storage; }
81 { return _M_end_of_storage
[all...]
H A D_vector.h67 : _M_start(0), _M_finish(0), _M_end_of_storage(__a, 0) {}
70 : _M_start(0), _M_finish(0), _M_end_of_storage(__a, 0) {
71 _M_start = _M_end_of_storage.allocate(__n, __n);
73 _M_end_of_storage._M_data = _M_start + __n;
80 _M_end_of_storage(__move_source<_AllocProxy>(src.get()._M_end_of_storage)) {
82 src.get()._M_finish = src.get()._M_end_of_storage._M_data = src.get()._M_start = 0;
88 _M_end_of_storage.deallocate(_M_start, _M_end_of_storage._M_data - _M_start);
97 _AllocProxy _M_end_of_storage; member in class:_Vector_base
[all...]
H A D_bvector.h276 { return _STLP_CONVERT_ALLOCATOR(__STATIC_CAST(const __chunk_allocator_type&, _M_end_of_storage), bool); }
279 : _M_start(), _M_finish(), _M_end_of_storage(_STLP_CONVERT_ALLOCATOR(__a, __chunk_type),
285 _M_end_of_storage(src.get()._M_end_of_storage) {
301 { return _M_end_of_storage.allocate(_M_bits_to_chunks(__n)); }
305 _M_end_of_storage.deallocate(_M_start._M_p,
306 _M_end_of_storage._M_data - _M_start._M_p);
311 _STLP_alloc_proxy<__chunk_type*, __chunk_type, __chunk_allocator_type> _M_end_of_storage; member in class:_Bvector_base
392 this->_M_end_of_storage._M_data = __q + _Base::_M_bits_to_chunks(__n);
397 if (this->_M_finish._M_p != this->_M_end_of_storage
[all...]
H A D_vector.c74 __tmp = this->_M_end_of_storage.allocate(__n, __n);
88 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
102 this->_M_end_of_storage.deallocate(__new_start,__len)))
111 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
172 if (size_type(this->_M_end_of_storage._M_data - this->_M_finish) >= __n) {
193 this->_M_end_of_storage._M_data = this->_M_start + __len;
H A D_string.c613 this->_M_buffers._M_end_of_storage = this->_M_start_of_storage._M_data + __n;
618 this->_M_end_of_storage = this->_M_start_of_storage._M_data + __n;
/external/clang/test/CodeGenCXX/
H A Dthunk-use-after-free.cpp17 typename _Tp_alloc_type::pointer _M_end_of_storage; member in struct:_Vector_base::_Vector_impl
20 foo((int *) this->_M_impl._M_end_of_storage);
H A Ddebug-info-use-after-free.cpp104 typename _Tp_alloc_type::pointer _M_end_of_storage; member in struct:_Vector_base::_Vector_impl
107 foo((int *) this->_M_impl._M_end_of_storage);

Completed in 378 milliseconds