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.cpp299 const auto candidateEntry = getCandidateEntryByHash(hash); in getPrediction() local
300 ALOGE_IF(candidateEntry == mCandidates.cend(), in getPrediction()
302 const auto& [_, prediction] = *candidateEntry; in getPrediction()
317 } else if (const auto candidateEntry = getCandidateEntryByHash(hash); in getExactMatch() local
318 candidateEntry != mCandidates.cend()) { in getExactMatch()
319 match = &(candidateEntry->prediction); in getExactMatch()
359 } else if (const auto candidateEntry = in getApproximateMatch() local
361 candidateEntry != mCandidates.cend()) { in getApproximateMatch()
362 match = &(candidateEntry->prediction); in getApproximateMatch()
363 hash = candidateEntry->hash; in getApproximateMatch()
[all …]