/external/jmonkeyengine/engine/src/test/jme3test/batching/ |
D | TestBatchNodeCluster.java | 194 int ypos = yPosition.get(yPosition.size() - 1); in randomize() local 218 if (y == 0 && ypos < yLimitf && getym(lineLength) > ypos - 2) { in randomize() 219 y = ypos + 2; in randomize() 220 } else if (y == 1 && ypos > yLimits && getym(lineLength) < ypos + 2) { in randomize() 221 y = ypos - 2; in randomize() 222 … } else if (y == 2 && getym(lineLength) > ypos - 2 && getym(lineLength) < ypos + 2) { in randomize() 223 y = ypos; in randomize() 225 if (ypos >= yLimitf) { in randomize() 226 y = ypos - 2; in randomize() 227 } else if (ypos <= yLimits) { in randomize() [all …]
|
/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 | 496 SkScalar ypos = SkIntToScalar(height); in DEF_TEST() local 499 untiledCanvas.drawText(text, strlen(text), 0, ypos, paint); in DEF_TEST() 506 tiledCanvas.drawText(text, strlen(text), 0, ypos, paint); in DEF_TEST()
|
/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 | 481 WORD32 ypos = ps_codec->i4_disp_ht - 32 - LOGO_HT; in ihevcd_decode() local 483 if(ypos < 0) in ihevcd_decode() 484 ypos = 0; in ihevcd_decode() 493 ypos, in ihevcd_decode() 822 WORD32 ypos = ps_codec->i4_disp_ht - 32 - LOGO_HT; in ihevcd_decode() local 824 if(ypos < 0) in ihevcd_decode() 825 ypos = 0; in ihevcd_decode() 834 ypos, in ihevcd_decode()
|
/external/jpeg/ |
D | 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/pdfium/core/src/fxcodec/libjpeg/ |
D | fpdfapi_jccoefct.c | 151 JDIMENSION ypos, xpos; in compress_data() local 174 ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */ in compress_data() 181 ypos, xpos, (JDIMENSION) blockcnt); in compress_data() 199 ypos += DCTSIZE; 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/linux-tools-perf/src/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
D | SchedGui.py | 150 (xpos, ypos) = self.scroll.GetViewStart() 152 …scale, self.width_virtual / self.scroll_scale, self.height_virtual / self.scroll_scale, xpos, ypos)
|
/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/libvncserver/x11vnc/ |
D | scan.c | 2491 unsigned char rows, cols, xpos, ypos; in snap_vcsa_rawfb() local 2558 ypos = (unsigned char) buf[3]; in snap_vcsa_rawfb() 2560 if (db) fprintf(stderr, "rows=%d cols=%d xpos=%d ypos=%d Bpp=%d\n", rows, cols, xpos, ypos, Bpp); in snap_vcsa_rawfb() 2589 xpos = ypos; in snap_vcsa_rawfb() 2590 ypos = tc; in snap_vcsa_rawfb() 2629 } else if (ix == xpos && iy == ypos) { in snap_vcsa_rawfb() 2648 if (ix == xpos && iy == ypos) { in snap_vcsa_rawfb() 2674 prev_ypos = ypos; in snap_vcsa_rawfb()
|
/external/kernel-headers/original/uapi/drm/ |
D | vmwgfx_drm.h | 520 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/robolectric/lib/main/ |
D | android.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/android/
com/ ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | findbugs.jar | META-INF/
META-INF/MANIFEST.MF
default.xsl
edu/
edu/umd ... |