Home
last modified time | relevance | path

Searched refs:width_n (Results 1 – 2 of 2) sorted by relevance

/external/opencv/cv/src/
Dcvmorph.cpp326 int width_n = (prev_x_range.end_index - prev_x_range.start_index)*pix_size; in fill_cyclic_buffer() local
336 for( i = 0; i < width_n; i += sizeof(int) ) in fill_cyclic_buffer()
352 trow[i + width_n] = trow[j]; in fill_cyclic_buffer()
362 trow[i + width_n] = bt[i]; in fill_cyclic_buffer()
Dcvfilter.cpp345 int width = prev_x_range.end_index - prev_x_range.start_index, width_n = width*pix_size; in fill_cyclic_buffer() local
359 trow[i] = bptr[i + width_n]; in fill_cyclic_buffer()
361 else if( !(((size_t)(bptr + bsz1)|(size_t)src|width_n) & (sizeof(int)-1)) ) in fill_cyclic_buffer()
362 for( i = 0; i < width_n; i += sizeof(int) ) in fill_cyclic_buffer()
365 for( i = 0; i < width_n; i++ ) in fill_cyclic_buffer()
378 bptr[i + width_n] = bptr[j]; in fill_cyclic_buffer()
388 bptr[i + width_n] = bt[i]; in fill_cyclic_buffer()
399 bptr[i + width_n] = trow[i]; in fill_cyclic_buffer()