HomeSort by relevance Sort by last modified time
    Searched refs:y2 (Results 101 - 125 of 362) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.cpp 281 void AffineTransform::map(double x, double y, double& x2, double& y2) const
284 y2 = (m_transform[1] * x + m_transform[3] * y + m_transform[5]);
289 double x2, y2; local
290 map(point.x(), point.y(), x2, y2);
293 return IntPoint(lround(x2), lround(y2));
298 double x2, y2; local
299 map(point.x(), point.y(), x2, y2);
301 return FloatPoint(narrowPrecisionToFloat(x2), narrowPrecisionToFloat(y2));
  /external/webkit/Source/WebCore/svg/
SVGPathElement.cpp 114 PassRefPtr<SVGPathSegCurvetoCubicAbs> SVGPathElement::createSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2, SVGPathSegRole role)
116 return SVGPathSegCurvetoCubicAbs::create(this, role, x, y, x1, y1, x2, y2);
119 PassRefPtr<SVGPathSegCurvetoCubicRel> SVGPathElement::createSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2, SVGPathSegRole role)
121 return SVGPathSegCurvetoCubicRel::create(this, role, x, y, x1, y1, x2, y2);
164 PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> SVGPathElement::createSVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2, SVGPathSegRole role)
166 return SVGPathSegCurvetoCubicSmoothAbs::create(this, role, x, y, x2, y2);
169 PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> SVGPathElement::createSVGPathSegCurvetoCubicSmoothRel(float x, float y, float x2, float y2, SVGPathSegRole role)
171 return SVGPathSegCurvetoCubicSmoothRel::create(this, role, x, y, x2, y2);
SVGLinearGradientElement.cpp 46 DEFINE_ANIMATED_LENGTH(SVGLinearGradientElement, SVGNames::y2Attr, Y2, y2)
178 attributes.setY2(linear->y2());
205 endPoint = FloatPoint(attributes.x2().valueAsPercentage(), attributes.y2().valueAsPercentage());
208 endPoint = FloatPoint(attributes.x2().value(this), attributes.y2().value(this));
217 || y2().isRelative();
SVGLineElement.cpp 39 DEFINE_ANIMATED_LENGTH(SVGLineElement, SVGNames::y2Attr, Y2, y2)
157 path.addLineTo(FloatPoint(x2().value(this), y2().value(this)));
165 || y2().isRelative();
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
spstproc.cpp 111 y2 -- Word16 Array -- Filtered fixed codebook excitation
183 Word16 y2[], /* i : Filtered fixed codebook excitation */
295 * y2 Q10 Q12
307 L_temp = ((Word32)y2[i] * gain_code);
  /external/openssl/crypto/ec/
ec2_smpl.c 423 BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t; local
451 y2 = BN_CTX_get(ctx);
502 if (!BN_GF2m_add(y2, x1, x2)) goto err;
503 if (!group->meth->field_mul(group, y2, y2, s, ctx)) goto err;
504 if (!BN_GF2m_add(y2, y2, x2)) goto err;
505 if (!BN_GF2m_add(y2, y2, y1)) goto err;
507 if (!EC_POINT_set_affine_coordinates_GF2m(group, r, x2, y2, ctx)) goto err
554 BIGNUM *lh, *y2; local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 267 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
273 * @param y2 The y-coordinate of the end point on a quadratic curve
275 public void quadTo(float x1, float y1, float x2, float y2) {
277 native_quadTo(mNativePath, x1, y1, x2, y2);
301 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
307 * @param y2 The y-coordinate of the 2nd control point on a cubic curve
311 public void cubicTo(float x1, float y1, float x2, float y2,
314 native_cubicTo(mNativePath, x1, y1, x2, y2, x3, y3);
322 public void rCubicTo(float x1, float y1, float x2, float y2,
325 native_rCubicTo(mNativePath, x1, y1, x2, y2, x3, y3)
    [all...]
  /frameworks/base/services/java/com/android/server/power/
WirelessChargerDetector.java 287 float x2, float y2, float z2) {
288 final double dotProduct = (x1 * x2) + (y1 * y2) + (z1 * z2);
290 final double mag2 = Math.sqrt((x2 * x2) + (y2 * y2) + (z2 * z2));
302 + ", x2=" + x2 + ", y2=" + y2 + ", z2=" + z2
  /packages/inputmethods/LatinIME/native/jni/src/
proximity_info_utils.h 89 const float y2) {
90 return SQUARE_FLOAT(x1 - x2) + SQUARE_FLOAT(y1 - y2);
94 const float x1, const float y1, const float x2, const float y2, const bool extend) {
98 const float ray2y = y2 - y1;
111 projectionY = y2;
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypotl.c 51 long double a=x,b=y,t1,t2,y1,y2,w; local
111 y2 = b - y1;
115 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b)));
  /external/ceres-solver/internal/ceres/
implicit_schur_complement.cc 115 // y2 = E' y1
119 // y3 = -(E'E)^-1 y2
181 // y2 = b - y1
184 // y3 = E' y2
211 // y2 = (E'E)^-1 y1
212 Vector y2 = Vector::Zero(A_->num_cols_e()); local
213 block_diagonal_EtE_inverse_->RightMultiply(tmp_e_cols_.data(), y2.data());
215 // y3 = E y2
217 A_->RightMultiplyE(y2.data(), tmp_rows_.data());
  /external/v8/test/mjsunit/regress/
regress-1229.js 83 function h1(z2, y2) {
86 var local_y = y2 >> 1;
91 function h2(z2, y2, x2) {
94 var local_y = y2 >> 1;
99 function h3(z2, y2, x2) {
102 var local_y = y2 >> 1;
  /frameworks/base/libs/hwui/
FontRenderer.h 126 float x2, float y2, float u2, float v2,
130 float x2, float y2, float u2, float v2,
134 float x2, float y2, float u2, float v2,
  /frameworks/rs/driver/
rsdPath.cpp 47 float y1, yc, y2; member in struct:DrvPathStatic::__anon20260
126 s->y2 = fin[5];
168 vtx[5] = s->y2;
175 vtx[11] = s->y2;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMath.java 59 float y2 = line[3]; local
61 float ydelt = y2 - y1;
67 (x1 + u * (x2 - x1)), (y1 + u * (y2 - y1))
  /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)
216 ddy1 = y2 + y2;
220 for (; y2; y2--) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPath.java 40 public void quadTo(float x1, float y1, float x2, float y2) {
42 "ending at (" +x2+","+ y2 + ")";
  /external/webkit/Source/WebKit/android/plugins/
ANPPathInterface.cpp 72 float x1, float y1, float x2, float y2) {
75 SkFloatToScalar(x2), SkFloatToScalar(y2));
  /frameworks/base/libs/hwui/font/
CacheTexture.h 149 float x2, float y2, float u2, float v2,
154 TextureVertex::set(mesh++, x2, y2, u2, v2);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLCanvas.java 83 // Draws a line using the specified paint from (x1, y1) to (x2, y2).
85 public abstract void drawLine(float x1, float y1, float x2, float y2, GLPaint paint);
87 // Draws a rectangle using the specified paint from (x1, y1) to (x2, y2).
89 public abstract void drawRect(float x1, float y1, float x2, float y2, GLPaint paint);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 99 int y2 = y1 + h; local
101 if (x2 < bounds.x || y2 < bounds.y || x1 > bounds.x2() || y1 > bounds.y2()) {
112 addCenterColumnMatch(bounds, x1, y1, x2, y2, columnMatches, max);
119 addBottomMatch(y2, rowMatches, max);
127 addRowGapMatch(bounds, y1, y2, rowMatches, max);
136 y2 = y1 + h;
202 if (y1 >= bounds.y2()) {
291 private void addCenterColumnMatch(Rect bounds, int x1, int y1, int x2, int y2,
293 Collection<INode> intersectsRow = mGrid.getIntersectsRow(y1, y2);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
MoveHandler.java 197 if (mBounds.y2() > layoutBounds.y2()) {
198 mBounds.y -= mBounds.y2() - layoutBounds.y2();
212 edge = new Segment(b.y2(), b.x, b.x2(), null, null, BOTTOM, NO_MARGIN);
215 edge = new Segment(b.x, b.y, b.y2(), null, null, LEFT, NO_MARGIN);
217 edge = new Segment(b.x2(), b.y, b.y2(), null, null, RIGHT, NO_MARGIN);
221 edge = new Segment(b.centerX(), b.y, b.y2(), null, null, CENTER_VERTICAL, NO_MARGIN);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java 241 int x1, y1, x2, y2; local
246 y2 = initialCrop.y + initialCrop.h;
251 y2 = image.getHeight();
255 if (x1 == x2 || y1 == y2) {
269 topEdge: for (; y1 < y2; y1++) {
284 for (int y = y1; y < y2; y++) {
293 for (int y = y1; y < y2; y++) {
301 bottomEdge: for (; y2 > y1; y2--) {
303 if (!filter.crop(image, x, y2 - 1))
    [all...]
  /bootable/recovery/minui/
minui.h 39 void gr_fill(int x1, int y1, int x2, int y2);
  /external/clang/test/SemaCXX/
dcl_init_aggr.cpp 92 float y2[4][3] = { { 1, 3, 5 }, { 2, 4, 6 }, { 3, 5, 7 } }; variable

Completed in 709 milliseconds

1 2 3 45 6 7 8 91011>>