Home
last modified time | relevance | path

Searched refs:__allocation (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/__utility/
H A Dsmall_buffer.h69 …byte* __allocation = static_cast<byte*>(::operator new[](sizeof(_Stored), align_val_t{alignof(_Sto… in __alloc() local
70 std::construct_at(reinterpret_cast<byte**>(__buffer_), __allocation); in __alloc()
71 return std::launder(reinterpret_cast<_Stored*>(__allocation)); in __alloc()
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A D__split_buffer343 auto __allocation = std::__allocate_at_least(__alloc(), __cap);
344 __first_ = __allocation.ptr;
345 __cap = __allocation.count;
385 auto __allocation = std::__allocate_at_least(__alloc(), __c.size());
386 __first_ = __allocation.ptr;
388 __end_cap() = __first_ + __allocation.count;
H A Dstring858 __set_long_pointer(__allocation);
2037 __begin_lifetime(__allocation.ptr, __allocation.count);
2192 __set_long_cap(__allocation.count);
2216 __set_long_cap(__allocation.count);
2241 __set_long_cap(__allocation.count);
2264 __set_long_cap(__allocation.count);
2329 __set_long_cap(__allocation.count);
2366 pointer __p = __allocation.ptr;
2379 __set_long_cap(__allocation.count);
2409 pointer __p = __allocation.ptr;
[all …]
H A Dvector741 auto __allocation = std::__allocate_at_least(__alloc(), __n);
742 __begin_ = __allocation.ptr;
743 __end_ = __allocation.ptr;
744 __end_cap() = __begin_ + __allocation.count;
2181 auto __allocation = std::__allocate_at_least(__alloc(), __external_cap_to_internal(__n));
2182 __begin_ = __allocation.ptr;
2184 __cap() = __allocation.count;