Home
last modified time | relevance | path

Searched refs:src_y1 (Results 1 – 9 of 9) sorted by relevance

/external/opencv3/modules/video/src/opencl/
Doptical_flow_tvl1.cl58 int src_y1 = (y+1) < (src_row - 1) ? (y + 1) : (src_row - 1);
60 dy[y * d_step+ x] = 0.5f * (src_ptr[src_y1 * src_step + x] - src_ptr[src_y2 * src_step+ x]);
256 int src_y1 = (y + 1) < (u1_row - 1) ? (y + 1) : (u1_row - 1);
257 …float u1y = u1[(src_y1 + u1_offset_y) * u1_step + x + u1_offset_x] - u1[(y + u1_offset_y) * u1_ste…
/external/opencv/cv/src/
Dcvfilter.cpp441 int src_x, src_y, src_y1, src_y2, dst_y; in process() local
505 src_y1 = src_roi.y; in process()
513 src_y1 -= max_ky; in process()
516 if( src_y1 < _src_y1 ) in process()
518 top_rows = _src_y1 - src_y1; in process()
519 src_y1 = _src_y1; in process()
538 sptr = src->data.ptr + src_y1*src->step + src_x*pix_size; in process()
540 for( src_y = src_y1; src_y < src_y2; ) in process()
545 delta = fill_cyclic_buffer( sptr, src->step, src_y, src_y1, src_y2 ); in process()
2307 int i, dy, src_y1 = 0, src_y2; in icvIPPFilterNextStripe() local
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Drow_neon.cc2997 void SobelXRow_NEON(const uint8* src_y0, const uint8* src_y1, in SobelXRow_NEON() argument
3027 "+r"(src_y1), // %1 in SobelXRow_NEON()
3041 void SobelYRow_NEON(const uint8* src_y0, const uint8* src_y1, in SobelYRow_NEON() argument
3071 "+r"(src_y1), // %1 in SobelYRow_NEON()
Drow_neon64.cc2999 void SobelXRow_NEON(const uint8* src_y0, const uint8* src_y1, in SobelXRow_NEON() argument
3028 "+r"(src_y1), // %1 in SobelXRow_NEON()
3044 void SobelYRow_NEON(const uint8* src_y0, const uint8* src_y1, in SobelYRow_NEON() argument
3073 "+r"(src_y1), // %1 in SobelYRow_NEON()
Drow_common.cc908 void SobelXRow_C(const uint8* src_y0, const uint8* src_y1, const uint8* src_y2, in SobelXRow_C() argument
913 int b = src_y1[i]; in SobelXRow_C()
916 int b_sub = src_y1[i + 2]; in SobelXRow_C()
926 void SobelYRow_C(const uint8* src_y0, const uint8* src_y1, in SobelYRow_C() argument
933 int a_sub = src_y1[i + 0]; in SobelYRow_C()
934 int b_sub = src_y1[i + 1]; in SobelYRow_C()
935 int c_sub = src_y1[i + 2]; in SobelYRow_C()
Drow_gcc.cc4122 void SobelXRow_SSE2(const uint8* src_y0, const uint8* src_y1, in SobelXRow_SSE2() argument
4160 "+r"(src_y1), // %1 in SobelXRow_SSE2()
4176 void SobelYRow_SSE2(const uint8* src_y0, const uint8* src_y1, in SobelYRow_SSE2() argument
4213 "+r"(src_y1), // %1 in SobelYRow_SSE2()
Dplanar_functions.cc1981 void (*SobelYRow)(const uint8* src_y0, const uint8* src_y1, in ARGBSobelize()
1983 void (*SobelXRow)(const uint8* src_y0, const uint8* src_y1, in ARGBSobelize()
Drow_win.cc4948 void SobelXRow_SSE2(const uint8* src_y0, const uint8* src_y1, in SobelXRow_SSE2() argument
5004 void SobelYRow_SSE2(const uint8* src_y0, const uint8* src_y1, in SobelYRow_SSE2() argument
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Drow.h1792 void SobelXRow_C(const uint8* src_y0, const uint8* src_y1, const uint8* src_y2,
1794 void SobelXRow_SSE2(const uint8* src_y0, const uint8* src_y1,
1796 void SobelXRow_NEON(const uint8* src_y0, const uint8* src_y1,
1798 void SobelYRow_C(const uint8* src_y0, const uint8* src_y1,
1800 void SobelYRow_SSE2(const uint8* src_y0, const uint8* src_y1,
1802 void SobelYRow_NEON(const uint8* src_y0, const uint8* src_y1,