Home
last modified time | relevance | path

Searched refs:xoff (Results 1 – 23 of 23) 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()
163 (void)xoff; 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 …static void call(PtrStepSz< type > src, PtrStepSz< type > srcWhole, int xoff, int yoff, PtrStepSz<…
204 tex_warp_ ## type ##_reader texSrc(xoff, yoff); \
215 …static void call(PtrStepSz< type > src, PtrStepSz< type > srcWhole, int xoff, int yoff, PtrStepSz<…
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()
93 (void)xoff; 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 …static void call(PtrStepSz< type > src, PtrStepSz< type > srcWhole, int xoff, int yoff, PtrStepSzf…
133 tex_remap_ ## type ##_reader texSrc(xoff, yoff); \
144 …static void call(PtrStepSz< type > src, PtrStepSz< type > srcWhole, int xoff, int yoff, PtrStepSzf…
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.cu143 int xoff; \
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()
175 t.xoff = xoff; in OPENCV_CUDA_IMPLEMENT_RESIZE_TEX()
197 …(const PtrStepSz<T>& /*src*/, const PtrStepSz<T>& srcWhole, int yoff, int xoff, const PtrStepSz<T>… in call_resize_nearest_tex() argument
202 resize<<<grid, block>>>(texAccessor(srcWhole, yoff, xoff), dst, fy, fx); in call_resize_nearest_tex()
224 …_tex(const PtrStepSz<T>& src, const PtrStepSz<T>& srcWhole, int yoff, int xoff, const PtrStepSz<T>… in call_resize_linear_tex() argument
238 TextureAccessor<T> texSrc = texAccessor(srcWhole, yoff, xoff); in call_resize_linear_tex()
272 …_tex(const PtrStepSz<T>& src, const PtrStepSz<T>& srcWhole, int yoff, int xoff, const PtrStepSz<T>… 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
115 final int dmin = xoff - ylim; // Minimum valid diagonal. in diag()
117 final int fmid = xoff - yoff; // Center diagonal of top-down search. in diag()
125 fd[fdiagoff + fmid] = xoff; in diag()
184 while (x > xoff && y > yoff && xv[x - 1] == yv[y - 1]) { in diag()
213 if ((fd[fdiagoff + d] - xoff)*2 - dd > 12 * (c + (dd > 0 ? dd : -dd))) in diag()
216 && fd[fdiagoff + d] - xoff > 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()
[all …]
/external/libmicrohttpd/src/microhttpd/
Dpostprocessor.c349 size_t xoff; in post_process_urlencoded() local
392 xoff = pp->xbuf_pos; in post_process_urlencoded()
410 if (delta > XBUF_SIZE - xoff) in post_process_urlencoded()
411 delta = XBUF_SIZE - xoff; in post_process_urlencoded()
414 memcpy (&xbuf[xoff], &post_data[poff], delta); in post_process_urlencoded()
415 xoff += delta; in post_process_urlencoded()
421 delta = xoff; in post_process_urlencoded()
429 if (delta < xoff) in post_process_urlencoded()
431 memcpy (pp->xbuf, &xbuf[delta], xoff - delta); in post_process_urlencoded()
432 pp->xbuf_pos = xoff - delta; in post_process_urlencoded()
[all …]
/external/opencv3/modules/cudafilters/src/cuda/
Dfilter2d.cu85 const int xoff; \
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.h192 const int xoff = x - startBlockX; in blitRect() local
193 SkASSERT((xoff + width) <= BlockDim); in blitRect()
199 memset(mask + (j + yoff)*BlockDim + xoff, 0xFF, width); in blitRect()
651 const int xoff = x - blockX; in updateBlockRow() local
652 memset(mask + (j + yoff)*BlockDim + xoff, 0xFF, BlockDim - xoff); in updateBlockRow()
676 const int xoff = (x+width-blockX); in updateBlockRow() local
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.c388 int xoff; 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.h193 uint_fast32_t xoff; member
Djpc_cs.c491 jpc_getuint32(in, &siz->xoff) || in jpc_siz_getparms()
537 jpc_putuint32(out, siz->xoff) || in jpc_siz_putparms()
563 (int)siz->width, (int)siz->height, (int)siz->xoff, (int)siz->yoff); in jpc_siz_dumpparms()
Djpc_dec.c1171 dec->xstart = siz->xoff; in jpc_dec_process_siz()
Djpc_enc.c934 siz->xoff = cp->imgareatlx; 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
153 xOffset = xoff; in showAsDropDown()
/external/opencv3/modules/cudaimgproc/src/cuda/
Dcanny.cu95 int xoff; 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
127 xoff <<= 1; in subpel_variance_ref()
138 const int a = a1 + (((a2 - a1) * xoff + 8) >> 4); in subpel_variance_ref()
139 const int b = b1 + (((b2 - b1) * xoff + 8) >> 4); in subpel_variance_ref()
152 const int a = a1 + (((a2 - a1) * xoff + 8) >> 4); in subpel_variance_ref()
153 const int b = b1 + (((b2 - b1) * xoff + 8) >> 4); in subpel_variance_ref()
489 int xoff, int yoff, in subpel_avg_variance_ref() argument
498 xoff <<= 1; in subpel_avg_variance_ref()
509 const int a = a1 + (((a2 - a1) * xoff + 8) >> 4); in subpel_avg_variance_ref()
510 const int b = b1 + (((b2 - b1) * xoff + 8) >> 4); in subpel_avg_variance_ref()
[all …]
/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.js8xoff,yoff;if(!axis.show||axis.ticks.length==0)continue;ctx.lineWidth=1;if(axis.direction=="x"){x=0…
Djquery.flot.js2031 t = axis.tickLength, x, y, xoff, yoff;
2057 xoff = yoff = 0;
2059 xoff = plotWidth + 1;
2072 ctx.lineTo(x + xoff, y + yoff);
2084 xoff = yoff = 0;
2102 xoff = t == "full" ? -plotWidth : t;
2105 xoff = -xoff;
2116 ctx.lineTo(x + xoff, y + yoff);
/external/libexif/
Dconfigure.ac161 || test "x$enableval" = xoff \
Dconfigure11898 || test "x$enableval" = xoff \