Searched refs:hotness_count (Results 1 – 2 of 2) sorted by relevance
902 uint16_t hotness_count = method->GetCounter(); in MterpSetUpHotnessCountdown() local909 if (hotness_count < warm_threshold) { in MterpSetUpHotnessCountdown()910 countdown_value = warm_threshold - hotness_count; in MterpSetUpHotnessCountdown()911 } else if (hotness_count < hot_threshold) { in MterpSetUpHotnessCountdown()912 countdown_value = hot_threshold - hotness_count; in MterpSetUpHotnessCountdown()913 } else if (hotness_count < osr_threshold) { in MterpSetUpHotnessCountdown()914 countdown_value = osr_threshold - hotness_count; in MterpSetUpHotnessCountdown()
623 void SetCounter(int16_t hotness_count) { in SetCounter() argument624 hotness_count_ = hotness_count; in SetCounter()