Searched defs:dy (Results 501 - 525 of 554) sorted by relevance

<<212223

/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A Ddsa_new.cpp916 const TInt dy = aRect.iBr.iY - aRect.iTl.iY; local
918 aRect.iBr.iX = aRect.iTl.iX + dy;
/external/skia/experimental/Intersection/
H A DSimplify.cpp673 // given angles of {dx dy ddx ddy dddx dddy} sort them
695 double y = dy();
696 double ry = rh.dy();
791 double dx, dy, dist; local
796 dy = loc.y - ray[0].y;
797 dist = dx * dx + dy * dy;
805 dy = loc.y - ray[0].y;
806 dist = dx * dx + dy * dy;
818 double dy() const { function in class:Angle
[all...]
/external/skia/src/core/
H A DSkMatrix.cpp236 void SkMatrix::setTranslate(SkScalar dx, SkScalar dy) { argument
237 if (dx || dy) {
239 fMat[kMTransY] = dy;
251 void SkMatrix::preTranslate(SkScalar dx, SkScalar dy) { argument
252 if (!dx && !dy) {
258 m.setTranslate(dx, dy);
261 fMat[kMTransX] += sdot(fMat[kMScaleX], dx, fMat[kMSkewX], dy);
262 fMat[kMTransY] += sdot(fMat[kMSkewY], dx, fMat[kMScaleY], dy);
267 void SkMatrix::postTranslate(SkScalar dx, SkScalar dy) { argument
268 if (!dx && !dy) {
1245 SkFixed dx, dy; local
[all...]
H A DSkAAClip.cpp506 int dy = yoff[skip - 1].fY + 1; local
508 SkASSERT(yoff[i].fY >= dy);
509 yoff[i].fY -= dy;
515 fBounds.fTop += dy;
1737 bool SkAAClip::translate(int dx, int dy, SkAAClip* dst) const { argument
1752 dst->fBounds.offset(dx, dy);
1936 int dy = lastY - y + 1; local
1937 if (dy > height) {
1938 dy = height;
1940 height -= dy;
[all...]
/external/skia/src/effects/
H A DSkBlurMaskFilter.cpp477 const SkScalar dy = SkIntToScalar(innerIR.height() - smallH); local
478 if (dx < 0 || dy < 0) {
484 smallR[0].set(rects[0].left(), rects[0].top(), rects[0].right() - dx, rects[0].bottom() - dy);
490 rects[1].right() - dx, rects[1].bottom() - dy);
/external/skia/src/gpu/
H A DGrContext.cpp283 SkFixed dy = (srcH << 16) / dstH; local
285 SkFixed y = dy >> 1;
296 y += dy;
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp1148 int dy = SkFixedToFDot6(glyph->getSubYFixed()); local
1149 // negate dy since freetype-y-goes-up and skia-y-goes-down
1151 bbox->yMin -= dy;
1153 bbox->yMax -= dy;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp806 void CanvasRenderingContext2D::transform(float m11, float m12, float m21, float m22, float dx, float dy) argument
814 if (!std::isfinite(m11) | !std::isfinite(m21) | !std::isfinite(dx) | !std::isfinite(m12) | !std::isfinite(m22) | !std::isfinite(dy))
817 AffineTransform transform(m11, m12, m21, m22, dx, dy);
859 void CanvasRenderingContext2D::setTransform(float m11, float m12, float m21, float m22, float dx, float dy) argument
865 if (!std::isfinite(m11) | !std::isfinite(m21) | !std::isfinite(dx) | !std::isfinite(m12) | !std::isfinite(m22) | !std::isfinite(dy))
869 transform(m11, m12, m21, m22, dx, dy);
1475 float dx, float dy, float dw, float dh, ExceptionState& exceptionState)
1480 drawImageInternal(imageSource, sx, sy, sw, sh, dx, dy, dw, dh, exceptionState, op, blendMode, c);
1485 float dx, float dy, float dw, float dh, ExceptionState& exceptionState,
1507 if (!std::isfinite(dx) || !std::isfinite(dy) || !st
1473 drawImage(CanvasImageSource* imageSource, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionState& exceptionState) argument
1483 drawImageInternal(CanvasImageSource* imageSource, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionState& exceptionState, CompositeOperator op, blink::WebBlendMode blendMode, GraphicsContext* c) argument
1568 drawImageFromRect(HTMLImageElement* image, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, const String& compositeOperation) argument
1847 putImageData(ImageData* data, float dx, float dy) argument
1852 putImageData(ImageData* data, float dx, float dy, float dirtyX, float dirtyY, float dirtyWidth, float dirtyHeight) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcalregts.cpp2301 int32_t dy = cal.fieldDifference(date2, UCAL_YEAR, ec); local
2320 (dy2 != dy)){
2330 dy + "y " + dm + "m " + dd + "d");
2335 cal.add(UCAL_YEAR, dy, ec);
2346 dy + "y " + dm + "m " + dd + "d = " +
2352 dy + "y " + dm + "m " + dd + "d = " +
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
H A Dglx_api.c2543 int *dx, int *dy, int *dw, int *dh)
2549 (void) dy;
2542 glXQueryChannelDeltasSGIX(Display *dpy, int screen, int channel, int *dx, int *dy, int *dw, int *dh) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
H A Dfakeglx.c2746 Fake_glXQueryChannelDeltasSGIX(Display *dpy, int screen, int channel, int *dx, int *dy, int *dw, int *dh) argument
2752 (void) dy;
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp2571 st_src_reg result_src, coord, lod_info, projector, dx, dy, offset; local
2619 dy = this->result;
2720 inst = emit(ir, opcode, result_dst, coord, dx, dy);
/external/chromium_org/third_party/skia/src/core/
H A DSkAAClip.cpp546 int dy = yoff[skip - 1].fY + 1; local
548 SkASSERT(yoff[i].fY >= dy);
549 yoff[i].fY -= dy;
555 fBounds.fTop += dy;
1805 bool SkAAClip::translate(int dx, int dy, SkAAClip* dst) const { argument
1820 dst->fBounds.offset(dx, dy);
2004 int dy = lastY - y + 1; local
2005 if (dy > height) {
2006 dy = height;
2008 height -= dy;
[all...]
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFDevice.cpp1074 SkScalar dx = 0, dy = 0; local
1079 dy = SkIntToScalar(srcIR.fTop);
1081 if (dx || dy) {
1082 matrix.preTranslate(dx, dy);
/external/deqp/modules/glshared/
H A DglsTextureTestUtil.cpp249 float dy = (float)dstSize.y(); local
251 return computeLodFromDerivates(mode, dux/dx, duy/dy);
289 float dy = (float)dstSize.y(); local
291 return computeLodFromDerivates(mode, dux/dx, dvx/dx, duy/dy, dvy/dy);
332 float dy = (float)dstSize.y(); local
334 return computeLodFromDerivates(mode, dux/dx, dvx/dx, dwx/dx, duy/dy, dvy/dy, dwy/dy);
/external/icu/icu4c/source/test/intltest/
H A Dcalregts.cpp2301 int32_t dy = cal.fieldDifference(date2, UCAL_YEAR, ec); local
2320 (dy2 != dy)){
2330 dy + "y " + dm + "m " + dd + "d");
2335 cal.add(UCAL_YEAR, dy, ec);
2346 dy + "y " + dm + "m " + dd + "d = " +
2352 dy + "y " + dm + "m " + dd + "d = " +
/external/kernel-headers/original/uapi/linux/
H A Dfb.h342 __u32 dy; member in struct:fb_copyarea
351 __u32 dy; member in struct:fb_fillrect
360 __u32 dy; member in struct:fb_image
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
H A Dglx_api.c2543 int *dx, int *dy, int *dw, int *dh)
2549 (void) dy;
2542 glXQueryChannelDeltasSGIX(Display *dpy, int screen, int channel, int *dx, int *dy, int *dw, int *dh) argument
/external/mesa3d/src/mesa/drivers/x11/
H A Dfakeglx.c2746 Fake_glXQueryChannelDeltasSGIX(Display *dpy, int screen, int channel, int *dx, int *dy, int *dw, int *dh) argument
2752 (void) dy;
/external/mesa3d/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp2571 st_src_reg result_src, coord, lod_info, projector, dx, dy, offset; local
2619 dy = this->result;
2720 inst = emit(ir, opcode, result_dst, coord, dx, dy);
/external/opencv/cvaux/include/
H A Dcvaux.h264 double dy = pt1.y - pt2.y; local
266 return dx*dx + dy*dy;
/external/opencv/cvaux/src/
H A Dcvepilines.cpp1154 double dy = point2.y - point1.y; local
1155 *dist = sqrt( dx*dx + dy*dy );
1164 double dy = point2.y - point1.y; local
1166 *dist = sqrt( dx*dx + dy*dy + dz*dz );
2103 double dy = point.y - tmpPoint.y; local
2104 *dist = sqrt(dx*dx+dy*dy);
2867 double dx,dy,d
[all...]
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text_int.cpp738 FX_FLOAT dx, dy; local
750 dy = (info2.m_OriginY - info1.m_OriginY);
752 if(dy > 0) {
754 } else if (dy < 0) {
760 float a = FXSYS_atan2(dy, dx);
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dopenjpeg.h284 OPJ_UINT32 txS,txE,tyS,tyE,dx,dy; member in struct:opj_poc
364 /** subsampling value for dy */
553 OPJ_UINT32 dy; member in struct:opj_image_comp
612 OPJ_UINT32 dy; member in struct:opj_image_comptparm
/external/pixman/pixman/
H A Dpixman.h1009 pixman_fixed_t dy; member in struct:pixman_edge

Completed in 1787 milliseconds

<<212223