HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 126 - 150 of 368) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/skia/src/core/
SkQuadClipper.h 57 void appendVLine(SkScalar x, SkScalar y0, SkScalar y1, bool reverse);
SkScan_Hairline.cpp 55 SkFDot6 y1 = SkScalarToFDot6(pts[1].fY);
65 ptsR.set(x0, y0, x1, y1);
85 SkFDot6 dy = y1 - y0;
90 SkTSwap<SkFDot6>(y0, y1);
103 if (y0 > y1) { // we want to go top-to-bottom
105 SkTSwap<SkFDot6>(y0, y1);
108 int iy1 = SkFDot6Round(y1);
SkMatrix.cpp 1428 SkFixed x0, y0, x1, y1, x2, y2; local
1561 float x0, y0, x1, y1, x2, y2; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
LegacyCACFLayerTreeHost.cpp 279 rect.y1 = bounds.origin.y + bounds.size.height - (r->origin.y + r->size.height);
280 rect.y2 = rect.y1 + r->size.height;
353 float y1 = y0 + bounds.size.height; local
356 D3DXMatrixOrthoOffCenterRH(&projection, x0, x1, y0, y1, -1.0f, 1.0f);
  /external/webkit/Source/WebCore/platform/graphics/gpu/
TilingData.cpp 109 int y1 = bounds.y(); local
117 y1--;
121 bounds = IntRect(x1, y1, x2 - x1, y2 - y1);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
gain_q.cpp 392 y1 -- Word16 array -- Adaptive codebook.
394 g_coeff -- Word16 array -- Correlations <xn y1> <y1 y1>
476 Word16 y1[], /* i : Adaptive codebook. */
478 Word16 g_coeff[], /* i : Correlations <xn y1> <y1 y1> */
541 y1,
600 y1,
    [all...]
cod_amr.cpp 831 Word16 y1[L_SUBFR]; // Filtered adaptive excitation
833 Word16 gCoeff[6]; // Correlations between xn, y1, & y2:
1234 Word16 y1[L_SUBFR]; \/* Filtered adaptive excitation *\/ local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEConvolveMatrix.cpp 193 Note: (x1, y1) top-left and (x2, y2) is the bottom-right corner
195 only those (x, y) pixels, where x1 <= x < x2 and y1 <= y < y2
197 Region A: x1: 0, y1: 0, x2: 10, y2: 3
198 Region B: x1: 0, y1: 3, x2: 1, y2: 10
199 Region C: x1: 1, y1: 3, x2: 9, y2: 10
200 Region D: x1: 9, y1: 3, x2: 10, y2: 10
201 Region E: x1: 0, y1: 10, x2: 10, y2: 10 (empty region)
318 void FEConvolveMatrix::fastSetOuterPixels(PaintingData& paintingData, int x1, int y1, int x2, int y2)
320 int pixel = (y1 * paintingData.width + x1) * 4;
321 int height = y2 - y1;
    [all...]
  /frameworks/rs/
rsScriptC_LibGL.cpp 151 float x1, float y1, float z1, float u1, float v1,
165 //ALOGE("%4.2f, %4.2f, %4.2f", x1, y1, z1);
170 float vtx[] = {x1,y1,z1, x2,y2,z2, x3,y3,z3, x4,y4,z4};
184 float x1, float y1, float z1,
188 rsrDrawQuadTexCoords(rsc, sc, x1, y1, z1, 0, 1,
212 void rsrDrawRect(Context *rsc, Script *sc, float x1, float y1, float x2, float y2, float z) {
213 //ALOGE("SC_drawRect %f,%f %f,%f %f", x1, y1, x2, y2, z);
214 rsrDrawQuad(rsc, sc, x1, y2, z, x2, y2, z, x2, y1, z, x1, y1, z);
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
LayoutViewer.java 159 int y1 = Math.max(top, clipY); local
162 clipY = y1;
164 clipHeight = y2 - y1;
270 int y1 = Math.max(parentClipping.y, top); local
277 if (x2 <= x1 || y2 <= y1) {
280 gc.setClipping(x1, y1, x2 - x1, y2 - y1);
  /frameworks/av/media/libstagefright/colorconversion/
ColorConverter.cpp 155 signed y1 = (signed)src_ptr[2 * x + 1] - 16; local
165 signed tmp1 = y1 * 298;
242 signed y1 = (signed)src_y[x] - 16; local
253 signed tmp1 = y1 * 298;
315 signed y1 = (signed)src_y[x] - 16; local
326 signed tmp1 = y1 * 298;
389 signed y1 = (signed)src_y[x] - 16; local
400 signed tmp1 = y1 * 298;
459 signed y1 = (signed)src_y[x] - 16; local
470 signed tmp1 = y1 * 298
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 251 /*package*/ static void native_quadTo(int nPath, float x1, float y1, float x2, float y2) {
257 pathDelegate.quadTo(x1, y1, x2, y2);
271 /*package*/ static void native_cubicTo(int nPath, float x1, float y1,
278 pathDelegate.cubicTo(x1, y1, x2, y2, x3, y3);
282 /*package*/ static void native_rCubicTo(int nPath, float x1, float y1,
289 pathDelegate.rCubicTo(x1, y1, x2, y2, x3, y3);
624 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
628 * @param y1 The y-coordinate of the control point on a quadratic curve
632 private void quadTo(float x1, float y1, float x2, float y2) {
633 mPath.quadTo(x1, y1, mLastX = x2, mLastY = y2)
    [all...]
  /bionic/libm/src/
e_pow.c 101 double y1,t1,t2,r,s,t,u,v,w; local
254 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
255 y1 = y;
256 SET_LOW_WORD(y1,0);
257 p_l = (y-y1)*t1+y*t2;
258 p_h = y1*t1;
  /external/fdlibm/
e_pow.c 108 double y1,t1,t2,r,s,t,u,v,w; local
258 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
259 y1 = y;
260 __LO(y1) = 0;
261 p_l = (y-y1)*t1+y*t2;
262 p_h = y1*t1;
  /external/qemu/distrib/sdl-1.2.12/src/video/
e_pow.h 104 double y1,t1,t2,r,s,t,u,v,w; local
252 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
253 y1 = y;
254 SET_LOW_WORD(y1,0);
255 p_l = (y-y1)*t1+y*t2;
256 p_h = y1*t1;
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Blend.cpp 144 double z, x0, y0, x1, y1, x2, y2, x3, y3; local
170 FrameToMosaic(mb->trs, 0.0, mb->height-1.0, x1, y1);
192 if(y1 > yBottomCorners[0] || y2 > yBottomCorners[1]) // If either of the bottom corners is higher
194 yBottomCorners[0] = y1;
200 FindQuadCentroid(x0, y0, x1, y1, x2, y2, x3, y3, csite->getVCenter().x, csite->getVCenter().y);
1002 int y1 = (yy >= 0.0) ? (int) yy : (int) floor(yy); local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.cpp 144 double z, x0, y0, x1, y1, x2, y2, x3, y3; local
170 FrameToMosaic(mb->trs, 0.0, mb->height-1.0, x1, y1);
192 if(y1 > yBottomCorners[0] || y2 > yBottomCorners[1]) // If either of the bottom corners is higher
194 yBottomCorners[0] = y1;
200 FindQuadCentroid(x0, y0, x1, y1, x2, y2, x3, y3, csite->getVCenter().x, csite->getVCenter().y);
982 int y1 = (yy >= 0.0) ? (int) yy : (int) floor(yy); local
    [all...]
  /external/qemu/
console.c 603 int y1, y2; local
611 y1 = (s->y_base + y) % s->total_height;
612 y2 = y1 - s->y_displayed;
616 c = &s->cells[y1 * s->width + x];
627 int y, y1; local
640 y1 = (s->y_base + s->y) % s->total_height;
641 y = y1 - s->y_displayed;
645 c = &s->cells[y1 * s->width + x];
661 int x, y, y1; local
676 y1 = s->y_displayed
694 int i, y1; local
728 int x, y1; local
871 int y1 = (s->y_base + y) % s->total_height; local
881 int y1, i; local
    [all...]
  /external/opencv/cvaux/src/
decomppoly.cpp 152 int x1, y1, x2, y2, x3, y3;
186 y1 = contour[ index1 ].y;
195 dy1 = y2 - y1;
202 iy1 = y3 - y1;
215 iy0 = contour[ i ].y - y1;
268 y1 = y2;
297 y1 = y2;
  /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/tests/
ClipCubicTest.cpp 60 float x1, float y1,
65 crv[1].fX = SkFloatToScalar(x1); crv[1].fY = SkFloatToScalar(y1);
  /external/webkit/Source/WebCore/svg/
SVGPathSegListSource.cpp 103 point1 = FloatPoint(cubic->x1(), cubic->y1());
124 point1 = FloatPoint(quadratic->x1(), quadratic->y1());

Completed in 1441 milliseconds

1 2 3 4 56 7 8 91011>>