Searched refs:SLRWeightTuple (Results 1 – 3 of 3) sorted by relevance
78 using SLRWeightTuple = std::tuple<SLRWeightMat, SLRWeightMat, SLRWeightKey>; variable79 using SLRLRUCache = SkLRUCache<uint32_t, std::shared_ptr<SLRWeightTuple>>;97 std::shared_ptr<SLRWeightTuple> find(uint32_t key) in find()103 … std::shared_ptr<SLRWeightTuple> insert(uint32_t key, std::shared_ptr<SLRWeightTuple> weightTuple) in insert()
72 std::shared_ptr<SLRWeightTuple> initSLRFactor(Size srcSize, Size dstSize);
778 std::shared_ptr<SLRWeightTuple> PostProc::initSLRFactor(Size srcSize, Size dstSize) in initSLRFactor()787 std::shared_ptr<SLRWeightTuple> weightTuplePtr = cacheMgr.find(key.fKey); in initSLRFactor()793 SLRWeightTuple value{slrWeightX, slrWeightY, key}; in initSLRFactor()794 std::shared_ptr<SLRWeightTuple> weightPtr = std::make_shared<SLRWeightTuple>(value); in initSLRFactor()849 std::shared_ptr<SLRWeightTuple> weightTuplePtr = initSLRFactor(imgInfo.size, desiredSize); in ScalePixelMapWithSLR()