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

/freebsd-10-stable/contrib/libstdc++/include/ext/
H A Ddebug_allocator.h77 // _M_extra is the number of objects that correspond to the
79 size_type _M_extra; member in class:debug_allocator
87 _M_extra = (sizeof(size_type) + __obj_size - 1) / __obj_size;
93 pointer __res = _M_allocator.allocate(__n + _M_extra);
96 return __res + _M_extra;
102 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
105 return __res + _M_extra;
113 pointer __real_p = __p - _M_extra;
119 _M_allocator.deallocate(__real_p, __n + _M_extra);

Completed in 95 milliseconds