Searched refs:mDeallocThresholds (Results 1 – 2 of 2) sorted by relevance
348 mDeallocThresholds({}),613 if (mDeallocThresholds[usage] == 0) in updateDeallocThreshold()615 mDeallocThresholds[usage] = 8; in updateDeallocThreshold()617 else if (mDeallocThresholds[usage] < std::numeric_limits<unsigned int>::max() / 2u) in updateDeallocThreshold()619 mDeallocThresholds[usage] *= 2u; in updateDeallocThreshold()623 mDeallocThresholds[usage] = std::numeric_limits<unsigned int>::max(); in updateDeallocThreshold()633 if (storage != nullptr && mIdleness[usage] > mDeallocThresholds[usage]) in checkForDeallocation()
207 std::array<unsigned int, BUFFER_USAGE_COUNT> mDeallocThresholds; variable