HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 201 - 225 of 468) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/skia/legacy/src/core/
SkRegion_path.cpp 331 void set(int x, int y0, int y1) {
332 SkASSERT(y0 != y1);
336 fY1 = (SkRegion::RunType)(y1);
357 int y1 = base->fY1; local
376 if ((e->fFlags & Edge::kY0Link) == 0 && y1 == e->fY0) {
SkBitmapProcState_sample.h 185 unsigned y1 = data & 0x3FFF; local
196 const SRCTYPE* SK_RESTRICT row1 = (const SRCTYPE*)(srcAddr + y1 * rb);
  /external/skia/src/core/
SkRegion_path.cpp 346 void set(int x, int y0, int y1) {
347 SkASSERT(y0 != y1);
351 fY1 = (SkRegion::RunType)(y1);
372 int y1 = base->fY1; local
391 if ((e->fFlags & Edge::kY0Link) == 0 && y1 == e->fY0) {
SkPath.cpp 797 void SkPath::quadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) {
804 pts[0].set(x1, y1);
812 void SkPath::rQuadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) {
815 this->quadTo(pt.fX + x1, pt.fY + y1, pt.fX + x2, pt.fY + y2);
818 void SkPath::cubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
826 pts[0].set(x1, y1);
835 void SkPath::rCubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
839 this->cubicTo(pt.fX + x1, pt.fY + y1, pt.fX + x2, pt.fY + y2,
    [all...]
  /external/tremolo/Tremolo/
floor1.c 205 int render_point(int x0,int x1,int y0,int y1,int x){
207 y1&=0x7fff;
210 int dy=y1-y0;
225 static void render_line(int n,int x0,int x1,int y0,int y1,ogg_int32_t *d){
237 dy=y1-y0;
  /external/webkit/Source/WebCore/platform/android/
RenderThemeAndroid.cpp 102 static void drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1,
113 graphicsContext->drawRect(IntRect(x1, y1, x2 - x1, y2 - y1));
120 quad[0] = FloatPoint(x1 + max(-adjacentWidth1, 0), y1);
123 quad[3] = FloatPoint(x2 - max(-adjacentWidth2, 0), y1);
126 quad[0] = FloatPoint(x1 + max(adjacentWidth1, 0), y1);
129 quad[3] = FloatPoint(x2 - max(adjacentWidth2, 0), y1);
132 quad[0] = FloatPoint(x1, y1 + max(-adjacentWidth1, 0));
135 quad[3] = FloatPoint(x2, y1 + max(adjacentWidth1, 0));
138 quad[0] = FloatPoint(x1, y1 + max(adjacentWidth1, 0))
    [all...]
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 285 magtype x1 = (magtype)x[i+1], y1 = (magtype)y[i+1]; \
288 x1 = x1*x1 + y1*y1; \
292 x1 = (magtype)x[i+3], y1 = (magtype)y[i+3]; \
294 x1 = x1*x1 + y1*y1; \
935 double y0, y1, y2, y3; local
1397 double y0, y1, y2, y3; local
1497 double y0, y1, y2, y3; local
    [all...]
  /external/opencv/cv/src/
cvpyrsegmentation.cpp 52 ushort x1, y1, x2, y2; member in struct:_CvRect16u
    [all...]
cvmotempl.cpp 472 int x1, y1; local
479 for( y1 = 0; y1 < comp.rect.height; y1++ )
482 (comp.rect.y + y1)*mask->step) + comp.rect.x;
484 (comp.rect.y + y1+1)*mask8u->step + comp.rect.x+1;
cvtemplmatch.cpp 208 int x1 = MAX( 0, x0 ), y1 = MAX( 0, y0 ), x2, y2; local
221 src = cvGetSubRect( img, &sstub, cvRect(x1,y1,x2-x1,y2-y1) );
226 if( x2 - x1 < isz.width || y2 - y1 < isz.height )
228 cvRect( x1 - x0, y1 - y0, x2 - x1, y2 - y1 ));
234 planes[i] = cvInitMatHeader( &temp, y2 - y1, x2 - x1, depth, _buf );
244 cvCopyMakeBorder( dst1, dst, cvPoint(x1 - x0, y1 - y0), IPL_BORDER_REPLICATE );
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java 704 float x0, x1, y0, y1;
711 x1 = x0; y1 = level * r.bottom;
715 x1 = level * r.left; y1 = level * r.bottom;
719 x1 = level * r.left; y1 = y0;
723 x1 = level * r.left; y1 = level * r.top;
727 x1 = x0; y1 = level * r.top;
731 x1 = level * r.right; y1 = level * r.top;
735 x1 = level * r.right; y1 = y0;
739 x1 = level * r.right; y1 = level * r.bottom;
743 mFillPaint.setShader(new LinearGradient(x0, y0, x1, y1,
    [all...]
  /frameworks/base/libs/hwui/
FontRenderer.cpp 448 void FontRenderer::appendMeshQuadNoClip(float x1, float y1, float u1, float v1,
456 mCurrentCacheTexture->addQuad(x1, y1, u1, v1, x2, y2, u2, v2,
460 void FontRenderer::appendMeshQuad(float x1, float y1, float u1, float v1,
465 (x1 > mClip->right || y1 < mClip->top || x2 < mClip->left || y4 > mClip->bottom)) {
469 appendMeshQuadNoClip(x1, y1, u1, v1, x2, y2, u2, v2, x3, y3, u3, v3, x4, y4, u4, v4, texture);
475 mBounds->bottom = fmax(mBounds->bottom, y1);
483 void FontRenderer::appendRotatedMeshQuad(float x1, float y1, float u1, float v1,
487 appendMeshQuadNoClip(x1, y1, u1, v1, x2, y2, u2, v2, x3, y3, u3, v3, x4, y4, u4, v4, texture);
491 mBounds->top = fmin(mBounds->top, fmin(y1, fmin(y2, fmin(y3, y4))));
493 mBounds->bottom = fmax(mBounds->bottom, fmax(y1, fmax(y2, fmax(y3, y4))))
    [all...]
  /external/icu4c/i18n/
nfrs.cpp 67 int64_t y1 = y; local
70 while ((x1 & 1) == 0 && (y1 & 1) == 0) {
73 y1 >>= 1;
78 t = -y1;
90 y1 = -t;
92 t = x1 - y1;
  /frameworks/base/core/jni/android/graphics/
Path.cpp 119 static void quadTo__FFFF(JNIEnv* env, jobject clazz, SkPath* obj, jfloat x1, jfloat y1, jfloat x2, jfloat y2) {
121 SkScalar y1_ = SkFloatToScalar(y1);
135 static void cubicTo__FFFFFF(JNIEnv* env, jobject clazz, SkPath* obj, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) {
137 SkScalar y1_ = SkFloatToScalar(y1);
145 static void rCubicTo(JNIEnv* env, jobject clazz, SkPath* obj, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) {
147 SkScalar y1_ = SkFloatToScalar(y1);
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.h 145 void arcTo(float x0, float y0, float x1, float y1, float radius, ExceptionCode&);
193 PassRefPtr<CanvasGradient> createLinearGradient(float x0, float y0, float x1, float y1, ExceptionCode&);
194 PassRefPtr<CanvasGradient> createRadialGradient(float x0, float y0, float r0, float x1, float y1, float r1, ExceptionCode&);
  /external/clang/test/SemaTemplate/
instantiate-method.cpp 82 int *y1 = x1; // expected-error{{no viable conversion}} local
  /external/skia/include/core/
SkPath.h 390 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
394 @param y1 The y-coordinate of the control point on a quadratic curve
398 void quadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2);
427 (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
431 @param y1 The y-coordinate of the 1st control point on a cubic curve
437 void cubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
469 void rCubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
490 void arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
WebThemeControlDRTWin.cpp 132 void WebThemeControlDRTWin::line(int x0, int y0, int x1, int y1, SkColor color)
137 SkIntToScalar(x1), SkIntToScalar(y1),
142 int x1, int y1,
153 path.lineTo(SkIntToScalar(x1), SkIntToScalar(y1));
  /frameworks/rs/driver/
rsdGL.h 93 float x1, float y1, float z1, float u1, float v1,
  /external/jmonkeyengine/engine/src/android/jme3tools/android/
Fixed.java 315 public static int hyp(int x1, int y1, int x2, int y2) {
319 if ((y2 -= y1) < 0) {
  /external/skia/tests/
ClipCubicTest.cpp 60 float x1, float y1,
65 crv[1].fX = SkFloatToScalar(x1); crv[1].fY = SkFloatToScalar(y1);
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-cube.js 20 var y1 = From.V[1];
23 var dy = Math.abs(y2 - y1);
25 var y = y1;
35 if (y2 >= y1) { IncY1 = 1; IncY2 = 1; }
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-cube.js 20 var y1 = From.V[1];
23 var dy = Math.abs(y2 - y1);
25 var y = y1;
35 if (y2 >= y1) { IncY1 = 1; IncY2 = 1; }
  /external/webkit/Source/WebCore/html/
HTMLAreaElement.cpp 161 int y1 = m_coords[3].calcMinValue(height); local
162 path.addRect(FloatRect(x0, y0, x1 - x0, y1 - y0));
  /external/webkit/Source/WebKit/android/plugins/
ANPCanvasInterface.cpp 108 float x1, float y1, const ANPPaint* paint) {
110 SkFloatToScalar(x1), SkFloatToScalar(y1), *paint);

Completed in 591 milliseconds

1 2 3 4 5 6 7 891011>>