Searched refs:hotness_count (Results 1 – 3 of 3) sorted by relevance
844 uint16_t hotness_count = method->GetCounter(); in MterpSetUpHotnessCountdown() local851 if (hotness_count < warm_threshold) { in MterpSetUpHotnessCountdown()852 countdown_value = warm_threshold - hotness_count; in MterpSetUpHotnessCountdown()853 } else if (hotness_count < hot_threshold) { in MterpSetUpHotnessCountdown()854 countdown_value = hot_threshold - hotness_count; in MterpSetUpHotnessCountdown()855 } else if (hotness_count < osr_threshold) { in MterpSetUpHotnessCountdown()856 countdown_value = osr_threshold - hotness_count; in MterpSetUpHotnessCountdown()
415 inline void ArtMethod::SetCounter(uint16_t hotness_count) { in SetCounter() argument417 hotness_count_ = hotness_count; in SetCounter()
707 ALWAYS_INLINE void SetCounter(uint16_t hotness_count);