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

12 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/vp9/common/
vp9_textblit.h 20 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
  /external/skia/src/animator/
SkDrawLine.h 23 SkScalar y1; member in class:SkLine
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_pitch.h 105 Word16 y1[], /* i : Filtered adaptive codebook. */
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_textblit.h 20 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
geometry_utils.h 33 static AK_FORCE_INLINE float getAngle(const int x1, const int y1, const int x2, const int y2) {
35 const int dy = y1 - y2;
50 static AK_FORCE_INLINE int getDistanceInt(const int x1, const int y1, const int x2,
52 return static_cast<int>(hypotf(static_cast<float>(x1 - x2), static_cast<float>(y1 - y2)));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLineElement.idl 28 readonly attribute SVGAnimatedLength y1;
SVGLinearGradientElement.idl 28 readonly attribute SVGAnimatedLength y1;
  /external/chromium_org/third_party/skia/src/svg/
SkSVGLine.cpp 16 SVG_ATTRIBUTE(y1),
26 SVG_ADD_ATTRIBUTE(y1);
  /external/skia/src/svg/
SkSVGLine.cpp 16 SVG_ATTRIBUTE(y1),
26 SVG_ADD_ATTRIBUTE(y1);
  /frameworks/base/graphics/java/android/graphics/
LinearGradient.java 45 @param y1 The y-coordinate for the end of the gradient line
52 public LinearGradient(float x0, float y0, float x1, float y1, int colors[], float positions[],
64 mY1 = y1;
68 init(nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt));
75 @param y1 The y-coordinate for the end of the gradient line
80 public LinearGradient(float x0, float y0, float x1, float y1, int color0, int color1,
86 mY1 = y1;
90 init(nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt));
115 private native long nativeCreate1(float x0, float y0, float x1, float y1,
117 private native long nativeCreate2(float x0, float y0, float x1, float y1,
    [all...]
  /frameworks/av/services/audioflinger/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon18264
51 return (((((p->a * x >> 14) + p->b) * x >> 14) + p->c) * x >> 14) + p->y1;
54 p->y0 = p->y1;
55 p->y1 = p->y2;
58 p->a = (3 * (p->y1 - p->y2) - p->y0 + p->y3) >> 1;
59 p->b = (p->y2 << 1) + p->y0 - (((5 * p->y1 + p->y3)) >> 1);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.cpp 54 static inline bool overlapsYRange(const FloatRect& rect, float y1, float y2) { return !rect.isEmpty() && y2 >= y1 && y2 >= rect.y() && y1 <= rect.maxY(); }
70 FloatShapeInterval OffsetPolygonEdge::clippedEdgeXRange(float y1, float y2) const
72 if (!overlapsYRange(y1, y2) || (y1 == maxY() && minY() <= y1) || (y2 == minY() && maxY() >= y2))
75 if (isWithinYRange(y1, y2))
78 // Clip the edge line segment to the vertical range y1,y2 and then return
90 float xForY1 = (minYVertex.y() < y1) ? xIntercept(y1) : minYVertex.x()
125 float y1 = logicalTop.toFloat(); local
    [all...]
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;
  /external/pdfium/core/src/fxge/agg/agg23/
agg_math.h 25 AGG_INLINE FX_FLOAT calc_point_location(FX_FLOAT x1, FX_FLOAT y1,
29 return FXSYS_Mul(x - x2, y2 - y1) - FXSYS_Mul(y - y2, x2 - x1);
31 AGG_INLINE FX_FLOAT calc_distance(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2)
34 FX_FLOAT dy = y2 - y1;
37 AGG_INLINE FX_FLOAT calc_line_point_distance(FX_FLOAT x1, FX_FLOAT y1,
42 FX_FLOAT dy = y2 - y1;
45 return calc_distance(x1, y1, x, y);
agg_basics.h 64 T y1; member in struct:agg::rect_base
69 x1(x1_), y1(y1_), x2(x2_), y2(y2_) {}
78 if(y1 > y2) {
79 t = y1;
80 y1 = y2;
96 if(y1 < r.y1) {
97 y1 = r.y1;
99 return x1 <= x2 && y1 <= y2
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftbbox.c 93 /* y1 :: The start coordinate. */
105 BBox_Conic_Check( FT_Pos y1,
111 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
114 if ( y1 < y3 )
116 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
121 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
123 y2 = y1;
124 y1 = y3;
130 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 )
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftbbox.c 93 /* y1 :: The start coordinate. */
105 BBox_Conic_Check( FT_Pos y1,
111 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
114 if ( y1 < y3 )
116 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
121 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
123 y2 = y1;
124 y1 = y3;
130 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 )
    [all...]
  /external/tremolo/Tremolo/
asm_arm.h 73 int x1, y1, l; local
79 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
84 *y = y1;
92 int x1, y1, l; local
98 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
103 *y = y1 << 1;
111 int x1, y1, l; local
117 : "=&r" (l), "=&r" (x1), "=&r" (y1)
122 *y = y1 << 1;
  /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));
45 double y1() const { return m_y1; } function in class:blink::CSSCubicBezierTimingFunctionValue
54 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2)
57 , m_y1(y1)
  /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,
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
quantize_sse2.c 43 __m128i sz0, x0, sz1, x1, y0, y1, x_minus_zbin0, x_minus_zbin1; local
93 y1 = _mm_mulhi_epi16(x1, quant1);
96 y1 = _mm_add_epi16(y1, x1);
101 y1 = _mm_mulhi_epi16(y1, quant_shift1);
105 y1 = _mm_xor_si128(y1, sz1);
107 y1 = _mm_sub_epi16(y1, sz1)
158 __m128i sz0, sz1, x0, x1, y0, y1, xdq0, xdq1, zeros, ones; local
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkCubicInterval.cpp 49 SkScalar SkEvalCubicInterval(SkScalar x1, SkScalar y1,
64 y1 *= 3;
66 return eval_cubic(y1, y2 - 2*y1, y1 - y2 + SK_Scalar1, t);
  /external/skia/src/utils/
SkCubicInterval.cpp 49 SkScalar SkEvalCubicInterval(SkScalar x1, SkScalar y1,
64 y1 *= 3;
66 return eval_cubic(y1, y2 - 2*y1, y1 - y2 + SK_Scalar1, t);
  /frameworks/base/libs/hwui/
Patch.cpp 123 float y1 = 0.0f; local
134 y2 = y1 + floorf(segment * stretchY + 0.5f);
136 y2 = y1 + segment * rescaleY;
139 float vOffset = y1 == y2 ? 0.0f : 0.5 - (0.5 * segment / (y2 - y1));
144 generateRow(xDivs, xCount, vertex, y1, y2, v1, v2, stretchX, rescaleX,
148 y1 = y2;
156 generateRow(xDivs, xCount, vertex, y1, y2, v1, 1.0f, stretchX, rescaleX,
172 float y1, float y2, float v1, float v2, float stretchX, float rescaleX,
196 generateQuad(vertex, x1, y1, x2, y2, u1, v1, u2, v2, quadCount)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
textblit.c 61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch)
63 int steep = abs(y1 - y0) > abs(x1 - x0);
75 x1 = y1;
76 y1 = t;
87 y0 = y1;
88 y1 = t;
92 deltay = abs(y1 - y0);
97 if (y0 < y1)

Completed in 839 milliseconds

12 3 4 5 6 7 8 91011>>