Home
last modified time | relevance | path

Searched refs:candidateEntry (Results 1 – 1 of 1) sorted by relevance

/frameworks/native/services/surfaceflinger/CompositionEngine/src/planner/
DPredictor.cpp279 const auto candidateEntry = getCandidateEntryByHash(hash); in getPrediction() local
280 ALOGE_IF(candidateEntry == mCandidates.cend(), in getPrediction()
282 const auto& [_, prediction] = *candidateEntry; in getPrediction()
297 } else if (const auto candidateEntry = getCandidateEntryByHash(hash); in getExactMatch() local
298 candidateEntry != mCandidates.cend()) { in getExactMatch()
299 match = &(candidateEntry->prediction); in getExactMatch()
339 } else if (const auto candidateEntry = in getApproximateMatch() local
341 candidateEntry != mCandidates.cend()) { in getApproximateMatch()
342 match = &(candidateEntry->prediction); in getApproximateMatch()
343 hash = candidateEntry->hash; in getApproximateMatch()
[all …]