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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/svg/
SkSVGLine.cpp 17 SVG_ATTRIBUTE(y2)
28 SVG_ADD_ATTRIBUTE(y2);
  /external/skia/src/svg/
SkSVGLine.cpp 17 SVG_ATTRIBUTE(y2)
28 SVG_ADD_ATTRIBUTE(y2);
  /frameworks/av/services/audioflinger/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon31802
55 p->y1 = p->y2;
56 p->y2 = p->y3;
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);
60 p->c = (p->y2 - p->y0) >> 1;
  /external/chromium_org/third_party/freetype/src/base/
ftbbox.c 93 /* y2 :: The coordinate of the control point. */
104 FT_Pos y2,
109 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
114 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
119 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
121 y2 = y1;
123 y3 = y2;
128 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 )
    [all...]
  /frameworks/base/libs/hwui/
Patch.cpp 123 float y2 = 0.0f; local
133 y2 = y1 + floorf(segment * stretchY + 0.5f);
135 y2 = y1 + segment * rescaleY;
138 float vOffset = y1 == y2 ? 0.0f : 0.5 - (0.5 * segment / (y2 - y1));
143 generateRow(xDivs, xCount, vertex, y1, y2, v1, v2, stretchX, rescaleX,
147 y1 = y2;
154 y2 = height;
155 generateRow(xDivs, xCount, vertex, y1, y2, v1, 1.0f, stretchX, rescaleX,
171 float y1, float y2, float v1, float v2, float stretchX, float rescaleX
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTimingFunctionValue.h 54 static PassRefPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2)
56 return adoptRef(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2));
64 double y2() const { return m_y2; } function in class:WebCore::CSSCubicBezierTimingFunctionValue
69 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2)
74 , m_y2(y2)
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 81 Packet4f y, y1, y2; local
84 y2 = pmadd(p4f_cephes_log_p6, x, p4f_cephes_log_p7);
87 y2 = pmadd(y2, x, p4f_cephes_log_p8);
89 y = pmadd(y, x3, y2);
96 y2 = pmul(e, p4f_cephes_log_q2);
98 x = padd(x, y2);
262 Packet4f y2 = p4f_sincof_p0; local
263 y2 = pmadd(y2, z, p4f_sincof_p1)
350 Packet4f y2 = p4f_sincof_p0; local
    [all...]
  /external/clang/test/SemaTemplate/
partial-spec-instantiate.cpp 37 int f(Y<int*> y, Y<float*> y2) {
38 return y.m + y2.m;
  /hardware/samsung_slsi/exynos5/include/
ExynosRect.h 123 int y2; //!< Bottom (The y-coordinate value of lower-right corner) member in struct:ExynosRect2
132 y2 = _y2_;
141 y2 = other->y2;
150 y2 = other.y2;
160 && y2 == other.y2);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/
jquery.flot.dashes.js 72 y2 = points[i + 1];
77 if (y1 <= y2 && y1 < axisy.min) {
78 if (y2 < axisy.min) continue; // line segment is outside
80 x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
82 } else if (y2 <= y1 && y2 < axisy.min) {
84 x2 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
85 y2 = axisy.min;
89 if (y1 >= y2 && y1 > axisy.max) {
90 if (y2 > axisy.max) continue
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/
jquery.flot.dashes.js 72 y2 = points[i + 1];
77 if (y1 <= y2 && y1 < axisy.min) {
78 if (y2 < axisy.min) continue; // line segment is outside
80 x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
82 } else if (y2 <= y1 && y2 < axisy.min) {
84 x2 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
85 y2 = axisy.min;
89 if (y1 >= y2 && y1 > axisy.max) {
90 if (y2 > axisy.max) continue
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xregion.h 53 short x1, x2, y1, y2; member in struct:__anon38692
89 * Remember, x2 and y2 are not in the region
94 (r1)->y2 > (r2)->y1 && \
95 (r1)->y1 < (r2)->y2)
107 if((r)->y2 > (idRect)->extents.y2)\
108 (idRect)->extents.y2 = (r)->y2;\
132 ((R-1)->y2 == (Ry2)) &&\
143 (r)->y2 = (ry2);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xregion.h 53 short x1, x2, y1, y2; member in struct:__anon40282
89 * Remember, x2 and y2 are not in the region
94 (r1)->y2 > (r2)->y1 && \
95 (r1)->y1 < (r2)->y2)
107 if((r)->y2 > (idRect)->extents.y2)\
108 (idRect)->extents.y2 = (r)->y2;\
132 ((R-1)->y2 == (Ry2)) &&\
143 (r)->y2 = (ry2);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xregion.h 53 short x1, x2, y1, y2; member in struct:__anon41797
89 * Remember, x2 and y2 are not in the region
94 (r1)->y2 > (r2)->y1 && \
95 (r1)->y1 < (r2)->y2)
107 if((r)->y2 > (idRect)->extents.y2)\
108 (idRect)->extents.y2 = (r)->y2;\
132 ((R-1)->y2 == (Ry2)) &&\
143 (r)->y2 = (ry2);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GCWrapper.java 247 public void drawLine(int x1, int y1, int x2, int y2) {
253 y2 = mVScale.translate(y2);
254 getGc().drawLine(x1, y1, x2, y2);
265 public void drawRect(int x1, int y1, int x2, int y2) {
271 int h = mVScale.scale(y2 - y1);
292 public void fillRect(int x1, int y1, int x2, int y2) {
298 int h = mVScale.scale(y2 - y1);
320 public void drawOval(int x1, int y1, int x2, int y2) {
326 int h = mVScale.scale(y2 - y1)
    [all...]
  /cts/tests/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...]
  /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/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
  /external/skia/include/utils/
SkCubicInterval.h 14 SkScalar x2, SkScalar y2,
  /external/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);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
conceal.cpp 142 uint8 *y1, *y2, *u1, *u2, *v1, *v2; local
157 y2 = prevFrame + lumstart;
162 oscl_memcpy(y1, y2, MB_SIZE);
164 y2 += width_Y;
165 oscl_memcpy(y1, y2, MB_SIZE);
167 y2 += width_Y;
168 oscl_memcpy(y1, y2, MB_SIZE);
170 y2 += width_Y;
171 oscl_memcpy(y1, y2, MB_SIZE);
173 y2 += width_Y
    [all...]
  /packages/apps/Camera/jni/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...]
  /packages/apps/Camera2/jni/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...]
  /packages/apps/LegacyCamera/jni/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...]

Completed in 760 milliseconds

12 3 4 5 6 7 8 91011>>