Lines Matching refs:allocated
15 memory should be allocated. The GFP acronym stands for "get free
60 ``GFP_HIGHUSER_MOVABLE`` does not require that allocated memory
64 ``GFP_HIGHUSER`` means that the allocated memory is not movable,
69 ``GFP_USER`` means that the allocated memory is not movable and it
81 used to ensure that the allocated memory is accessible by hardware
141 The maximal size of a chunk that can be allocated with `kmalloc` is
146 The address of a chunk allocated with `kmalloc` is aligned to at least
150 Chunks allocated with kmalloc() can be resized with krealloc(). Similarly
155 request pages from the page allocator. The memory allocated by `vmalloc`
173 When the allocated memory is no longer needed it must be freed. You can
174 use kvfree() for the memory allocated with `kmalloc`, `vmalloc` and