Searched defs:EvictionCost (Results 1 – 1 of 1) sorted by relevance
271 struct EvictionCost { struct in __anone1e285680111::RAGreedy272 unsigned BrokenHints = 0; ///< Total number of broken hints.273 float MaxWeight = 0; ///< Maximum spill weight evicted.277 bool isMax() const { return BrokenHints == ~0u; } in isMax()279 void setMax() { BrokenHints = ~0u; } in setMax()281 void setBrokenHints(unsigned NHints) { BrokenHints = NHints; } in setBrokenHints()283 bool operator<(const EvictionCost &O) const { in operator <()