Searched refs:coordCount (Results 1 – 5 of 5) sorted by relevance
/frameworks/av/services/camera/libcameraservice/device3/ |
D | DistortionMapper.h | 91 status_t mapRawToCorrected(int32_t *coordPairs, int coordCount, 115 status_t mapCorrectedToRaw(int32_t* coordPairs, int coordCount, 198 status_t mapCorrectedToRawImpl(T* coordPairs, int coordCount, 203 status_t mapCorrectedToRawImplSimple(T* coordPairs, int coordCount, 206 status_t mapRawToCorrectedSimple(int32_t *coordPairs, int coordCount,
|
D | DistortionMapper.cpp | 269 status_t DistortionMapper::mapRawToCorrected(int32_t *coordPairs, int coordCount, in mapRawToCorrected() argument 273 if (simple) return mapRawToCorrectedSimple(coordPairs, coordCount, mapperInfo, clamp); in mapRawToCorrected() 280 for (int i = 0; i < coordCount * 2; i += 2) { in mapRawToCorrected() 328 status_t DistortionMapper::mapRawToCorrectedSimple(int32_t *coordPairs, int coordCount, in mapRawToCorrectedSimple() argument 334 for (int i = 0; i < coordCount * 2; i += 2) { in mapRawToCorrectedSimple() 374 status_t DistortionMapper::mapCorrectedToRaw(int32_t *coordPairs, int coordCount, in mapCorrectedToRaw() argument 376 return mapCorrectedToRawImpl(coordPairs, coordCount, mapperInfo, clamp, simple); in mapCorrectedToRaw() 380 status_t DistortionMapper::mapCorrectedToRawImpl(T *coordPairs, int coordCount, in mapCorrectedToRawImpl() argument 384 if (simple) return mapCorrectedToRawImplSimple(coordPairs, coordCount, mapperInfo, clamp); in mapCorrectedToRawImpl() 388 for (int i = 0; i < coordCount * 2; i += 2) { in mapCorrectedToRawImpl() [all …]
|
D | ZoomRatioMapper.h | 70 void scaleCoordinates(int32_t* coordPairs, int coordCount,
|
D | ZoomRatioMapper.cpp | 438 void ZoomRatioMapper::scaleCoordinates(int32_t* coordPairs, int coordCount, in scaleCoordinates() argument 449 for (int i = 0; i < coordCount * 2; i += 2) { in scaleCoordinates()
|
/frameworks/av/services/camera/libcameraservice/tests/ |
D | DistortionMapperTest.cpp | 226 const size_t coordCount = 1e5; // Number of random test points in RandomTransformTest() local 233 std::vector<int32_t> randCoords(coordCount * 2); in RandomTransformTest()
|