Lines Matching full:memory
36 * \brief Allocates memory with size \param size and aligned with \param alignment
37 * @param size - size of the allocated memory
38 * @param alignment - alignment of the allocated memory
39 * @return pointer to the allocated memory on success, or nullptr on fail
86 * @return A pointer to the raw memory inside arena
110 …* \brief Mark all memory after \param mem as free. Check that \param mem is stored inside this are…
115 * \brief Set occupied memory size to \param new_size.
125 * \brief Expand arena. The new memory must be located just after the current buffer.
134 * \brief Fast allocates memory with size \param size
135 * @param size - size of the allocated memory, must be \param alignment aligned
136 * @param alignment - alignment of the allocated memory, used only for debug
137 * @return pointer to the allocated memory on success, or nullptr on fail