Searched refs:y2 (Results 126 - 150 of 183) sorted by relevance

12345678

/external/qemu/distrib/sdl-1.2.15/src/video/windib/
H A DSDL_dibvideo.c1438 int x1, y1, x2, y2, area; local
1443 y2 = mrect->bottom;
1455 if (y2 > data->wrect.bottom)
1456 y2 = data->wrect.bottom;
1458 if (x1 >= x2 || y1 >= y2)
1461 area = (x2-x1)*(y2-y1);
/external/skia/tests/
H A DAAClipTest.cpp172 static void icubicTo(SkPath& path, int x0, int y0, int x1, int y1, int x2, int y2) { argument
175 SkIntToScalar(x2), SkIntToScalar(y2));
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DTransformationMatrix.h123 void map(double x, double y, double& x2, double& y2) const { multVecMatrix(x, y, x2, y2); }
H A DTransformationMatrix.cpp715 double y2 = y*y; local
718 mat.m_matrix[0][0] = 1.0f - 2.0f * (y2 + z2) * sinA2;
726 mat.m_matrix[2][2] = 1.0f - 2.0f * (x2 + y2) * sinA2;
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebThemeControlDRTWin.cpp143 int x2, int y2,
154 path.lineTo(SkIntToScalar(x2), SkIntToScalar(y2));
141 triangle(int x0, int y0, int x1, int y1, int x2, int y2, SkColor color) argument
/external/skia/src/core/
H A DSkPath.cpp490 void SkPath::quadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) { argument
497 pts[1].set(x2, y2);
505 void SkPath::rQuadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) { argument
508 this->quadTo(pt.fX + x1, pt.fY + y1, pt.fX + x2, pt.fY + y2);
511 void SkPath::cubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, argument
519 pts[1].set(x2, y2);
528 void SkPath::rCubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, argument
532 this->cubicTo(pt.fX + x1, pt.fY + y1, pt.fX + x2, pt.fY + y2,
896 void SkPath::arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, argument
907 (x1 == x2 && y1 == y2) ||
[all...]
/external/chromium/chrome/browser/resources/ntp/
H A Dmost_visited.js369 var y2 = y * z2 / z;
373 style.top = y2 + 'px';
/external/libvpx/vp8/encoder/arm/armv6/
H A Dvp8_fast_quantize_b_armv6.asm80 pkhtb r10, r12, r10, asr #16 ; [y3 | y2]
81 eor r10, r10, r11 ; [(y3 ^ sz3) | (y2 ^ sz2)]
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DAndroidAnimation.cpp144 bezierFunction->y2());
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DLegacyCACFLayerTreeHost.cpp280 rect.y2 = rect.y1 + r->size.height;
/external/freetype/src/smooth/
H A Dftgrays.c601 TCoord y2 )
616 if ( y1 == y2 )
626 delta = y2 - y1;
635 p = ( ONE_PIXEL - fx1 ) * ( y2 - y1 );
641 p = fx1 * ( y2 - y1 );
664 p = ONE_PIXEL * ( y2 - y1 + delta );
693 delta = y2 - y1;
/external/qemu/
H A Dconsole.c603 int y1, y2; local
612 y2 = y1 - s->y_displayed;
613 if (y2 < 0)
614 y2 += s->total_height;
615 if (y2 < s->height) {
617 vga_putcharxy(s->ds, x, y2, c->ch,
619 invalidate_xy(s, x, y2);
/external/webkit/Source/WebCore/rendering/
H A DRenderTableCell.cpp847 int y2; member in struct:WebCore::CollapsedBorder
859 int x1, int y1, int x2, int y2, EBorderStyle borderStyle)
868 m_borders[m_count].y2 = y2;
965 drawLineForBoxSide(graphicsContext, border->x1, border->y1, border->x2, border->y2, border->side,
858 addBorder(const CollapsedBorderValue& borderValue, BoxSide borderSide, bool shouldPaint, int x1, int y1, int x2, int y2, EBorderStyle borderStyle) argument
H A DRenderBoxModelObject.cpp1802 int y2 = ty + h; local
1805 y2 -= border.radii().bottomLeft().height();
1808 drawLineForBoxSide(graphicsContext, tx, y, tx + style->borderLeftWidth(), y2, BSLeft, leftColor, leftStyle,
1871 int y2 = ty + h; local
1874 y2 -= border.radii().bottomRight().height();
1877 drawLineForBoxSide(graphicsContext, tx + w - style->borderRightWidth(), y, tx + w, y2, BSRight, rightColor, rightStyle,
/external/opencv/otherlibs/highgui/
H A Dgrfmt_jpeg.cpp1144 int x2, y2, x, y, xc; local
1171 y2 = v[0];
1174 if( y1 + y2 > m_height ) y2 = m_height - y1;
1181 for( y = 0; y < y2; y++, data1 += step, cmp += h[0] )
1202 for( y = 0; y < y2; y++, data1 += step, cmp += h[0] )
/external/opencv/cv/src/
H A Dcvgeometry.cpp115 double x2, double dx2, double y2, double dy2, double *t2 )
122 *t2 = ((x2 - x1) * dy1 - (y2 - y1) * dx1) / d;
114 icvIntersectLines( double x1, double dx1, double y1, double dy1, double x2, double dx2, double y2, double dy2, double *t2 ) argument
H A Dcvhough.cpp941 int x2 = x1 >> SHIFT, y2 = y1 >> SHIFT;
943 (unsigned)y2 >= (unsigned)arows )
945 adata[y2*astep + x2]++;
H A Dcvmorph.cpp322 int y0, int y1, int y2 )
329 return CvBaseImageFilter::fill_cyclic_buffer( src, src_step, y0, y1, y2 );
332 for( ; buf_count < buf_max_count && y < y2; buf_count++, y++, src += src_step )
H A Dcvshapedescr.cpp143 double y2 = (pt1.y + pt2.y) * 0.5; local
149 if( icvIntersectLines( x1, dx1, y1, dy1, x2, dx2, y2, dy2, &t ) >= 0 )
152 center->y = (float) (y2 + dy2 * t);
/external/proguard/src/proguard/gui/splash/
H A DOverrideGraphics2D.java334 public void drawLine(int x1, int y1, int x2, int y2) argument
336 graphics.drawLine(x1, y1, x2, y2);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTable.java1209 int y2 = y + m_rowHeight * (index2 - index) + m_rowHeight / 2;
1210 gc.drawLine(x, y1, x, y2);
1211 gc.drawLine(x, y2, x + m_rowHeight / 3, y2);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DLODGeomap.java887 float y2 = secondPoint.y - rootPoint.y;
890 y2 *= scale.y;
892 float x3 = (y1 * z2) - (z1 * y2);
894 float z3 = (x1 * y2) - (y1 * x2);
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_glfuncs.h244 SDL_PROC_UNUSED(void,glRectd,(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2))
246 SDL_PROC_UNUSED(void,glRectf,(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2))
248 SDL_PROC_UNUSED(void,glRecti,(GLint x1, GLint y1, GLint x2, GLint y2))
250 SDL_PROC_UNUSED(void,glRects,(GLshort x1, GLshort y1, GLshort x2, GLshort y2))
/external/v8/test/mjsunit/
H A Dlarge-object-allocation.js108 this.y2 = i;
/external/webkit/Source/WebKit/android/plugins/
H A Dandroid_npapi.h346 float x2, float y2);

Completed in 912 milliseconds

12345678