Lines Matching refs:dsrc
315 … const deriv_type* dsrc = derivI.ptr<deriv_type>() + (y + iprevPt.y)*dstep + iprevPt.x*cn2; in operator ()() local
323 for( ; x <= winSize.width*cn - 4; x += 4, dsrc += 4*2, dIptr += 4*2 ) in operator ()()
337 v00 = _mm_loadu_si128((const __m128i*)(dsrc)); in operator ()()
338 v01 = _mm_loadu_si128((const __m128i*)(dsrc + cn2)); in operator ()()
339 v10 = _mm_loadu_si128((const __m128i*)(dsrc + dstep)); in operator ()()
340 v11 = _mm_loadu_si128((const __m128i*)(dsrc + dstep + cn2)); in operator ()()
364 for( ; x <= winSize.width*cn - 4; x += 4, dsrc += 4*2, dIptr += 4*2 ) in operator ()()
387 int16x4x2_t d0d1 = vld2_s16(dsrc); in operator ()()
388 int16x4x2_t d2d3 = vld2_s16(&dsrc[cn2]); in operator ()()
402 int16x4x2_t d4d5 = vld2_s16(&dsrc[dstep]); in operator ()()
403 int16x4x2_t d6d7 = vld2_s16(&dsrc[dstep+cn2]); in operator ()()
447 for( ; x < winSize.width*cn; x++, dsrc += 2, dIptr += 2 ) in operator ()()
451 int ixval = CV_DESCALE(dsrc[0]*iw00 + dsrc[cn2]*iw01 + in operator ()()
452 dsrc[dstep]*iw10 + dsrc[dstep+cn2]*iw11, W_BITS1); in operator ()()
453 int iyval = CV_DESCALE(dsrc[1]*iw00 + dsrc[cn2+1]*iw01 + dsrc[dstep+1]*iw10 + in operator ()()
454 dsrc[dstep+cn2+1]*iw11, W_BITS1); in operator ()()