Home
last modified time | relevance | path

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

/aosp_15_r20/hardware/google/graphics/common/libhwc2.1/libdevice/
DHistogramDevice.cpp1112 uint32_t HistogramDevice::getMatchBlobId(std::list<BlobInfo>& blobsList, const int displayActiveH, in getMatchBlobId() argument
1114 auto resultIt = blobsList.end(); in getMatchBlobId()
1116 for (auto it = blobsList.begin(); it != blobsList.end(); ++it) { in getMatchBlobId()
1123 if (resultIt == blobsList.end()) return 0; in getMatchBlobId()
1126 if (resultIt != blobsList.begin()) { in getMatchBlobId()
1128 blobsList.splice(blobsList.begin(), blobsList, resultIt, std::next(resultIt)); in getMatchBlobId()
1131 return blobsList.begin()->mBlob->getId(); in getMatchBlobId()
1134 uint32_t HistogramDevice::getActiveBlobId(const std::list<BlobInfo>& blobsList) const { in getActiveBlobId()
1135 return blobsList.empty() ? 0 : blobsList.begin()->mBlob->getId(); in getActiveBlobId()
DHistogramDevice.h725 uint32_t getMatchBlobId(std::list<BlobInfo>& blobsList, const int displayActiveH,
737 uint32_t getActiveBlobId(const std::list<BlobInfo>& blobsList) const REQUIRES(mHistogramMutex)