opj_malloc.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * The copyright in this software is being made available under the 2-clauses
  3. * BSD License, included below. This software may be subject to other third
  4. * party and contributor rights, including patent rights, and no such rights
  5. * are granted under this license.
  6. *
  7. * Copyright (c) 2005, Herve Drolon, FreeImage Team
  8. * Copyright (c) 2007, Callum Lerwick <seg@haxxed.com>
  9. * All rights reserved.
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions
  13. * are met:
  14. * 1. Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in the
  18. * documentation and/or other materials provided with the distribution.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  21. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  24. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  25. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  26. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  27. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  28. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  29. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  30. * POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. #ifndef OPJ_MALLOC_H
  33. #define OPJ_MALLOC_H
  34. #include <stddef.h>
  35. /**
  36. @file opj_malloc.h
  37. @brief Internal functions
  38. The functions in opj_malloc.h are internal utilities used for memory management.
  39. */
  40. /** @defgroup MISC MISC - Miscellaneous internal functions */
  41. /*@{*/
  42. /** @name Exported functions */
  43. /*@{*/
  44. /* ----------------------------------------------------------------------- */
  45. /**
  46. Allocate an uninitialized memory block
  47. @param size Bytes to allocate
  48. @return Returns a void pointer to the allocated space, or NULL if there is insufficient memory available
  49. */
  50. void * opj_malloc(size_t size);
  51. /**
  52. Allocate a memory block with elements initialized to 0
  53. @param numOfElements Blocks to allocate
  54. @param sizeOfElements Bytes per block to allocate
  55. @return Returns a void pointer to the allocated space, or NULL if there is insufficient memory available
  56. */
  57. void * opj_calloc(size_t numOfElements, size_t sizeOfElements);
  58. /**
  59. Allocate memory aligned to a 16 byte boundary
  60. @param size Bytes to allocate
  61. @return Returns a void pointer to the allocated space, or NULL if there is insufficient memory available
  62. */
  63. void * opj_aligned_malloc(size_t size);
  64. void * opj_aligned_realloc(void *ptr, size_t size);
  65. void opj_aligned_free(void* ptr);
  66. /**
  67. Allocate memory aligned to a 32 byte boundary
  68. @param size Bytes to allocate
  69. @return Returns a void pointer to the allocated space, or NULL if there is insufficient memory available
  70. */
  71. void * opj_aligned_32_malloc(size_t size);
  72. void * opj_aligned_32_realloc(void *ptr, size_t size);
  73. /**
  74. Reallocate memory blocks.
  75. @param m Pointer to previously allocated memory block
  76. @param s New size in bytes
  77. @return Returns a void pointer to the reallocated (and possibly moved) memory block
  78. */
  79. void * opj_realloc(void * m, size_t s);
  80. /**
  81. Deallocates or frees a memory block.
  82. @param m Previously allocated memory block to be freed
  83. */
  84. void opj_free(void * m);
  85. #if defined(__GNUC__) && !defined(OPJ_SKIP_POISON)
  86. #pragma GCC poison malloc calloc realloc free
  87. #endif
  88. /* ----------------------------------------------------------------------- */
  89. /*@}*/
  90. /*@}*/
  91. #endif /* OPJ_MALLOC_H */