align.hpp 882 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. (c) 2014 Glen Joseph Fernandes
  3. <glenjofe -at- gmail.com>
  4. Distributed under the Boost Software
  5. License, Version 1.0.
  6. http://boost.org/LICENSE_1_0.txt
  7. */
  8. #ifndef BOOST_ALIGN_DETAIL_ALIGN_HPP
  9. #define BOOST_ALIGN_DETAIL_ALIGN_HPP
  10. #include <boost/align/detail/is_alignment.hpp>
  11. #include <boost/assert.hpp>
  12. namespace boost {
  13. namespace alignment {
  14. inline void* align(std::size_t alignment, std::size_t size,
  15. void*& ptr, std::size_t& space)
  16. {
  17. BOOST_ASSERT(detail::is_alignment(alignment));
  18. if (size <= space) {
  19. char* p = reinterpret_cast<char*>((reinterpret_cast<std::
  20. size_t>(ptr) + alignment - 1) & ~(alignment - 1));
  21. std::ptrdiff_t n = p - static_cast<char*>(ptr);
  22. if (size <= space - n) {
  23. ptr = p;
  24. space -= n;
  25. return p;
  26. }
  27. }
  28. return 0;
  29. }
  30. } /* .alignment */
  31. } /* .boost */
  32. #endif