HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 176 - 200 of 468) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/speex/libspeex/
filters.c 409 spx_word16_t y1, ny1i, ny2i; local
425 y1 = ADD16(y[i], EXTRACT16(PSHR32(mem1[0],LPC_SHIFT)));
426 ny1i = NEG16(y1);
427 y[i] = PSHR32(ADD32(SHL32(EXTEND32(y1),LPC_SHIFT+1),mem2[0]),LPC_SHIFT);
441 void qmf_decomp(const spx_word16_t *xx, const spx_word16_t *aa, spx_word16_t *y1, spx_word16_t *y2, int N, int M, spx_word16_t *mem, char *stack)
471 y1[k] = EXTRACT16(SATURATE(PSHR32(y1k,15),32767));
502 spx_sig_t y0, y1, y2, y3; local
505 y0 = y1 = y2 = y3 = 0;
521 y1 = MAC16_16(MAC16_16(y1, a1, x11), a1, x21)
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.cpp 271 int x, y, x1, y1, j; local
311 y1 = y + ystep;
312 for( ++y; y < y1; y++, dst += step )
333 int x, y, x1, y1, j; local
373 y1 = y + ystep;
374 for( ++y; y < y1; y++, dst += step )
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 159 double y1 = 0; local
161 cairo_stroke_extents(cairoContext, &x0, &y0, &x1, &y1);
162 solidFigureExtents = FloatRect(x0, y0, x1 - x0, y1 - y0);
165 cairo_fill_extents(cairoContext, &x0, &y0, &x1, &y1);
166 FloatRect fillExtents(x0, y0, x1 - x0, y1 - y0);
1072 double x1, y1, x2, y2; local
1073 cairo_clip_extents(cr, &x1, &y1, &x2, &y2);
1074 cairo_rectangle(cr, x1, y1, x2 - x1, y2 - y1);
1107 double x1, y1, x2, y2 local
    [all...]
  /external/openssl/crypto/ec/
ec2_smpl.c 423 BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t; local
449 y1 = BN_CTX_get(ctx);
468 if (!BN_copy(y1, &b->Y)) goto err;
472 if (!EC_POINT_get_affine_coordinates_GF2m(group, b, x1, y1, ctx)) goto err;
479 if (!BN_GF2m_add(s, y0, y1)) goto err;
488 if (BN_GF2m_cmp(y0, y1) || BN_is_zero(x1))
494 if (!group->meth->field_div(group, s, y1, x1, ctx)) goto err;
505 if (!BN_GF2m_add(y2, y2, y1)) goto err;
  /external/skia/legacy/src/core/
SkMatrix.cpp 1428 SkFixed x0, y0, x1, y1, x2, y2; local
1561 float x0, y0, x1, y1, x2, y2; local
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 1537 SkFixed x0, y0, x1, y1, x2, y2; local
1670 float x0, y0, x1, y1, x2, y2; local
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGPathSegListSource.cpp 103 point1 = FloatPoint(cubic->x1(), cubic->y1());
124 point1 = FloatPoint(quadratic->x1(), quadratic->y1());
  /frameworks/base/core/jni/android/graphics/
Shader.cpp 111 float x0, float y0, float x1, float y1,
116 pts[1].set(SkFloatToScalar(x1), SkFloatToScalar(y1));
144 float x0, float y0, float x1, float y1, jintArray colorArray,
152 storedBounds[2] = x1; storedBounds[3] = y1;
216 float x0, float y0, float x1, float y1, int color0, int color1, int tileMode) {
220 storedBounds[2] = x1; storedBounds[3] = y1;
241 float x0, float y0, float x1, float y1,
246 pts[1].set(SkFloatToScalar(x1), SkFloatToScalar(y1));
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Quad.java 76 float y1 = Collections.max(ys); local
77 return new Rectangle(x0, y0, x1 - x0, y1 - y0);
  /frameworks/base/media/mca/filterfw/jni/
jni_shader_program.h 69 jfloat y1,
81 jfloat y1,
jni_shader_program.cpp 148 jfloat y1,
155 program->SetSourceRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
166 jfloat y1,
173 program->SetTargetRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
  /hardware/samsung_slsi/exynos5/include/
fimg2d.h 192 int y1; member in struct:fimg2d_rect
207 int y1; member in struct:fimg2d_clip
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLCanvasStub.java 76 public void drawLine(float x1, float y1, float x2, float y2, GLPaint paint) {}
78 public void drawRect(float x1, float y1, float x2, float y2, GLPaint paint) {}
  /system/core/libpixelflinger/
trap.cpp 517 int32_t y1 = v1[1]; local
523 int32_t dy01 = y0 - y1;
530 swap(y0, y1);
532 dy01 = y0 - y1;
537 int32_t dy12 = y1 - y2;
541 const int32_t bminy = TRI_FLOOR(min(y0, y1, y2)) >> TRI_FRACTION_BITS;
543 const int32_t bmaxy = TRI_CEIL( max(y0, y1, y2)) >> TRI_FRACTION_BITS;
555 int32_t ey1 = dy12 * (x1 - mx) - dx12 * (y1 - my);
678 int y1 = top[1] | 1; local
680 int dy = y2 - y1;
867 int y1 = top[1]; local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_powf.c 59 float y1,t1,t2,r,s,sn,t,u,v,w; local
202 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
204 SET_FLOAT_WORD(y1,is&0xfffff000);
205 p_l = (y-y1)*t1+y*t2;
206 p_h = y1*t1;
  /external/clang/test/CXX/over/over.over/
p1.cpp 85 template<float(float)> struct Y1 { };
91 Y1<f0> y1; variable
92 Y1<&f0> y1a;
  /external/qemu/android/skin/
region.h 20 extern void skin_region_init( SkinRegion* r, int x1, int y1, int x2, int y2 );
  /external/qemu/distrib/sdl-1.2.15/src/video/aalib/
SDL_aavideo.c 203 static void fastscale (register char *b1, register char *b2, int x1, int x2, int y1, int y2)
209 if (!x1 || !x2 || !y1 || !y2)
215 ddy = y1 + y1;
  /external/skia/legacy/include/core/
SkPath.h 334 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
338 @param y1 The y-coordinate of the control point on a quadratic curve
342 void quadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2);
371 (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
375 @param y1 The y-coordinate of the 1st control point on a cubic curve
381 void cubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
413 void rCubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
434 void arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/
CubeWallpaper1.java 202 void drawLine(Canvas c, int x1, int y1, int z1, int x2, int y2, int z2) {
211 float newy1 = (float)(Math.sin(xrot) * z1 + Math.cos(xrot) * y1);
213 float newz1 = (float)(Math.cos(xrot) * z1 - Math.sin(xrot) * y1);
  /external/clang/test/Analysis/
dead-stores.c 243 int y1 = 4; local
265 ++y1;
291 (void)y1;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
q_gain2.c 64 Word16 y1[], /* (i) Q_xn: Adaptive codebook. */
65 Word16 Q_xn, /* (i) : xn and y1 format */
68 Word16 g_coeff[], /* (i) : Correlations <xn y1> <y1 y1> */
130 * coeff[0] = y1 y1 *
131 * coeff[1] = -2 xn y1 *
134 * coeff[4] = 2 y1 y2 *
136 * Product <y1 y1> and <xn y1> have been compute in G_pitch() and
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicConvolve3x3.cpp 68 extern "C" void rsdIntrinsicConvolve3x3_K(void *dst, const void *y0, const void *y1,
106 uint32_t y1 = rsMin((int32_t)p->y + 1, (int32_t)(p->dimY-1)); local
110 const uchar4 *py2 = (const uchar4 *)(pin + stride * y1);
rsCpuIntrinsicConvolve5x5.cpp 119 extern "C" void rsdIntrinsicConvolve5x5_K(void *dst, const void *y0, const void *y1,
135 uint32_t y1 = rsMax((int32_t)p->y-1, 0); local
141 const uchar4 *py1 = (const uchar4 *)(pin + stride * y1);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionOverlay.java 205 int y1 = r.y; local
212 y1 += insets.top;
216 gc.drawRect(x1, y1, x2, y2);

Completed in 411 milliseconds

1 2 3 4 5 6 78 91011>>