Home | History | Annotate | Download | only in space

Lines Matching full:allocation

96   // Used to ensure mutual exclusion when the allocation spaces data structures are being modified.
139 // Returns the allocation size, includes the header.
144 // Updates the allocation size in the header, the allocation size includes the header itself.
154 // Returns the previous free allocation header by using the prev_free_ member to figure out
160 // Returns the address of the object associated with this allocation header.
165 // Returns the next allocation header after the object associated with this allocation header.
176 // Update the size of the free block prior to the allocation.
182 // Finds and returns the next non free allocation header after ourself.
186 // Used to implement best fit object allocation. Each allocation has an AllocationHeader which
188 // can also find the iterator for any allocation header pointer.
202 // allocation.
205 // Allocation size of this object, 0 means that the allocation header is free memory.
216 // Finds the allocation header corresponding to obj.