Lines Matching full:block

45 /* Allocate from end of block instead of beginning */
51 /* First bytes of each free physical block of memory contain this structure,
76 /* Base address of named block */
79 * Size actually allocated for named block (may differ from
83 /* name of named block */
122 /* address of named memory block descriptors */
149 * Allocate a block of memory from the free list that was
155 * @size: Size in bytes of block to allocate
159 * Returns pointer to block of memory, NULL on error
165 * Frees a previously allocated named bootmem block.
167 * @name: name of block to free
175 * Allocate a block of memory from the free list that was passed
177 * global named block table. (part of the cvmx_bootmem_descriptor_t structure)
180 * @size: Size in bytes of block to allocate
182 * @name: name of block - must be less than CVMX_BOOTMEM_NAME_LEN bytes
184 * Returns a pointer to block of memory, NULL on error
190 * Allocate a block of memory from a specific range of the free list
192 * a name in the global named block table. (part of the
197 * @size: Size in bytes of block to allocate
201 * @name: name of block - must be less than CVMX_BOOTMEM_NAME_LEN bytes
203 * Returns a pointer to block of memory, NULL on error
210 * Allocate if needed a block of memory from a specific range of the
212 * assign it a name in the global named block table. (part of the
214 * freed. If the requested name block is already allocated, return
215 * the pointer to block of memory. If request cannot be satisfied
218 * @param size Size in bytes of block to allocate
222 * @param name name of block - must be less than CVMX_BOOTMEM_NAME_LEN bytes
225 * The initialization function is optional, if omitted the named block
228 * @return pointer to block of memory, NULL on error
240 * Finds a named bootmem block by name.
242 * @name: name of block to free
244 * Returns pointer to named block descriptor on success
250 * Allocates a block of physical memory from the free list, at
256 * @address_min: Minimum address that block can occupy.
261 * @alignment: Requested alignment of the block. If this alignment
271 * Returns physical address of block allocated, or -1 on failure
278 * Allocates a named block of physical memory from the free list, at
284 * @param min_addr Minimum address that block can occupy.
287 * @param alignment Requested alignment of the block. If this
294 * @param name name to assign to named block
297 * @return physical address of block allocated, or -1 on failure
305 * Frees a block to the bootmem allocator list. This must
307 * of the block that was allocated, or the list will become
310 * IMPORTANT: This is only intended to be used as part of named block
314 * @phy_addr: physical address of block
315 * @size: size of block in bytes.