Lines Matching refs:cleft

179 …__global__ void init_data_cost(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t cimg_…  in init_data_cost()  argument
208 const uchar* lle = cleft + yi * cimg_step + xi * channels; in init_data_cost()
221 …__global__ void init_data_cost_reduce(const uchar *cleft, const uchar *cright, uchar *ctemp, size_… in init_data_cost_reduce() argument
245 const uchar* lle = cleft + y0 * cimg_step + channels * (x0 + tid ); in init_data_cost_reduce()
271 …void init_data_cost_caller_(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t cimg_ste… in init_data_cost_caller_() argument
281 …case 1: init_data_cost<T, 1><<<grid, threads, 0, stream>>>(cleft, cright, ctemp, cimg_step, h, w, … in init_data_cost_caller_()
282 …case 3: init_data_cost<T, 3><<<grid, threads, 0, stream>>>(cleft, cright, ctemp, cimg_step, h, w, … in init_data_cost_caller_()
283 …case 4: init_data_cost<T, 4><<<grid, threads, 0, stream>>>(cleft, cright, ctemp, cimg_step, h, w, … in init_data_cost_caller_()
289 …void init_data_cost_reduce_caller_(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t c… in init_data_cost_reduce_caller_() argument
300 …case 1: init_data_cost_reduce<T, winsz, 1><<<grid, threads, smem_size, stream>>>(cleft, cright, ct… in init_data_cost_reduce_caller_()
301 …case 3: init_data_cost_reduce<T, winsz, 3><<<grid, threads, smem_size, stream>>>(cleft, cright, ct… in init_data_cost_reduce_caller_()
302 …case 4: init_data_cost_reduce<T, winsz, 4><<<grid, threads, smem_size, stream>>>(cleft, cright, ct… in init_data_cost_reduce_caller_()
308 …void init_data_cost(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t cimg_step, int r… in init_data_cost() argument
312 …typedef void (*InitDataCostCaller)(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t c… in init_data_cost()
323 …init_data_cost_callers[level](cleft, cright, ctemp, cimg_step, rows, cols, h, w, level, ndisp, cha… in init_data_cost()
346 …template void init_data_cost<short>(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t …
349 …template void init_data_cost<float>(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t …
357 …__global__ void compute_data_cost(const uchar *cleft, const uchar *cright, size_t cimg_step, const… in compute_data_cost() argument
387 const uchar* left_x = cleft + yi * cimg_step + xi * channels; in compute_data_cost()
400 …__global__ void compute_data_cost_reduce(const uchar *cleft, const uchar *cright, size_t cimg_step… in compute_data_cost_reduce() argument
427 const uchar* lle = cleft + y0 * cimg_step + channels * (x0 + tid ); in compute_data_cost_reduce()
450 …void compute_data_cost_caller_(const uchar *cleft, const uchar *cright, size_t cimg_step, const T*… in compute_data_cost_caller_() argument
461 …case 1: compute_data_cost<T, 1><<<grid, threads, 0, stream>>>(cleft, cright, cimg_step, disp_selec… in compute_data_cost_caller_()
462 …case 3: compute_data_cost<T, 3><<<grid, threads, 0, stream>>>(cleft, cright, cimg_step, disp_selec… in compute_data_cost_caller_()
463 …case 4: compute_data_cost<T, 4><<<grid, threads, 0, stream>>>(cleft, cright, cimg_step, disp_selec… in compute_data_cost_caller_()
469 …void compute_data_cost_reduce_caller_(const uchar *cleft, const uchar *cright, size_t cimg_step, c… in compute_data_cost_reduce_caller_() argument
481 …mpute_data_cost_reduce<T, winsz, 1><<<grid, threads, smem_size, stream>>>(cleft, cright, cimg_step… in compute_data_cost_reduce_caller_()
482 …mpute_data_cost_reduce<T, winsz, 3><<<grid, threads, smem_size, stream>>>(cleft, cright, cimg_step… in compute_data_cost_reduce_caller_()
483 …mpute_data_cost_reduce<T, winsz, 4><<<grid, threads, smem_size, stream>>>(cleft, cright, cimg_step… in compute_data_cost_reduce_caller_()
489 …void compute_data_cost(const uchar *cleft, const uchar *cright, size_t cimg_step, const T* disp_se… in compute_data_cost() argument
493 …typedef void (*ComputeDataCostCaller)(const uchar *cleft, const uchar *cright, size_t cimg_step, c… in compute_data_cost()
506 …callers[level](cleft, cright, cimg_step, disp_selected_pyr, data_cost, rows, cols, h, w, level, nr… in compute_data_cost()
513 …template void compute_data_cost(const uchar *cleft, const uchar *cright, size_t cimg_step, const s…
516 …template void compute_data_cost(const uchar *cleft, const uchar *cright, size_t cimg_step, const f…