Searched defs:x1 (Results 201 - 225 of 253) sorted by relevance

1234567891011

/external/opencv/otherlibs/highgui/
H A Dgrfmt_jpeg.cpp665 int x0 = src[5], x1 = src[3]; local
668 int x4 = x0 + x1; x0 -= x1;
670 x1 = x2 + x3; x2 -= x3;
671 x3 = x1 + x4; x1 -= x4;
676 x1 = descale( x1*C1_414, fixb);
679 x1 -= x0;
680 x2 += x1;
717 int x0 = work[8*5], x1 = work[8*3]; local
1112 int i, s = 0, mcu, x1 = 0, y1 = 0; local
1522 int x0 = src[0], x1 = src[7]; local
1569 int x0 = work[8*0], x1 = work[8*7]; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbvideo.c1514 int x1, y1, x2, y2; local
1522 x1 = rects[i].x;
1524 x2 = x1 + rects[i].w;
1527 if (x1 < 0) {
1528 x1 = 0;
1529 } else if (x1 > width) {
1530 x1 = width;
1547 if (x2 <= x1 || y2 <= y1) {
1553 sha_x1 = scr_x1 = x1;
1564 scr_y2 = width - x1;
[all...]
/external/skia/src/core/
H A DSkMatrix.cpp1428 SkFixed x0, y0, x1, y1, x2, y2; local
1432 x1 = srcPt[2].fX - srcPt[1].fX;
1439 SkFixed denom = SkMulDiv(x1, y2, x2) - y1;
1443 a1 = SkFractDiv(SkMulDiv(x0 - x1, y2, x2) - y0 + y1, denom);
1445 SkFixed denom = x1 - SkMulDiv(y1, x2, y2);
1449 a1 = SkFractDiv(x0 - x1 - SkMulDiv(y0 - y1, x2, y2), denom);
1452 /* check if abs(x1) > abs(y1) */
1453 if ( x1 > 0 ? y1 > 0 ? x1 > y1 : x1 >
1561 float x0, y0, x1, y1, x2, y2; local
[all...]
H A DSkPath.cpp490 void SkPath::quadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) { argument
496 pts[0].set(x1, y1);
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
518 pts[0].set(x1, y1);
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
906 if ((x1
[all...]
H A DSkCanvas.cpp1834 void SkCanvas::drawLine(SkScalar x0, SkScalar y0, SkScalar x1, SkScalar y1, argument
1839 pts[1].set(x1, y1);
/external/svox/pico/lib/
H A Dpicocep.c108 #define POW1 (0x1)
196 picoos_int32 xi[5], x1[2], x2[3], xm[3], xn[2]; member in struct:cep_subobj
822 cep->x1[0] = -1;
823 cep->x1[1] = 2;
984 x = cep->x1;
H A Dpicofftsg.c330 #define POW1 (0x1)
372 static PICOFFTSG_FFTTYPE picofftsg_mult_w_w(PICOFFTSG_FFTTYPE x1, PICOFFTSG_FFTTYPE y1);
373 static PICOFFTSG_FFTTYPE picofftsg_mult_w_a(PICOFFTSG_FFTTYPE x1, PICOFFTSG_FFTTYPE y1);
591 static PICOFFTSG_FFTTYPE picofftsg_mult_w_w(PICOFFTSG_FFTTYPE x1, PICOFFTSG_FFTTYPE y1) argument
594 x = x1>=0 ? x1>>15 : -((-x1)>>15);
599 static PICOFFTSG_FFTTYPE picofftsg_mult_w_a(PICOFFTSG_FFTTYPE x1, PICOFFTSG_FFTTYPE y1) argument
604 x = x1>=0 ? x1>>1
[all...]
/external/v8/test/cctest/
H A Dtest-heap-profiler.cc99 "function C2(x) { this.x1 = x; this.x2 = x; this[1] = x; }\n"
147 const v8::HeapGraphNode* x1 = local
149 CHECK_NE(NULL, x1);
156 CHECK_EQ(x1->GetSelfSize(), x1->GetRetainedSize());
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp813 void CanvasRenderingContext2D::arcTo(float x1, float y1, float x2, float y2, float r, ExceptionCode& ec) argument
816 if (!isfinite(x1) | !isfinite(y1) | !isfinite(x2) | !isfinite(y2) | !isfinite(r))
827 FloatPoint p1 = FloatPoint(x1, y1);
833 lineTo(x1, y1);
1007 // If x0 = x1 and y0 = y1, then the linear gradient must paint nothing
1008 // If x0 = x1 and y0 = y1 and r0 = r1, then the radial gradient must paint nothing
1479 PassRefPtr<CanvasGradient> CanvasRenderingContext2D::createLinearGradient(float x0, float y0, float x1, float y1, ExceptionCode& ec) argument
1481 if (!isfinite(x0) || !isfinite(y0) || !isfinite(x1) || !isfinite(y1)) {
1486 RefPtr<CanvasGradient> gradient = CanvasGradient::create(FloatPoint(x0, y0), FloatPoint(x1, y1));
1491 PassRefPtr<CanvasGradient> CanvasRenderingContext2D::createRadialGradient(float x0, float y0, float r0, float x1, floa argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp157 double x1 = 0; local
161 cairo_stroke_extents(cairoContext, &x0, &y0, &x1, &y1);
162 solidFigureExtents = FloatRect(x0, y0, x1 - x0, y1 - y0);
165 cairo_fill_extents(cairoContext, &x0, &y0, &x1, &y1);
166 FloatRect fillExtents(x0, y0, x1 - x0, y1 - y0);
1072 double x1, y1, x2, y2; local
1073 cairo_clip_extents(cr, &x1, &y1, &x2, &y2);
1074 cairo_rectangle(cr, x1, y1, x2 - x1, y2 - y1);
1107 double x1, y local
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderTableCell.cpp844 int x1; member in struct:WebCore::CollapsedBorder
859 int x1, int y1, int x2, int y2, EBorderStyle borderStyle)
865 m_borders[m_count].x1 = x1;
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
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jar ... .Class class$ (java.lang.String) ClassNotFoundException x1 String x0 } org/mortbay/component/Container$1.class ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jar ... .Class class$ (java.lang.String) ClassNotFoundException x1 String x0 static void " href="/4.2_r1/s? ...
/external/chromium/base/third_party/dmg_fp/
H A Ddtoa.cc974 ULong *x, *x1, *xe, z; variable
986 x1 = b1->x;
988 *x1++ = 0;
996 *x1++ = *x << k | z;
1000 if ((*x1 = z))
1008 *x1++ = *x << k & 0xffff | z;
1012 if (*x1 = z)
1017 *x1++ = *x++;
1637 ULong *x, *x1, *xe, y; variable
1640 x = x1
1671 ULong *x, *x0, x1, x2; variable
[all...]
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit_view_gtk.cc1851 gint x1, x2, y1, y2; local
1854 &x1, &y1);
1860 return gfx::Rect(x1, y1, x2 - x1, y2 - y1);
/external/dropbear/libtommath/pre_gen/
H A Dmpi.c4143 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
4158 if (mp_init_size (&x1, a->used - B) != MP_OKAY)
4175 x1.used = a->used - B;
4195 tmpx = x1.dp;
4207 * upper words x1/y1 must have a known number of digits
4216 if (mp_mul (&x1, &y1, &x1y1) != MP_OKAY)
4217 goto X1Y1; /* x1y1 = x1*y1 */
4219 /* now calc x1+x0 and y1+y0 */
4220 if (s_mp_add (&x1, &x0, &t1) != MP_OKAY)
4221 goto X1Y1; /* t1 = x1
4292 mp_int x0, x1, t1, t2, x0x0, x1x1; local
[all...]
/external/freetype/src/raster/
H A Dftraster.c426 FT_F26Dot6 x1,
1057 /* x1 :: The x-coordinate of the segment's start point. */
1073 Line_Up( RAS_ARGS Long x1, argument
1087 Dx = x2 - x1;
1097 x1 += SMulDiv( Dx, miny - y1, Dy );
1125 x1 += SMulDiv( Dx, ras.precision - f1, Dy );
1169 *top++ = x1;
1171 x1 += Ix;
1176 x1 += Dx;
1196 /* x1
1212 Line_Down( RAS_ARGS Long x1, Long y1, Long x2, Long y2, Long miny, Long maxy ) argument
1948 Long x1, y1, x2, y2, x3, y3; local
2262 Vertical_Sweep_Span( RAS_ARGS Short y, FT_F26Dot6 x1, FT_F26Dot6 x2, PProfile left, PProfile right ) argument
2330 Vertical_Sweep_Drop( RAS_ARGS Short y, FT_F26Dot6 x1, FT_F26Dot6 x2, PProfile left, PProfile right ) argument
2506 Horizontal_Sweep_Span( RAS_ARGS Short y, FT_F26Dot6 x1, FT_F26Dot6 x2, PProfile left, PProfile right ) argument
2549 Horizontal_Sweep_Drop( RAS_ARGS Short y, FT_F26Dot6 x1, FT_F26Dot6 x2, PProfile left, PProfile right ) argument
2810 Horizontal_Gray_Sweep_Span( RAS_ARGS Short y, FT_F26Dot6 x1, FT_F26Dot6 x2, PProfile left, PProfile right ) argument
2827 Horizontal_Gray_Sweep_Drop( RAS_ARGS Short y, FT_F26Dot6 x1, FT_F26Dot6 x2, PProfile left, PProfile right ) argument
2926 Long x1, x2, xs, e1, e2; local
[all...]
/external/opencv/cvaux/src/
H A Dcvepilines.cpp456 double x1,y1,z1; local
458 x1 = camPoint1[0];
604 double x1,y1,z1; local
606 x1 = pointCam1.x;
623 coeffs->Xcoef = -x1 + xA;
624 coeffs->XcoefA = xB + x1 - xA;
625 coeffs->XcoefB = -xA - gamma * x1 + gamma * xA;
641 coeffs->Xcoef = -( -x1 + xA);
642 coeffs->XcoefB = -( xB + x1 - xA);
643 coeffs->XcoefA = -( -xA - gamma * x1
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp90 void map(double x1, double y1, double* x2, double* y2) const argument
92 x1 += m_preShiftX;
94 *x2 = x1 * m_cosA + y1 * m_sinA + m_postShiftX;
95 *y2 = y1 * m_cosA - x1 * m_sinA + m_postShiftY;
97 void map(int x1, int y1, int* x2, int* y2) const argument
99 x1 += m_preShiftX;
101 *x2 = stableRound(x1 * m_cosA + y1 * m_sinA) + m_postShiftX;
102 *y2 = stableRound(y1 * m_cosA - x1 * m_sinA) + m_postShiftY;
397 int x1 = x + transform.m_preShiftX; local
399 int srcX = x1 * cos
412 int x1 = x + transform.m_preShiftX; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-starteam.jar ... .taskdefs.optional.starteam.StarTeamCheckin$1 x1 } org/apache/tools/ant/taskdefs/optional/starteam/StarTeamCheckin.class ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant-commons-net.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/chromium/testing/gtest/test/
H A Dgtest_unittest.cc2389 bool GreaterThan(T1 x1, T2 x2) { argument
2390 return x1 > x2;
2432 const T1& x1, const T2& x2) {
2433 return x1 == x2 ? AssertionSuccess() :
2431 EqualsFormat(const char* , const char* , const T1& x1, const T2& x2) argument
/external/gtest/test/
H A Dgtest_unittest.cc2389 bool GreaterThan(T1 x1, T2 x2) { argument
2390 return x1 > x2;
2432 const T1& x1, const T2& x2) {
2433 return x1 == x2 ? AssertionSuccess() :
2431 EqualsFormat(const char* , const char* , const T1& x1, const T2& x2) argument
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc2632 bool GreaterThan(T1 x1, T2 x2) { argument
2633 return x1 > x2;
2675 const T1& x1, const T2& x2) {
2676 return x1 == x2 ? AssertionSuccess() :
2674 EqualsFormat(const char* , const char* , const T1& x1, const T2& x2) argument

Completed in 709 milliseconds

1234567891011