Lines Matching defs:free
5 * This code is free software; you can redistribute it and/or modify it
53 // implementations for keeping track of free and used space,
54 // for iterating over objects and free blocks, etc.
61 // - ContiguousSpace -- a compactible space in which all free space
207 virtual size_t free() const = 0;
391 // free-list-based space whose normal collection is a mark-sweep without
486 // Minimum size of a free block.
497 // free block of the given "word_len", and that "q", were it an object,
498 // would not move if forwared. If the size allows, fill the free
500 // iff the free region was made deadspace, and modifies
552 first header of preceding free area. */ \
592 /* otherwise, it really is a free region. */ \
789 // A space in which the free area is contiguous. It therefore supports
850 size_t free() const { return byte_size(top(), end()); }