HomeSort by relevance Sort by last modified time
    Searched refs:last_col (Results 1 - 4 of 4) sorted by null

  /external/opencv3/modules/core/include/opencv2/core/cuda/
border_interpolate.hpp 141 explicit __host__ __device__ __forceinline__ BrdRowReplicate(int width) : last_col(width - 1) {}
142 template <typename U> __host__ __device__ __forceinline__ BrdRowReplicate(int width, U) : last_col(width - 1) {}
151 return ::min(x, last_col);
174 int last_col; member in struct:cv::cuda::device::BrdRowReplicate
221 __host__ __device__ __forceinline__ BrdReplicate(int height, int width) : last_row(height - 1), last_col(width - 1) {}
222 template <typename U> __host__ __device__ __forceinline__ BrdReplicate(int height, int width, U) : last_row(height - 1), last_col(width - 1) {}
246 return ::min(x, last_col);
265 int last_col; member in struct:cv::cuda::device::BrdReplicate
275 explicit __host__ __device__ __forceinline__ BrdRowReflect101(int width) : last_col(width - 1) {}
276 template <typename U> __host__ __device__ __forceinline__ BrdRowReflect101(int width, U) : last_col(width - 1) {
308 int last_col; member in struct:cv::cuda::device::BrdRowReflect101
399 int last_col; member in struct:cv::cuda::device::BrdReflect101
442 int last_col; member in struct:cv::cuda::device::BrdRowReflect
533 int last_col; member in struct:cv::cuda::device::BrdReflect
    [all...]
  /external/opencv3/modules/video/src/opencl/
optical_flow_farneback.cl 145 inline int idx_col_low(const int x, const int last_col)
147 return abs(x) % (last_col + 1);
150 inline int idx_col_high(const int x, const int last_col)
152 return abs(last_col - abs(last_col - x)) % (last_col + 1);
155 inline int idx_col(const int x, const int last_col)
157 return idx_col_low(idx_col_high(x, last_col), last_col);
  /external/opencv3/modules/video/src/
tvl1flow.cpp 663 const int last_col = src.cols - 1; local
674 for (int x = 1; x < last_col; ++x)
689 const int last_col = src.cols - 1; local
703 for (int x = 1; x < last_col; ++x)
718 dx(y, last_col) = 0.5f * (src(y, last_col) - src(y, last_col - 1));
719 dy(y, last_col) = 0.5f * (src(y + 1, last_col) - src(y - 1, last_col));
750 const int last_col = src.cols - 1; local
775 const int last_col = src.cols - 1; local
    [all...]
  /external/mesa3d/src/glsl/
ast_function.cpp 1061 const unsigned last_col = MIN2(src_matrix->type->matrix_columns, local
    [all...]

Completed in 1449 milliseconds