readVal            61 modules/cudawarping/test/interpolation.hpp         return readVal<T>(src, int(y), int(x), c, border_type, borderVal);
readVal            76 modules/cudawarping/test/interpolation.hpp         res += readVal<T>(src, y1, x1, c, border_type, borderVal) * ((x2 - x) * (y2 - y));
readVal            77 modules/cudawarping/test/interpolation.hpp         res += readVal<T>(src, y1, x2, c, border_type, borderVal) * ((x - x1) * (y2 - y));
readVal            78 modules/cudawarping/test/interpolation.hpp         res += readVal<T>(src, y2, x1, c, border_type, borderVal) * ((x2 - x) * (y - y1));
readVal            79 modules/cudawarping/test/interpolation.hpp         res += readVal<T>(src, y2, x2, c, border_type, borderVal) * ((x - x1) * (y - y1));
readVal           120 modules/cudawarping/test/interpolation.hpp                 sum += w * readVal<T>(src, (int) floorf(cy), (int) floorf(cx), c, border_type, borderVal);