ft                211 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp             typedef typename UnaryReadWriteTraits<T, D, ft::smart_shift>::read_type read_type;
ft                212 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp             typedef typename UnaryReadWriteTraits<T, D, ft::smart_shift>::write_type write_type;
ft                216 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp             const int x_shifted = x * ft::smart_shift;
ft                223 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 if (x_shifted + ft::smart_shift - 1 < src_.cols)
ft                228 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                     OpUnroller<ft::smart_shift>::unroll(src_n_el, dst_n_el, mask, op, x_shifted, y);
ft                260 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp             typedef typename BinaryReadWriteTraits<T1, T2, D, ft::smart_shift>::read_type1 read_type1;
ft                261 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp             typedef typename BinaryReadWriteTraits<T1, T2, D, ft::smart_shift>::read_type2 read_type2;
ft                262 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp             typedef typename BinaryReadWriteTraits<T1, T2, D, ft::smart_shift>::write_type write_type;
ft                266 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp             const int x_shifted = x * ft::smart_shift;
ft                274 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 if (x_shifted + ft::smart_shift - 1 < src1_.cols)
ft                280 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                     OpUnroller<ft::smart_shift>::unroll(src1_n_el, src2_n_el, dst_n_el, mask, op, x_shifted, y);
ft                318 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 const dim3 threads(ft::simple_block_dim_x, ft::simple_block_dim_y, 1);
ft                333 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 const dim3 threads(ft::simple_block_dim_x, ft::simple_block_dim_y, 1);
ft                350 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 CV_StaticAssert(ft::smart_shift != 1, "");
ft                352 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 if (!isAligned(src.data, ft::smart_shift * sizeof(T)) || !isAligned(src.step, ft::smart_shift * sizeof(T)) ||
ft                353 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                     !isAligned(dst.data, ft::smart_shift * sizeof(D)) || !isAligned(dst.step, ft::smart_shift * sizeof(D)))
ft                359 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 const dim3 threads(ft::smart_block_dim_x, ft::smart_block_dim_y, 1);
ft                360 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 const dim3 grid(divUp(src.cols, threads.x * ft::smart_shift), divUp(src.rows, threads.y), 1);
ft                374 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 CV_StaticAssert(ft::smart_shift != 1, "");
ft                376 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 if (!isAligned(src1.data, ft::smart_shift * sizeof(T1)) || !isAligned(src1.step, ft::smart_shift * sizeof(T1)) ||
ft                377 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                     !isAligned(src2.data, ft::smart_shift * sizeof(T2)) || !isAligned(src2.step, ft::smart_shift * sizeof(T2)) ||
ft                378 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                     !isAligned(dst.data, ft::smart_shift * sizeof(D)) || !isAligned(dst.step, ft::smart_shift * sizeof(D)))
ft                384 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 const dim3 threads(ft::smart_block_dim_x, ft::smart_block_dim_y, 1);
ft                385 modules/core/include/opencv2/core/cuda/detail/transform_detail.hpp                 const dim3 grid(divUp(src1.cols, threads.x * ft::smart_shift), divUp(src1.rows, threads.y), 1);
ft                 62 modules/core/include/opencv2/core/cuda/transform.hpp         transform_detail::TransformDispatcher<VecTraits<T>::cn == 1 && VecTraits<D>::cn == 1 && ft::smart_shift != 1>::call(src, dst, op, mask, stream);
ft                 69 modules/core/include/opencv2/core/cuda/transform.hpp         transform_detail::TransformDispatcher<VecTraits<T1>::cn == 1 && VecTraits<T2>::cn == 1 && VecTraits<D>::cn == 1 && ft::smart_shift != 1>::call(src1, src2, dst, op, mask, stream);