Lines Matching refs:lsmWidth
55 status_t OpcodeListBuilder::addGainMapsForMetadata(uint32_t lsmWidth, in addGainMapsForMetadata() argument
72 err = addBayerGainMapsForMetadata(lsmWidth, lsmHeight, activeAreaWidth, in addGainMapsForMetadata()
76 err = addMonochromeGainMapsForMetadata(lsmWidth, lsmHeight, activeAreaWidth, in addGainMapsForMetadata()
87 status_t OpcodeListBuilder::addBayerGainMapsForMetadata(uint32_t lsmWidth, in addBayerGainMapsForMetadata() argument
148 std::vector<float> redMapVector(lsmWidth * lsmHeight); in addBayerGainMapsForMetadata()
151 std::vector<float> greenEvenMapVector(lsmWidth * lsmHeight); in addBayerGainMapsForMetadata()
154 std::vector<float> greenOddMapVector(lsmWidth * lsmHeight); in addBayerGainMapsForMetadata()
157 std::vector<float> blueMapVector(lsmWidth * lsmHeight); in addBayerGainMapsForMetadata()
161 double spacingH = 1.0 / std::max(1u, lsmWidth - 1); in addBayerGainMapsForMetadata()
163 size_t lsmMapSize = lsmWidth * lsmHeight * 4; in addBayerGainMapsForMetadata()
183 /*mapPointsH*/lsmWidth, in addBayerGainMapsForMetadata()
201 /*mapPointsH*/lsmWidth, in addBayerGainMapsForMetadata()
219 /*mapPointsH*/lsmWidth, in addBayerGainMapsForMetadata()
237 /*mapPointsH*/lsmWidth, in addBayerGainMapsForMetadata()
247 status_t OpcodeListBuilder::addMonochromeGainMapsForMetadata(uint32_t lsmWidth, in addMonochromeGainMapsForMetadata() argument
252 std::vector<float> mapVector(lsmWidth * lsmHeight); in addMonochromeGainMapsForMetadata()
256 double spacingH = 1.0 / std::max(1u, lsmWidth - 1); in addMonochromeGainMapsForMetadata()
258 size_t lsmMapSize = lsmWidth * lsmHeight * 4; in addMonochromeGainMapsForMetadata()
275 /*mapPointsH*/lsmWidth, in addMonochromeGainMapsForMetadata()