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

1 2 3

  /frameworks/av/services/audioflinger/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon18142
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 from 'float' to 'int' changes value from 1.2 to 1}} local
default-constructor-initializers.cpp 34 struct Y3 : public Y2 {
36 Y3 y3; variable
  /frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
convolve5x5.fs 37 uint32_t y3 = min((int32_t)y+1, gHeight-1);
58 float4 p3 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y3)) * gCoeffs[15]
59 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y3)) * gCoeffs[16]
60 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y3)) * gCoeffs[17]
61 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y3)) * gCoeffs[18]
62 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y3)) * gCoeffs[19];
  /frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
convolve5x5.rs 37 uint32_t y3 = min((int32_t)y+1, gHeight-1);
58 float4 p3 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y3)) * gCoeffs[15]
59 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y3)) * gCoeffs[16]
60 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y3)) * gCoeffs[17]
61 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y3)) * gCoeffs[18]
62 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y3)) * gCoeffs[19];
  /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),
  /external/skia/src/core/
SkEdge.cpp 312 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
324 y3 = int(pts[3].fY * scale);
334 y3 = pts[3].fY >> shift;
339 if (y0 > y3)
343 SkTSwap(y0, y3);
349 int bot = SkFDot6Round(y3);
365 SkFDot6 dy = cubic_delta_from_line(y0, y1, y2, y3);
402 D = SkFDot6UpShift(y3 + 3 * (y1 - y2) - y0, upShift);
410 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/bcprov/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/skia/src/animator/
SkPathParts.cpp 160 SK_MEMBER(y3, Float)
167 SkCubicTo::SkCubicTo() : x1(0), y1(0), x2(0), y2(0), x3(0), y3(0) {
171 fPath->fPath.cubicTo(x1, y1, x2, y2, x3, y3);
188 fPath->fPath.rCubicTo(x1, y1, x2, y2, x3, y3);
SkPathParts.h 94 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;
116 // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType void *}{Informative first:}{TypedText second3:}{Text (float)y3}{HorizontalSpace }{TypedText third:}{Text (double)z} (35)
131 // CHECK-CCD: ObjCInstanceMethodDecl:{ResultType void *}{Informative first:}{TypedText second3:}{Text (float)y3}{HorizontalSpace }{TypedText third:}{Text (double)z} (35)
  /external/clang/test/Sema/
array-init.c 35 int y3[4][3] = { local
60 int y3[4][3] = { local
  /external/skia/tests/
ClipCubicTest.cpp 62 float x3, float y3,
67 crv[3].fX = SkFloatToScalar(x3); crv[3].fY = SkFloatToScalar(y3);
  /frameworks/base/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)));
  /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);
  /packages/apps/LegacyCamera/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);
  /external/clang/test/CXX/over/over.over/
p1.cpp 87 template<float (&)(float)> struct Y3 { };
94 Y3<f0> y3; variable
  /external/clang/test/Analysis/
dead-stores.c 245 int y3 = 4; local
267 ++y3;
307 (void)y3;
  /frameworks/base/libs/hwui/
FontRenderer.h 128 float x3, float y3, float u3, float v3,
132 float x3, float y3, float u3, float v3,
136 float x3, float y3, float u3, float v3,
  /frameworks/rs/driver/
rsdIntrinsicConvolve5x5.cpp 98 const void *y2, const void *y3, const void *y4,
115 uint32_t y3 = rsMin((int32_t)p->y+1, (int32_t)(p->dimY-1)); local
121 const uchar4 *py3 = (const uchar4 *)(pin + din->lod[0].stride * y3);
  /frameworks/support/renderscript/v8/rs_support/driver/
rsdIntrinsicConvolve5x5.cpp 98 const void *y2, const void *y3, const void *y4,
111 uint32_t y3 = rsMin((int32_t)p->y+1, (int32_t)(p->dimY-1)); local
117 const uchar4 *py3 = (const uchar4 *)(pin + din->lod[0].stride * y3);

Completed in 724 milliseconds

1 2 3