Lines Matching full:pools
35 The memory manager manages an unlimited number of pools, each containing a linked list
36 of free memory blocks of a fixed size. The memory pools are ordered in increasing block
47 memory manager searches the remaining pools in the sequence until it finds a free block or
48 it runs out of pools (in this case it will return a null pointer to the calling code).
50 How is the memory space allocated to the fixed block pools?
52 defined by #define MEM_SIZE). This memory is used to a) create the fixed size memory pools
79 7. Doesn't support block consolidation, and reuse across pools.
203 * Description: API function which initialises the fixed size memory pools. Can
284 * memory pools. Note it can be called many times but is only
447 is found, or there are no pools left */