Lines Matching full:memory
34 * \brief Allocate memory with size \param size and aligned with \param alignment
35 * @param size - size of the allocated memory
36 * @param alignment - alignment of the allocated memory
37 * @return pointer to the allocated memory on success, or nullptr on fail
84 * @return A pointer to the raw memory inside arena
103 …* \brief Mark all memory after \param mem as free. Check that \param mem is stored inside this are…
108 * \brief Set occupied memory size to \param new_size.
118 * \brief Expand arena. The new memory must be located just after the current buffer.
127 * \brief Fast allocates memory with size \param size
128 * @param size - size of the allocated memory, must be \param alignment aligned
129 * @param alignment - alignment of the allocated memory, used only for debug
130 * @return pointer to the allocated memory on success, or nullptr on fail