Home
last modified time | relevance | path

Searched refs:ypos (Results 1 – 25 of 34) sorted by relevance

12

/external/libvpx/libvpx/vp9/encoder/
Dvp9_skin_detection.c64 int ypos = y_bsize >> 1; in vp9_compute_skin_map() local
89 uint8_t ysource = src_y[ypos * src_ystride + ypos]; in vp9_compute_skin_map()
92 uint8_t ysource2 = src_y[(ypos + 1) * src_ystride + ypos]; in vp9_compute_skin_map()
95 uint8_t ysource3 = src_y[ypos * src_ystride + (ypos + 1)]; in vp9_compute_skin_map()
98 uint8_t ysource4 = src_y[(ypos + 1) * src_ystride + (ypos + 1)]; in vp9_compute_skin_map()
/external/opencv3/samples/android/15-puzzle/src/org/opencv/samples/puzzle15/
DPuzzle15Activity.java125 int xpos, ypos; in onTouch() local
130 ypos = (view.getHeight() - mGameHeight) / 2; in onTouch()
131 ypos = (int)event.getY() - ypos; in onTouch()
133 if (xpos >=0 && xpos <= mGameWidth && ypos >=0 && ypos <= mGameHeight) { in onTouch()
135 mPuzzle15.deliverTouchEvent(xpos, ypos); in onTouch()
/external/mesa3d/src/mesa/main/
Daccum.c190 GLint xpos, GLint ypos, GLint width, GLint height, in accum_scale_or_bias() argument
200 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height, in accum_scale_or_bias()
248 GLint xpos, GLint ypos, GLint width, GLint height, in accum_or_load() argument
270 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height, in accum_or_load()
278 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height, in accum_or_load()
342 GLint xpos, GLint ypos, GLint width, GLint height) in accum_return() argument
351 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height, in accum_return()
372 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height, in accum_return()
455 GLint xpos, ypos, width, height; in _mesa_accum() local
466 ypos = ctx->DrawBuffer->_Ymin; in _mesa_accum()
[all …]
/external/skia/tests/
DSVGDeviceTest.cpp71 SkAutoTMalloc<SkScalar> ypos(yposCount); in check_text_node() local
72 SkParse::FindScalars(y, ypos.get(), yposCount); in check_text_node()
74 REPORTER_ASSERT(reporter, ypos[0] == offset.y()); in check_text_node()
77 REPORTER_ASSERT(reporter, ypos[i] == -SkIntToScalar(expected[i])); in check_text_node()
DImageFilterTest.cpp516 SkScalar ypos = SkIntToScalar(height); in DEF_TEST() local
519 untiledCanvas.drawText(text, strlen(text), 0, ypos, paint); in DEF_TEST()
526 tiledCanvas.drawText(text, strlen(text), 0, ypos, paint); in DEF_TEST()
/external/opencv3/modules/features2d/src/kaze/
Dnldiffusion_functions.cpp381 float ypos = (c_curr[j] + c_next[j]) *(ld_next[j] - ld_curr[j]); in operator ()() local
383 dst[j] = 0.5f*stepsize*(xpos - xneg + ypos - yneg); in operator ()()
409 float xneg, xpos, yneg, ypos; in nld_step_scalar() local
420 ypos = (ccur[j] + cnxt[j]) * (ldnxt[j] - ldcur[j]); in nld_step_scalar()
421 dst[j] = 0.5f*stepsize*(xpos - xneg + ypos); in nld_step_scalar()
451 ypos = (ccur[0] + cnxt[0]) * (ldnxt[0] - ldcur[0]); in nld_step_scalar()
453 dst[0] = 0.5f*stepsize*(xpos + ypos - yneg); in nld_step_scalar()
456 ypos = (ccur[r0] + cnxt[r0]) * (ldnxt[r0] - ldcur[r0]); in nld_step_scalar()
458 dst[r0] = 0.5f*stepsize*(-xneg + ypos - yneg); in nld_step_scalar()
/external/wpa_supplicant_8/src/crypto/
Daes-gcm.c148 u8 *ypos = y; in aes_gctr() local
158 aes_encrypt(aes, cb, ypos); in aes_gctr()
159 xor_block(ypos, xpos); in aes_gctr()
161 ypos += AES_BLOCK_SIZE; in aes_gctr()
170 *ypos++ = *xpos++ ^ tmp[i]; in aes_gctr()
/external/libhevc/decoder/
Dihevcd_decode.c490 WORD32 ypos = ps_codec->i4_disp_ht - 32 - LOGO_HT; in ihevcd_decode() local
492 if(ypos < 0) in ihevcd_decode()
493 ypos = 0; in ihevcd_decode()
502 ypos, in ihevcd_decode()
866 WORD32 ypos = ps_codec->i4_disp_ht - 32 - LOGO_HT; in ihevcd_decode() local
868 if(ypos < 0) in ihevcd_decode()
869 ypos = 0; in ihevcd_decode()
878 ypos, in ihevcd_decode()
/external/opencv3/3rdparty/libtiff/
Dtif_jpeg.c1351 int ypos; in JPEGDecodeRaw() local
1353 for (ypos = 0; ypos < vsamp; ypos++) { in JPEGDecodeRaw()
1354 JSAMPLE *inptr = sp->ds_buffer[ci][sp->scancount*vsamp + ypos]; in JPEGDecodeRaw()
1845 int clumpoffset, ci, xpos, ypos; in JPEGEncodeRaw() local
1879 for (ypos = 0; ypos < vsamp; ypos++) { in JPEGEncodeRaw()
1881 outptr = sp->ds_buffer[ci][sp->scancount*vsamp + ypos]; in JPEGEncodeRaw()
1931 int ci, ypos, n; in JPEGPostEncode() local
1940 for (ypos = sp->scancount * vsamp; in JPEGPostEncode()
1941 ypos < DCTSIZE * vsamp; ypos++) { in JPEGPostEncode()
1942 _TIFFmemcpy((void*)sp->ds_buffer[ci][ypos], in JPEGPostEncode()
[all …]
/external/pdfium/third_party/libjpeg/
Dfpdfapi_jccoefct.c150 JDIMENSION ypos, xpos; in compress_data() local
173 ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */ in compress_data()
180 ypos, xpos, (JDIMENSION) blockcnt); in compress_data()
198 ypos += DCTSIZE; in compress_data()
/external/libjpeg-turbo/
Djccoefct.c149 JDIMENSION ypos, xpos; in compress_data() local
172 ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */ in compress_data()
179 ypos, xpos, (JDIMENSION) blockcnt); in compress_data()
197 ypos += DCTSIZE; in compress_data()
/external/opencv3/3rdparty/libjpeg/
Djccoefct.c151 JDIMENSION ypos, xpos; in compress_data() local
176 ypos = yoffset * compptr->DCT_v_scaled_size; in compress_data()
184 ypos, xpos, (JDIMENSION) blockcnt); in compress_data()
202 ypos += compptr->DCT_v_scaled_size; in compress_data()
/external/skia/src/gpu/
DGrRectanizer_skyline.cpp51 bool GrRectanizerSkyline::rectangleFits(int skylineIndex, int width, int height, int* ypos) const { in rectangleFits()
70 *ypos = y; in rectangleFits()
/external/pdfium/third_party/libtiff/
Dtif_jpeg.c1422 int ypos; in JPEGDecodeRaw() local
1424 for (ypos = 0; ypos < vsamp; ypos++) { in JPEGDecodeRaw()
1425 JSAMPLE *inptr = sp->ds_buffer[ci][sp->scancount*vsamp + ypos]; in JPEGDecodeRaw()
1967 int clumpoffset, ci, xpos, ypos; in JPEGEncodeRaw() local
2001 for (ypos = 0; ypos < vsamp; ypos++) { in JPEGEncodeRaw()
2003 outptr = sp->ds_buffer[ci][sp->scancount*vsamp + ypos]; in JPEGEncodeRaw()
2053 int ci, ypos, n; in JPEGPostEncode() local
2062 for (ypos = sp->scancount * vsamp; in JPEGPostEncode()
2063 ypos < DCTSIZE * vsamp; ypos++) { in JPEGPostEncode()
2064 _TIFFmemcpy((void*)sp->ds_buffer[ci][ypos], in JPEGPostEncode()
[all …]
/external/webrtc/webrtc/modules/video_render/test/testAPI/
DtestAPI.cc166 int screen, xpos = 10, ypos = 10; in WebRtcCreateWindow() local
197 ypos = 200; in WebRtcCreateWindow()
201 ypos = 200; in WebRtcCreateWindow()
209 xpos, ypos, in WebRtcCreateWindow()
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_bitmap.c90 GLint xpos, ypos; member
669 cache->ypos, in st_flush_bitmap_cache()
706 py = y - cache->ypos; in accum_bitmap()
724 cache->ypos = y - py; in accum_bitmap()
/external/kernel-headers/original/uapi/linux/dvb/
Dvideo.h173 __u32 ypos; /* 23-22 auto action mode */ member
/external/libdrm/include/drm/
Dvmwgfx_drm.h558 int32_t ypos; member
/external/mesa3d/src/gallium/winsys/svga/drm/
Dvmwgfx_drm.h497 int32_t ypos; member
/external/kernel-headers/original/uapi/drm/
Dvmwgfx_drm.h525 int32_t ypos; member
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
Dxm_api.c276 int xpos, ypos; in get_drawable_size() local
278 stat = XGetGeometry(dpy, d, &root, &xpos, &ypos, &w, &h, &bw, &depth); in get_drawable_size()
/external/mesa3d/src/egl/drivers/glx/
Degl_glx.c816 int xpos, ypos; in get_drawable_size() local
818 stat = XGetGeometry(dpy, d, &root, &xpos, &ypos, &w, &h, &bw, &depth); in get_drawable_size()
/external/mesa3d/src/mesa/drivers/x11/
Dxm_api.c227 int xpos, ypos; in get_drawable_size() local
229 stat = XGetGeometry(dpy, d, &root, &xpos, &ypos, &w, &h, &bw, &depth); in get_drawable_size()
/external/chromium-trace/catapult/third_party/flot/
Djquery.flot.js2326 ypos = 1, segmentStart = 0, segmentEnd = 0;
2338 y1 = points[i - ps + ypos],
2339 x2 = points[i], y2 = points[i + ypos];
2346 ypos = 2;
2355 ypos = 1;
Djquery.flot.min.js8ypos=1,segmentStart=0,segmentEnd=0;while(true){if(ps>0&&i>points.length+ps)break;i+=ps;var x1=poin…

12