Searched defs:free (Results 1 - 1 of 1) sorted by relevance

/art/runtime/gc/space/
H A Dlarge_object_space.cc196 LOG(FATAL) << "Attempted to free large object " << ptr << " which was not live";
251 // Keeps track of allocation sizes + whether or not the previous allocation is free.
252 // Used to coalesce free blocks and find the best fit block for an allocation for best fit object
253 // allocation. Each allocation has an AllocationInfo which contains the size of the previous free
268 // Updates the allocation size and whether or not it is free.
269 void SetByteSize(size_t size, bool free) { argument
272 alloc_size_ = (size / FreeListSpace::kAlignment) | (free ? kFlagFree : 0u);
274 // Returns true if the block is free.
287 // Finds and returns the next non free allocation info after ourself.
294 // Returns the previous free allocatio
[all...]

Completed in 48 milliseconds