last_col          141 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         explicit __host__ __device__ __forceinline__ BrdRowReplicate(int width) : last_col(width - 1) {}
last_col          142 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         template <typename U> __host__ __device__ __forceinline__ BrdRowReplicate(int width, U) : last_col(width - 1) {}
last_col          151 modules/core/include/opencv2/core/cuda/border_interpolate.hpp             return ::min(x, last_col);
last_col          174 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         int last_col;
last_col          246 modules/core/include/opencv2/core/cuda/border_interpolate.hpp             return ::min(x, last_col);
last_col          265 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         int last_col;
last_col          275 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         explicit __host__ __device__ __forceinline__ BrdRowReflect101(int width) : last_col(width - 1) {}
last_col          276 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         template <typename U> __host__ __device__ __forceinline__ BrdRowReflect101(int width, U) : last_col(width - 1) {}
last_col          280 modules/core/include/opencv2/core/cuda/border_interpolate.hpp             return ::abs(x) % (last_col + 1);
last_col          285 modules/core/include/opencv2/core/cuda/border_interpolate.hpp             return ::abs(last_col - ::abs(last_col - x)) % (last_col + 1);
last_col          308 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         int last_col;
last_col          375 modules/core/include/opencv2/core/cuda/border_interpolate.hpp             return ::abs(x) % (last_col + 1);
last_col          380 modules/core/include/opencv2/core/cuda/border_interpolate.hpp             return ::abs(last_col - ::abs(last_col - x)) % (last_col + 1);
last_col          399 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         int last_col;
last_col          409 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         explicit __host__ __device__ __forceinline__ BrdRowReflect(int width) : last_col(width - 1) {}
last_col          410 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         template <typename U> __host__ __device__ __forceinline__ BrdRowReflect(int width, U) : last_col(width - 1) {}
last_col          414 modules/core/include/opencv2/core/cuda/border_interpolate.hpp             return (::abs(x) - (x < 0)) % (last_col + 1);
last_col          419 modules/core/include/opencv2/core/cuda/border_interpolate.hpp             return ::abs(last_col - ::abs(last_col - x) + (x > last_col)) % (last_col + 1);
last_col          442 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         int last_col;
last_col          509 modules/core/include/opencv2/core/cuda/border_interpolate.hpp             return (::abs(x) - (x < 0)) % (last_col + 1);
last_col          514 modules/core/include/opencv2/core/cuda/border_interpolate.hpp             return (last_col - ::abs(last_col - x) + (x > last_col));
last_col          533 modules/core/include/opencv2/core/cuda/border_interpolate.hpp         int last_col;
last_col          663 modules/video/src/tvl1flow.cpp     const int last_col = src.cols - 1;
last_col          674 modules/video/src/tvl1flow.cpp         for (int x = 1; x < last_col; ++x)
last_col          689 modules/video/src/tvl1flow.cpp     const int last_col = src.cols - 1;
last_col          703 modules/video/src/tvl1flow.cpp     for (int x = 1; x < last_col; ++x)
last_col          718 modules/video/src/tvl1flow.cpp         dx(y, last_col) = 0.5f * (src(y, last_col) - src(y, last_col - 1));
last_col          719 modules/video/src/tvl1flow.cpp         dy(y, last_col) = 0.5f * (src(y + 1, last_col) - src(y - 1, last_col));
last_col          726 modules/video/src/tvl1flow.cpp     dx(0, last_col) = 0.5f * (src(0, last_col) - src(0, last_col - 1));
last_col          727 modules/video/src/tvl1flow.cpp     dy(0, last_col) = 0.5f * (src(1, last_col) - src(0, last_col));
last_col          732 modules/video/src/tvl1flow.cpp     dx(last_row, last_col) = 0.5f * (src(last_row, last_col) - src(last_row, last_col - 1));
last_col          733 modules/video/src/tvl1flow.cpp     dy(last_row, last_col) = 0.5f * (src(last_row, last_col) - src(last_row - 1, last_col));
last_col          750 modules/video/src/tvl1flow.cpp     const int last_col = src.cols - 1;
last_col          760 modules/video/src/tvl1flow.cpp         for (int x = 0; x < last_col; ++x)
last_col          775 modules/video/src/tvl1flow.cpp     const int last_col = src.cols - 1;
last_col          789 modules/video/src/tvl1flow.cpp     for (int x = 0; x < last_col; ++x)
last_col          798 modules/video/src/tvl1flow.cpp         dx(y, last_col) = 0.0f;
last_col          799 modules/video/src/tvl1flow.cpp         dy(y, last_col) = src(y + 1, last_col) - src(y, last_col);
last_col          802 modules/video/src/tvl1flow.cpp     dx(last_row, last_col) = 0.0f;
last_col          803 modules/video/src/tvl1flow.cpp     dy(last_row, last_col) = 0.0f;