Searched refs:maximum_freed (Results 1 – 1 of 1) sorted by relevance
1676 static inline size_t GuaranteedAllocatable(size_t maximum_freed) { in GuaranteedAllocatable() argument1677 if (maximum_freed <= kTiniestListMax) { in GuaranteedAllocatable()1681 } else if (maximum_freed <= kTinyListMax) { in GuaranteedAllocatable()1683 } else if (maximum_freed <= kSmallListMax) { in GuaranteedAllocatable()1685 } else if (maximum_freed <= kMediumListMax) { in GuaranteedAllocatable()1687 } else if (maximum_freed <= kLargeListMax) { in GuaranteedAllocatable()1690 return maximum_freed; in GuaranteedAllocatable()