Server IP : 172.67.216.182 / Your IP : 162.158.88.125 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/boost/boost_1_59_0/boost/align/ |
Upload File : |
/* (c) 2014 Glen Joseph Fernandes glenjofe at gmail dot com Distributed under the Boost Software License, Version 1.0. http://boost.org/LICENSE_1_0.txt */ #ifndef BOOST_ALIGN_ALIGNED_ALLOCATOR_HPP #define BOOST_ALIGN_ALIGNED_ALLOCATOR_HPP #include <boost/config.hpp> #include <boost/static_assert.hpp> #include <boost/throw_exception.hpp> #include <boost/align/aligned_alloc.hpp> #include <boost/align/aligned_allocator_forward.hpp> #include <boost/align/alignment_of.hpp> #include <boost/align/detail/addressof.hpp> #include <boost/align/detail/is_alignment_constant.hpp> #include <boost/align/detail/max_align.hpp> #include <boost/align/detail/max_count_of.hpp> #include <new> #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) #include <utility> #endif namespace boost { namespace alignment { template<class T, std::size_t Alignment> class aligned_allocator { BOOST_STATIC_ASSERT(detail:: is_alignment_constant<Alignment>::value); public: typedef T value_type; typedef T* pointer; typedef const T* const_pointer; typedef void* void_pointer; typedef const void* const_void_pointer; typedef std::size_t size_type; typedef std::ptrdiff_t difference_type; typedef T& reference; typedef const T& const_reference; private: enum { min_align = detail::max_align<Alignment, alignment_of<value_type>::value>::value }; public: template<class U> struct rebind { typedef aligned_allocator<U, Alignment> other; }; #if !defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) aligned_allocator() BOOST_NOEXCEPT = default; #else aligned_allocator() BOOST_NOEXCEPT { } #endif template<class U> aligned_allocator(const aligned_allocator<U, Alignment>&) BOOST_NOEXCEPT { } pointer address(reference value) const BOOST_NOEXCEPT { return detail::addressof(value); } const_pointer address(const_reference value) const BOOST_NOEXCEPT { return detail::addressof(value); } pointer allocate(size_type size, const_void_pointer = 0) { void* p = aligned_alloc(min_align, sizeof(T) * size); if (!p && size > 0) { boost::throw_exception(std::bad_alloc()); } return static_cast<T*>(p); } void deallocate(pointer ptr, size_type) { alignment::aligned_free(ptr); } BOOST_CONSTEXPR size_type max_size() const BOOST_NOEXCEPT { return detail::max_count_of<T>::value; } #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) template<class U, class... Args> void construct(U* ptr, Args&&... args) { void* p = ptr; ::new(p) U(std::forward<Args>(args)...); } #else template<class U, class V> void construct(U* ptr, V&& value) { void* p = ptr; ::new(p) U(std::forward<V>(value)); } #endif #else template<class U, class V> void construct(U* ptr, const V& value) { void* p = ptr; ::new(p) U(value); } #endif template<class U> void construct(U* ptr) { void* p = ptr; ::new(p) U(); } template<class U> void destroy(U* ptr) { (void)ptr; ptr->~U(); } }; template<std::size_t Alignment> class aligned_allocator<void, Alignment> { BOOST_STATIC_ASSERT(detail:: is_alignment_constant<Alignment>::value); public: typedef void value_type; typedef void* pointer; typedef const void* const_pointer; template<class U> struct rebind { typedef aligned_allocator<U, Alignment> other; }; }; template<class T1, class T2, std::size_t Alignment> inline bool operator==(const aligned_allocator<T1, Alignment>&, const aligned_allocator<T2, Alignment>&) BOOST_NOEXCEPT { return true; } template<class T1, class T2, std::size_t Alignment> inline bool operator!=(const aligned_allocator<T1, Alignment>&, const aligned_allocator<T2, Alignment>&) BOOST_NOEXCEPT { return false; } } /* :alignment */ } /* :boost */ #endif