Searched refs:coordCount (Results 1 – 3 of 3) sorted by relevance
/frameworks/av/services/camera/libcameraservice/device3/ |
D | DistortionMapper.h | 79 status_t mapRawToCorrected(int32_t *coordPairs, int coordCount, bool clamp, 103 status_t mapCorrectedToRaw(int32_t* coordPairs, int coordCount, bool clamp, 169 status_t mapCorrectedToRawImpl(T* coordPairs, int coordCount, bool clamp, bool simple) const; 173 status_t mapCorrectedToRawImplSimple(T* coordPairs, int coordCount, bool clamp) const; 175 status_t mapRawToCorrectedSimple(int32_t *coordPairs, int coordCount, bool clamp) const;
|
D | DistortionMapper.cpp | 226 status_t DistortionMapper::mapRawToCorrected(int32_t *coordPairs, int coordCount, in mapRawToCorrected() argument 230 if (simple) return mapRawToCorrectedSimple(coordPairs, coordCount, clamp); in mapRawToCorrected() 237 for (int i = 0; i < coordCount * 2; i += 2) { in mapRawToCorrected() 285 status_t DistortionMapper::mapRawToCorrectedSimple(int32_t *coordPairs, int coordCount, in mapRawToCorrectedSimple() argument 291 for (int i = 0; i < coordCount * 2; i += 2) { in mapRawToCorrectedSimple() 331 status_t DistortionMapper::mapCorrectedToRaw(int32_t *coordPairs, int coordCount, bool clamp, in mapCorrectedToRaw() argument 333 return mapCorrectedToRawImpl(coordPairs, coordCount, clamp, simple); in mapCorrectedToRaw() 337 status_t DistortionMapper::mapCorrectedToRawImpl(T *coordPairs, int coordCount, bool clamp, in mapCorrectedToRawImpl() argument 341 if (simple) return mapCorrectedToRawImplSimple(coordPairs, coordCount, clamp); in mapCorrectedToRawImpl() 345 for (int i = 0; i < coordCount * 2; i += 2) { in mapCorrectedToRawImpl() [all …]
|
/frameworks/av/services/camera/libcameraservice/tests/ |
D | DistortionMapperTest.cpp | 221 const size_t coordCount = 1e5; // Number of random test points in RandomTransformTest() local 228 std::vector<int32_t> randCoords(coordCount * 2); in RandomTransformTest()
|