Home
last modified time | relevance | path

Searched defs:scoped_shared_storage (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/multiprecision/
Dcpp_int.hpp280 struct scoped_shared_storage : private boost::empty_value<allocator_type> struct
283 limb_type* data;
284 unsigned capacity;
285 unsigned allocated;
286 bool is_alias;
287 … allocator_type& allocator() BOOST_NOEXCEPT { return boost::empty_value<allocator_type>::get(); } in allocator()
290 scoped_shared_storage(const allocator_type& a, unsigned len) in scoped_shared_storage() argument
295scoped_shared_storage(limb_type* limbs, unsigned n) : data(limbs), capacity(n), allocated(0), is_a… in scoped_shared_storage() function
296 ~scoped_shared_storage() in ~scoped_shared_storage()
301 limb_type* allocate(unsigned n) BOOST_NOEXCEPT in allocate()
[all …]