HomeSort by relevance Sort by last modified time
    Searched refs:y3 (Results 1 - 25 of 53) sorted by null

1 2 3

  /frameworks/base/services/audioflinger/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon15637
56 p->y2 = p->y3;
57 p->y3 = in;
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/freetype/src/base/
ftbbox.c 95 /* y3 :: The end coordinate. */
105 FT_Pos y3,
109 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
112 if ( y1 < y3 )
114 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
119 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
122 y1 = y3;
123 y3 = y2;
128 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 );
    [all...]
  /external/clang/test/SemaCXX/
warn-literal-conversion.cpp 11 int y3 = 12E-1F; // expected-warning {{implicit conversion turns literal floating-point number into integer}} local
default-constructor-initializers.cpp 34 struct Y3 : public Y2 {
36 Y3 y3; variable
  /external/speex/libspeex/
ltp_arm4.h 101 spx_word32_t y0, y1, y2, y3; local
105 y3=*y++;
173 : "+r" (y0), "+r" (y1), "+r" (y2), "+r" (y3),
filters.c 502 spx_sig_t y0, y1, y2, y3; local
505 y0 = y1 = y2 = y3 = 0;
523 y3 = MAC16_16(MAC16_16(y3, a1, x10), a1, x20);
528 y3 = ADD32(y3,MULT16_16(a1, x10+x20));
540 y3 = MAC16_16(MAC16_16(y3, a1, x11), a1, x21);
545 y3 = ADD32(y3,MULT16_16(a1, x11+x21))
    [all...]
  /external/skia/src/core/
SkEdge.cpp 319 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
331 y3 = int(pts[3].fY * scale);
341 y3 = pts[3].fY >> shift;
346 if (y0 > y3)
350 SkTSwap(y0, y3);
356 int bot = SkFDot6Round(y3);
372 SkFDot6 dy = cubic_delta_from_line(y0, y1, y2, y3);
409 D = SkFDot6UpShift(y3 + 3 * (y1 - y2) - y0, upShift);
417 fCLastY = SkFDot6ToFixed(y3);
  /external/opencv/cvaux/src/
decomppoly.cpp 152 int x1, y1, x2, y2, x3, y3;
190 y3 = contour[ index3 ].y;
197 dy2 = y3 - y2;
202 iy1 = y3 - y1;
246 y2 = y3;
256 y3 = contour[ index3 ].y;
271 y2 = y3;
285 y3 = contour[ index3 ].y;
300 y2 = y3;
314 y3 = contour[ index3 ].y
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 297 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
305 * @param y3 The y-coordinate of the end point on a cubic curve
308 float x3, float y3) {
310 native_cubicTo(mNativePath, x1, y1, x2, y2, x3, y3);
319 float x3, float y3) {
321 native_rCubicTo(mNativePath, x1, y1, x2, y2, x3, y3);
629 float x2, float y2, float x3, float y3);
631 float x2, float y2, float x3, float y3);
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 269 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y); local
271 return new ECPoint.Fp(curve, x3, y3);
295 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y); local
297 return new ECPoint.Fp(curve, x3, y3, this.withCompression);
497 ECFieldElement.F2m y3 local
500 return new ECPoint.F2m(curve, x3, y3, withCompression);
558 ECFieldElement.F2m y3 local
562 return new ECPoint.F2m(this.curve, x3, y3, withCompression);
  /external/clang/test/Sema/
array-init.c 35 int y3[4][3] = { local
58 int y3[4][3] = { local
  /external/skia/src/animator/
SkPathParts.cpp 168 SK_MEMBER(y3, Float)
175 SkCubicTo::SkCubicTo() : x1(0), y1(0), x2(0), y2(0), x3(0), y3(0) {
179 fPath->fPath.cubicTo(x1, y1, x2, y2, x3, y3);
196 fPath->fPath.rCubicTo(x1, y1, x2, y2, x3, y3);
SkPathParts.h 102 SkScalar y3; member in class:SkCubicTo
  /external/clang/test/Index/
complete-method-decls.m 48 - (void*)first:(int)xxx second3:(float)y3 third:(double)z;
112 // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType void *}{Informative first:}{TypedText second3:}{Text (float)y3}{HorizontalSpace }{TypedText third:}{Text (double)z} (35)
127 // CHECK-CCD: ObjCInstanceMethodDecl:{ResultType void *}{Informative first:}{TypedText second3:}{Text (float)y3}{HorizontalSpace }{TypedText third:}{Text (double)z} (35)
  /external/skia/tests/
ClipCubicTest.cpp 37 float x3, float y3,
42 crv[3].fX = SkFloatToScalar(x3); crv[3].fY = SkFloatToScalar(y3);
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Geometry.h 129 inline void FindQuadCentroid(double x0, double y0, double x1, double y1, double x2, double y2, double x3, double y3,
144 FindTriangleCentroid(x0, y0, x3, y3, x2, y2, mass2, cent2x, cent2y);
  /system/media/mca/filterfw/jni/
jni_shader_program.h 73 jfloat y3);
85 jfloat y3);
jni_shader_program.cpp 152 jfloat y3) {
155 program->SetSourceRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
170 jfloat y3) {
173 program->SetTargetRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
  /external/clang/test/CXX/over/over.over/
p1.cpp 87 template<float (&)(float)> struct Y3 { };
94 Y3<f0> y3; variable
  /prebuilt/sdk/14/renderscript/include/
rs_graphics.rsh 225 * @param y3
234 float x3, float y3, float z3,
253 * @param y3
266 float x3, float y3, float z3, float u3, float v3,
  /external/clang/test/Analysis/
dead-stores.c 246 int y3 = 4; local
268 ++y3;
308 (void)y3;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 272 float x2, float y2, float x3, float y3) {
278 pathDelegate.cubicTo(x1, y1, x2, y2, x3, y3);
283 float x2, float y2, float x3, float y3) {
289 pathDelegate.rCubicTo(x1, y1, x2, y2, x3, y3);
663 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
671 * @param y3 The y-coordinate of the end point on a cubic curve
674 float x3, float y3) {
675 mPath.curveTo(x1, y1, x2, y2, mLastX = x3, mLastY = y3);
  /frameworks/base/libs/rs/
rsScriptC_LibGL.cpp 134 float x3, float y3, float z3, float u3, float v3,
148 //LOGE("%4.2f, %4.2f, %4.2f", x3, y3, z3);
151 float vtx[] = {x1,y1,z1, x2,y2,z2, x3,y3,z3, x4,y4,z4};
167 float x3, float y3, float z3,
171 x3, y3, z3, 1, 0,
  /frameworks/base/libs/rs/scriptc/
rs_graphics.rsh 231 * @param y3
240 float x3, float y3, float z3,
259 * @param y3
272 float x3, float y3, float z3, float u3, float v3,
  /external/skia/gpu/src/
GrDrawMesh.cpp 97 SkScalar x3, SkScalar y3, SkScalar scale = 1) {
101 pts[3].set(x3, y3);

Completed in 881 milliseconds

1 2 3