Lines Matching full:given
157 //! Map memory pages for the given number of bytes. The returned address MUST
170 //! Unmap the memory pages starting at address and spanning the given number
231 //! Initialize allocator with given configuration
263 //! Allocate a memory block of at least the given size
267 //! Free the given memory block
270 //! Allocate a memory block of at least the given size and zero initialize it
275 //! Reallocate the given block to at least the given size
280 //! Reallocate the given block to at least the given size and alignment,
291 //! Allocate a memory block of at least the given size and alignment.
300 //! Allocate a memory block of at least the given size and alignment, and zero
311 //! Allocate a memory block of at least the given size and alignment.
320 //! Allocate a memory block of at least the given size and alignment.
328 //! Query the usable size of the given memory block (from given pointer to the
343 // only one single thread will call heap functions for a given heap at any
344 // given time, no functions are thread safe.
353 //! Allocate a memory block of at least the given size using the given heap.
358 //! Allocate a memory block of at least the given size using the given heap. The
369 //! Allocate a memory block of at least the given size using the given heap and
376 //! Allocate a memory block of at least the given size using the given heap and
387 //! Reallocate the given block to at least the given size. The memory block MUST
389 // by the same heap given to this function.
395 //! Reallocate the given block to at least the given size. The memory block MUST
397 // by the same heap given to this function. The returned block will have the
406 //! Free the given memory block from the given heap. The memory block MUST be
408 // by the same heap given to this function.
414 //! Set the given heap as the current heap for the calling thread. A heap MUST
421 //! Returns which heap the given pointer is allocated on