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

  /external/opencv3/modules/cudastereo/src/cuda/
stereocsbp.hpp 6 void init_data_cost(const uchar *left, const uchar *right, uchar *ctemp, size_t cimg_step, int rows, int cols, T* disp_selected_pyr, T* data_cost_selected, size_t msg_step,
15 void init_message(uchar *ctemp, T* u_new, T* d_new, T* l_new, T* r_new,
22 void calc_all_iterations(uchar *ctemp, T* u, T* d, T* l, T* r, const T* data_cost_selected,
stereocsbp.cu 87 __global__ void get_first_k_initial_global(uchar *ctemp, T* data_cost_selected_, T *selected_disp_pyr, int h, int w, int nr_plane, int ndisp,
97 T* data_cost = (T*)ctemp + y * msg_step + x;
122 __global__ void get_first_k_initial_local(uchar *ctemp, T* data_cost_selected_, T* selected_disp_pyr, int h, int w, int nr_plane, int ndisp,
132 T* data_cost = (T*)ctemp + y * msg_step + x;
179 __global__ void init_data_cost(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t cimg_step,
194 T* data_cost = (T*)ctemp + y * msg_step + x;
221 __global__ void init_data_cost_reduce(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t cimg_step,
262 T* data_cost = (T*)ctemp + y_out * msg_step + x_out;
271 void init_data_cost_caller_(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t cimg_step, int /*rows*/, int /*cols*/, int h, int w, int level, int ndisp, int channels, float data_weight, float max_data_term, int min_disp, size_t msg_step, size_t disp_step, cudaStream_t stream)
281 case 1: init_data_cost<T, 1><<<grid, threads, 0, stream>>>(cleft, cright, ctemp, cimg_step, h, w, level, ndisp, data_weight, max_data_term, min_disp, msg_step, disp_step); break
    [all...]
  /external/libedit/src/
filecomplete.c 419 const Char *ctemp; local
438 ctemp = li->cursor;
439 while (ctemp > li->buffer
440 && !Strchr(word_break, ctemp[-1])
441 && (!special_prefixes || !Strchr(special_prefixes, ctemp[-1]) ) )
442 ctemp--;
444 len = (size_t)(li->cursor - ctemp);
446 (void)Strncpy(temp, ctemp, len);
  /external/selinux/libsepol/src/
policydb.c 1145 constraint_node_t *constraint, *ctemp; local
1164 ctemp = constraint;
1166 free(ctemp);
1177 ctemp = constraint;
1179 free(ctemp);
    [all...]

Completed in 97 milliseconds