/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_skin_detection.c | 64 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/ |
D | Puzzle15Activity.java | 125 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/ |
D | accum.c | 190 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/ |
D | SVGDeviceTest.cpp | 71 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()
|
D | ImageFilterTest.cpp | 516 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/ |
D | nldiffusion_functions.cpp | 381 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/ |
D | aes-gcm.c | 148 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/ |
D | ihevcd_decode.c | 490 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/ |
D | tif_jpeg.c | 1351 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/ |
D | fpdfapi_jccoefct.c | 150 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/ |
D | jccoefct.c | 149 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/ |
D | jccoefct.c | 151 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/ |
D | GrRectanizer_skyline.cpp | 51 bool GrRectanizerSkyline::rectangleFits(int skylineIndex, int width, int height, int* ypos) const { in rectangleFits() 70 *ypos = y; in rectangleFits()
|
/external/pdfium/third_party/libtiff/ |
D | tif_jpeg.c | 1422 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/ |
D | testAPI.cc | 166 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/ |
D | st_cb_bitmap.c | 90 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/ |
D | video.h | 173 __u32 ypos; /* 23-22 auto action mode */ member
|
/external/libdrm/include/drm/ |
D | vmwgfx_drm.h | 558 int32_t ypos; member
|
/external/mesa3d/src/gallium/winsys/svga/drm/ |
D | vmwgfx_drm.h | 497 int32_t ypos; member
|
/external/kernel-headers/original/uapi/drm/ |
D | vmwgfx_drm.h | 525 int32_t ypos; member
|
/external/mesa3d/src/gallium/state_trackers/glx/xlib/ |
D | xm_api.c | 276 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/ |
D | egl_glx.c | 816 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/ |
D | xm_api.c | 227 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/ |
D | jquery.flot.js | 2326 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;
|
D | jquery.flot.min.js | 8 …ypos=1,segmentStart=0,segmentEnd=0;while(true){if(ps>0&&i>points.length+ps)break;i+=ps;var x1=poin…
|