HomeSort by relevance Sort by last modified time
    Searched refs:y2 (Results 26 - 50 of 385) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTimingFunctionValue.h 37 static PassRefPtrWillBeRawPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2)
39 return adoptRefWillBeNoop(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2));
47 double y2() const { return m_y2; } function in class:blink::CSSCubicBezierTimingFunctionValue
54 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2)
59 , m_y2(y2)
  /external/chromium_org/third_party/WebKit/Source/core/paint/
ObjectPainter.h 27 static void drawLineForBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2, BoxSide, Color, EBorderStyle, int adjbw1, int adjbw2, bool antialias = false);
28 static void drawDashedOrDottedBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2,
30 static void drawDoubleBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2,
32 static void drawRidgeOrGrooveBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2,
34 static void drawSolidBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2,
ObjectPainter.cpp 96 void ObjectPainter::drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2,
103 thickness = y2 - y1;
107 length = y2 - y1;
124 drawDashedOrDottedBoxSide(graphicsContext, x1, y1, x2, y2, side,
128 drawDoubleBoxSide(graphicsContext, x1, y1, x2, y2, length, side, color,
133 drawRidgeOrGrooveBoxSide(graphicsContext, x1, y1, x2, y2, side, color,
147 drawSolidBoxSide(graphicsContext, x1, y1, x2, y2, side, color, adjacentWidth1, adjacentWidth2, antialias);
152 void ObjectPainter::drawDashedOrDottedBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2,
168 graphicsContext->drawLine(IntPoint(x1, (y1 + y2) / 2), IntPoint(x2, (y1 + y2) / 2))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.h 50 bool isWithinYRange(float y1, float y2) const { return y1 <= minY() && y2 >= maxY(); }
51 bool overlapsYRange(float y1, float y2) const { return y2 >= minY() && y1 <= maxY(); }
53 FloatShapeInterval clippedEdgeXRange(float y1, float y2) const;
RectangleShape.cpp 63 float y2 = (logicalTop + logicalHeight).toFloat(); local
65 if (y2 < bounds.y() || y1 >= bounds.maxY())
75 if (y2 < bounds.y() + marginRadiusY) {
76 float yi = y2 - bounds.y() - marginRadiusY;
  /external/clang/test/SemaTemplate/
partial-spec-instantiate.cpp 37 int f(Y<int*> y, Y<float*> y2) {
38 return y.m + y2.m;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_convolve3x3.rs 29 uint32_t y2 = max((int32_t)y-1, 0);
37 float4 p20 = convert_float4(rsGetElementAt_uchar4(gIn, x1, y2));
38 float4 p21 = convert_float4(rsGetElementAt_uchar4(gIn, x, y2));
39 float4 p22 = convert_float4(rsGetElementAt_uchar4(gIn, x2, y2));
70 uint32_t y2 = max((int32_t)y-1, 0);
78 float3 p20 = convert_float3(rsGetElementAt_uchar3(gIn, x1, y2));
79 float3 p21 = convert_float3(rsGetElementAt_uchar3(gIn, x, y2));
80 float3 p22 = convert_float3(rsGetElementAt_uchar3(gIn, x2, y2));
111 uint32_t y2 = max((int32_t)y-1, 0);
119 float2 p20 = convert_float2(rsGetElementAt_uchar2(gIn, x1, y2));
    [all...]
intrinsic_convolve5x5.rs 35 uint32_t y2 = y;
51 float4 p2 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y2)) * gCoeffs[10]
52 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y2)) * gCoeffs[11]
53 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y2)) * gCoeffs[12]
54 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y2)) * gCoeffs[13]
55 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y2)) * gCoeffs[14];
82 uint32_t y2 = y;
98 float3 p2 = convert_float3(rsGetElementAt_uchar3(gIn, x0, y2)) * gCoeffs[10]
99 + convert_float3(rsGetElementAt_uchar3(gIn, x1, y2)) * gCoeffs[11]
100 + convert_float3(rsGetElementAt_uchar3(gIn, x2, y2)) * gCoeffs[12
    [all...]
  /external/chromium_org/cc/animation/
timing_function.cc 16 double x1, double y1, double x2, double y2) {
17 return make_scoped_ptr(new CubicBezierTimingFunction(x1, y1, x2, y2));
23 double y2)
24 : bezier_(x1, y1, x2, y2) {}
  /external/chromium_org/third_party/skia/include/utils/
SkCubicInterval.h 14 SkScalar x2, SkScalar y2,
  /external/chromium_org/third_party/skia/src/utils/
SkCubicInterval.cpp 50 SkScalar x2, SkScalar y2,
65 y2 *= 3;
66 return eval_cubic(y1, y2 - 2*y1, y1 - y2 + SK_Scalar1, t);
  /external/chromium_org/ui/gfx/geometry/
cubic_bezier.h 15 CubicBezier(double x1, double y1, double x2, double y2);
  /external/clang/test/SemaCXX/
cxx0x-class.cpp 26 static constexpr float y2 = foo(); // expected-error {{must be initialized by a constant expression}} expected-note {{non-constexpr function 'foo'}} member in struct:rdar8367341::A
warn-literal-conversion.cpp 10 int y2 = (((1.2222F))); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}} local
  /development/perftests/panorama/feature_mos/src/mosaic/
Geometry.h 66 double x2, double y2,
71 centY = (y0 + y1 + y2) / 3.0;
74 if (y0 == y2)
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3
102 // Calculate line equation from x0,y0 to x2,y2
104 double dy = y2 - y0;
129 inline void FindQuadCentroid(double x0, double y0, double x1, double y1, double x2, double y2, double x3, double y3,
141 // The quad is split from x0,y0 to x2,y2
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftbbox.c 95 /* y2 :: The coordinate of the control point. */
106 FT_Pos y2,
111 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
116 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
121 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
123 y2 = y1;
125 y3 = y2;
130 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 )
    [all...]
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 83 Packet4f y, y1, y2; local
86 y2 = pmadd(p4f_cephes_log_p6, x, p4f_cephes_log_p7);
89 y2 = pmadd(y2, x, p4f_cephes_log_p8);
91 y = pmadd(y, x3, y2);
98 y2 = pmul(e, p4f_cephes_log_q2);
100 x = padd(x, y2);
342 Packet4f y2 = p4f_sincof_p0; local
343 y2 = pmadd(y2, z, p4f_sincof_p1)
430 Packet4f y2 = p4f_sincof_p0; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathElement.idl 45 float x, float y, float x1, float y1, float x2, float y2);
47 float x, float y, float x1, float y1, float x2, float y2);
68 float x, float y, float x2, float y2);
70 float x, float y, float x2, float y2);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
arc.h 50 VGfloat x1, y1, x2, y2; member in struct:arc
58 VGfloat x2, VGfloat y2,
bezier.h 35 float x2, y2; member in struct:bezier
52 float x2, float y2,
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.h 50 VGfloat x1, y1, x2, y2; member in struct:arc
58 VGfloat x2, VGfloat y2,
bezier.h 35 float x2, y2; member in struct:bezier
52 float x2, float y2,
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_log10.c 44 double f,hfsq,hi,lo,r,val_hi,val_lo,w,y,y2; local
76 y2 = y*log10_2hi;
85 w = y2 + val_hi;
86 val_lo += (y2 - w) + val_hi;
  /external/chromium_org/cc/blink/
web_filter_animation_curve_impl.h 38 double y2);
  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticParameterization.h 10 double y2() const { return p[yy_coeff]; } function in class:QuadImplicitForm

Completed in 188 milliseconds

12 3 4 5 6 7 8 91011>>