Home
last modified time | relevance | path

Searched refs:coordCount (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/services/camera/libcameraservice/device3/
DDistortionMapper.h91 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,
DDistortionMapper.cpp271 status_t DistortionMapper::mapRawToCorrected(int32_t *coordPairs, int coordCount, in mapRawToCorrected() argument
275 if (simple) return mapRawToCorrectedSimple(coordPairs, coordCount, mapperInfo, clamp); in mapRawToCorrected()
282 for (int i = 0; i < coordCount * 2; i += 2) { in mapRawToCorrected()
330 status_t DistortionMapper::mapRawToCorrectedSimple(int32_t *coordPairs, int coordCount, in mapRawToCorrectedSimple() argument
336 for (int i = 0; i < coordCount * 2; i += 2) { in mapRawToCorrectedSimple()
376 status_t DistortionMapper::mapCorrectedToRaw(int32_t *coordPairs, int coordCount, in mapCorrectedToRaw() argument
378 return mapCorrectedToRawImpl(coordPairs, coordCount, mapperInfo, clamp, simple); in mapCorrectedToRaw()
382 status_t DistortionMapper::mapCorrectedToRawImpl(T *coordPairs, int coordCount, in mapCorrectedToRawImpl() argument
386 if (simple) return mapCorrectedToRawImplSimple(coordPairs, coordCount, mapperInfo, clamp); in mapCorrectedToRawImpl()
390 for (int i = 0; i < coordCount * 2; i += 2) { in mapCorrectedToRawImpl()
[all …]
DZoomRatioMapper.h70 void scaleCoordinates(int32_t* coordPairs, int coordCount,
DZoomRatioMapper.cpp423 void ZoomRatioMapper::scaleCoordinates(int32_t* coordPairs, int coordCount, in scaleCoordinates() argument
434 for (int i = 0; i < coordCount * 2; i += 2) { in scaleCoordinates()
/frameworks/av/services/camera/libcameraservice/tests/
DDistortionMapperTest.cpp226 const size_t coordCount = 1e5; // Number of random test points in RandomTransformTest() local
233 std::vector<int32_t> randCoords(coordCount * 2); in RandomTransformTest()