Home
last modified time | relevance | path

Searched refs:yoff (Results 1 – 21 of 21) sorted by relevance

/external/opencv3/modules/cudawarping/src/cuda/
Dwarp.cu161 …static void call(PtrStepSz<T> src, PtrStepSz<T> srcWhole, int xoff, int yoff, PtrStepSz<T> dst, co… in call()
164 (void)yoff; in call()
189 int xoff, yoff; \
190 tex_warp_ ## type ## _reader (int xoff_, int yoff_) : xoff(xoff_), yoff(yoff_) {} \
193 return tex2D(tex_warp_ ## type , x + xoff, y + yoff); \
198 …oid call(PtrStepSz< type > src, PtrStepSz< type > srcWhole, int xoff, int yoff, PtrStepSz< type > …
204 tex_warp_ ## type ##_reader texSrc(xoff, yoff); \
215 …oid call(PtrStepSz< type > src, PtrStepSz< type > srcWhole, int xoff, int yoff, PtrStepSz< type > …
220 tex_warp_ ## type ##_reader texSrc(xoff, yoff); \
266 …static void call(PtrStepSz<T> src, PtrStepSz<T> srcWhole, int xoff, int yoff, PtrStepSz<T> dst, co… in call()
[all …]
Dremap.cu90 …static void call(PtrStepSz<T> src, PtrStepSz<T> srcWhole, int xoff, int yoff, PtrStepSzf mapx, Ptr… in call()
94 (void)yoff; in call()
117 int xoff, yoff; \
118 tex_remap_ ## type ## _reader (int xoff_, int yoff_) : xoff(xoff_), yoff(yoff_) {} \
121 return tex2D(tex_remap_ ## type , x + xoff, y + yoff); \
126 …oid call(PtrStepSz< type > src, PtrStepSz< type > srcWhole, int xoff, int yoff, PtrStepSzf mapx, P…
133 tex_remap_ ## type ##_reader texSrc(xoff, yoff); \
144 …oid call(PtrStepSz< type > src, PtrStepSz< type > srcWhole, int xoff, int yoff, PtrStepSzf mapx, P…
150 tex_remap_ ## type ##_reader texSrc(xoff, yoff); \
196 …static void call(PtrStepSz<T> src, PtrStepSz<T> srcWhole, int xoff, int yoff, PtrStepSzf mapx, Ptr… in call()
[all …]
Dresize.cu144 int yoff; \
147 return tex2D(tex_resize_##type, x + xoff, y + yoff); \
170 TextureAccessor<T> texAccessor(const PtrStepSz<T>& mat, int yoff, int xoff) in OPENCV_CUDA_IMPLEMENT_RESIZE_TEX()
176 t.yoff = yoff; in OPENCV_CUDA_IMPLEMENT_RESIZE_TEX()
197 …earest_tex(const PtrStepSz<T>& /*src*/, const PtrStepSz<T>& srcWhole, int yoff, int xoff, const Pt… in call_resize_nearest_tex() argument
202 resize<<<grid, block>>>(texAccessor(srcWhole, yoff, xoff), dst, fy, fx); in call_resize_nearest_tex()
224 …void call_resize_linear_tex(const PtrStepSz<T>& src, const PtrStepSz<T>& srcWhole, int yoff, int x… in call_resize_linear_tex() argument
238 TextureAccessor<T> texSrc = texAccessor(srcWhole, yoff, xoff); in call_resize_linear_tex()
272 …void call_resize_cubic_tex(const PtrStepSz<T>& src, const PtrStepSz<T>& srcWhole, int yoff, int xo… in call_resize_cubic_tex() argument
286 TextureAccessor<T> texSrc = texAccessor(srcWhole, yoff, xoff); in call_resize_cubic_tex()
[all …]
/external/jdiff/src/jdiff/
DDiffMyers.java109 private int diag (int xoff, int xlim, int yoff, int ylim) in diag() argument
116 final int dmax = xlim - yoff; // Maximum valid diagonal. in diag()
117 final int fmid = xoff - yoff; // Center diagonal of top-down search. in diag()
184 while (x > xoff && y > yoff && xv[x - 1] == yv[y - 1]) { in diag()
217 && fd[fdiagoff + d] - d - yoff > 20) in diag()
288 private void compareseq (int xoff, int xlim, int yoff, int ylim) { in compareseq() argument
290 while (xoff < xlim && yoff < ylim && xvec[xoff] == yvec[yoff]) { in compareseq()
291 ++xoff; ++yoff; in compareseq()
294 while (xlim > xoff && ylim > yoff && xvec[xlim - 1] == yvec[ylim - 1]) { in compareseq()
300 while (yoff < ylim) in compareseq()
[all …]
/external/skia/src/core/
DSkAAClip.cpp101 YOffset* yoff = head->yoffsets(); in AllocRect() local
102 yoff->fY = bounds.height() - 1; in AllocRect()
103 yoff->fOffset = 0; in AllocRect()
200 const YOffset* yoff = head->yoffsets(); in validate() local
201 const YOffset* ystop = yoff + head->fRowCount; in validate()
207 while (yoff < ystop) { in validate()
208 SkASSERT(prevY < yoff->fY); in validate()
209 SkASSERT(yoff->fY <= lastY); in validate()
210 prevY = yoff->fY; in validate()
211 SkASSERT(prevOffset < (int32_t)yoff->fOffset); in validate()
[all …]
/external/opencv3/modules/cudafilters/src/cuda/
Dfilter2d.cu86 const int yoff; \
87 tex_filter2D_ ## type ## _reader (int xoff_, int yoff_) : xoff(xoff_), yoff(yoff_) {} \
90 return tex2D(tex_filter2D_ ## type , x + xoff, y + yoff); \
95 …static void call(const PtrStepSz< type > srcWhole, int xoff, int yoff, PtrStepSz<D> dst, const flo…
102 tex_filter2D_ ## type ##_reader texSrc(xoff, yoff); \
128 …typedef void (*func_t)(const PtrStepSz<T> srcWhole, int xoff, int yoff, PtrStepSz<D> dst, const fl… in filter2D()
/external/skia/src/utils/
DSkTextureCompressor_Blitter.h195 const int yoff = y - startBlockY; in blitRect() local
196 SkASSERT((yoff + height) <= BlockDim); in blitRect()
199 memset(mask + (j + yoff)*BlockDim + xoff, 0xFF, width); in blitRect()
649 const int yoff = y - blockRow; in updateBlockRow() local
652 memset(mask + (j + yoff)*BlockDim + xoff, 0xFF, BlockDim - xoff); in updateBlockRow()
661 memset(mask + (j + yoff)*BlockDim, 0xFF, BlockDim); in updateBlockRow()
677 memset(mask + (j+yoff)*BlockDim, 0xFF, xoff); in updateBlockRow()
/external/opencv3/modules/cudawarping/src/
Dresize.cpp54 …void resize(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, const PtrStepSz…
61 …typedef void (*func_t)(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, cons… in resize()
Dremap.cpp56 …void remap_gpu(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSz…
65 …typedef void (*func_t)(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, P… in remap()
Dwarp.cpp67 …void warpAffine_gpu(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], …
73 …void warpPerspective_gpu(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[3 *…
286 …typedef void (*func_t)(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3… in warpAffine()
425 …typedef void (*func_t)(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3… in warpPerspective()
/external/opencv3/3rdparty/libjasper/
Djas_seq.c389 int yoff; in jas_seq2d_input() local
391 if (fscanf(in, "%d %d", &xoff, &yoff) != 2) in jas_seq2d_input()
395 if (!(matrix = jas_seq2d_create(xoff, yoff, xoff + numcols, yoff + numrows))) in jas_seq2d_input()
Djpc_cs.h197 uint_fast32_t yoff; member
Djpc_cs.c492 jpc_getuint32(in, &siz->yoff) || in jpc_siz_getparms()
538 jpc_putuint32(out, siz->yoff) || in jpc_siz_putparms()
563 (int)siz->width, (int)siz->height, (int)siz->xoff, (int)siz->yoff); in jpc_siz_dumpparms()
Djpc_dec.c1172 dec->ystart = siz->yoff; in jpc_dec_process_siz()
Djpc_enc.c935 siz->yoff = cp->imgareatly; in jpc_enc_encodemainhdr()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowPopupWindow.java152 public void showAsDropDown(View anchor, int xoff, int yoff) { in showAsDropDown() argument
154 yOffset = yoff; in showAsDropDown()
/external/opencv3/modules/cudaimgproc/src/cuda/
Dcanny.cu96 int yoff; member
97 __host__ SrcTex(int _xoff, int _yoff) : xoff(_xoff), yoff(_yoff) {} in SrcTex()
101 return tex2D(tex_src, x + xoff, y + yoff); in operator ()()
123 …void calcMagnitude(PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzi dx, PtrStepSzi dy, PtrStepS… in calcMagnitude() argument
129 SrcTex src(xoff, yoff); in calcMagnitude()
/external/libvpx/libvpx/test/
Dvariance_test.cc118 int l2w, int l2h, int xoff, int yoff, in subpel_variance_ref() argument
128 yoff <<= 1; in subpel_variance_ref()
140 const int r = a + (((b - a) * yoff + 8) >> 4); in subpel_variance_ref()
154 const int r = a + (((b - a) * yoff + 8) >> 4); in subpel_variance_ref()
489 int xoff, int yoff, in subpel_avg_variance_ref() argument
499 yoff <<= 1; in subpel_avg_variance_ref()
511 const int r = a + (((b - a) * yoff + 8) >> 4); in subpel_avg_variance_ref()
526 const int r = a + (((b - a) * yoff + 8) >> 4); in subpel_avg_variance_ref()
/external/opencv3/modules/cudaimgproc/src/
Dcanny.cpp56 …void calcMagnitude(PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzi dx, PtrStepSzi dy, PtrStepS…
/external/chromium-trace/catapult/third_party/flot/
Djquery.flot.min.js8yoff;if(!axis.show||axis.ticks.length==0)continue;ctx.lineWidth=1;if(axis.direction=="x"){x=0;if(t…
Djquery.flot.js2031 t = axis.tickLength, x, y, xoff, yoff;
2057 xoff = yoff = 0;
2061 yoff = plotHeight + 1;
2072 ctx.lineTo(x + xoff, y + yoff);
2084 xoff = yoff = 0;
2095 yoff = t == "full" ? -plotHeight : t;
2098 yoff = -yoff;
2116 ctx.lineTo(x + xoff, y + yoff);