HomeSort by relevance Sort by last modified time
    Searched defs:x2 (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/v8/test/mjsunit/
obj-construct.js 41 var x2 = { a: 3, b: 4 };
top-level-assignments.js 62 var x2 = new Object(); class
65 x2.a = 7;
66 x2.b = function() { return 42; };
69 x2.c = 88;
70 x2.d = "A Man Called Horse";
77 assertEquals(7, x2.a);
78 assertEquals(42, x2.b());
79 assertEquals(88, x2.c);
80 assertEquals("A Man Called Horse", x2.d);
  /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
median5.cpp 120 int16 x1, x2, x3, x4, x5; local
124 x2 = x[-1];
131 if (x2 < x1)
134 x1 = x2;
135 x2 = tmp;
153 if (x3 < x2)
155 tmp = x2;
156 x2 = x3;
159 if (x4 < x2)
161 tmp = x2;
    [all...]
highpass_400hz_at_12k8.cpp 149 int16 i, x2; local
171 x2 = x1;
174 L_tmp2 = fxp_mac_16by16(x2, 915, L_tmp2);
highpass_50hz_at_12k8.cpp 151 int16 i, x2; local
176 x2 = x1;
179 L_tmp2 = fxp_mac_16by16(x2, 8106, L_tmp2);
  /external/skia/src/animator/
SkDrawLine.h 30 SkScalar x2; member in class:SkLine
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
median5.cpp 120 int16 x1, x2, x3, x4, x5; local
124 x2 = x[-1];
131 if (x2 < x1)
134 x1 = x2;
135 x2 = tmp;
153 if (x3 < x2)
155 tmp = x2;
156 x2 = x3;
159 if (x4 < x2)
161 tmp = x2;
    [all...]
highpass_400hz_at_12k8.cpp 149 int16 i, x2; local
171 x2 = x1;
174 L_tmp2 = fxp_mac_16by16(x2, 915, L_tmp2);
highpass_50hz_at_12k8.cpp 151 int16 i, x2; local
176 x2 = x1;
179 L_tmp2 = fxp_mac_16by16(x2, 8106, L_tmp2);
  /external/dropbear/libtommath/etc/
mersenne.c 74 long x1, x2; local
76 x2 = 16;
78 x1 = x2;
79 x2 = x1 - ((x1 * x1) - x) / (2 * x1);
80 } while (x1 != x2);
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/
post_pro.cpp 291 Word16 i, x2;
296 x2 = st->x1;
307 L_tmp = L_mac (L_tmp, x2, b[2]);
351 Word16 i, x2; local
365 x2 = st->x1;
378 L_tmp += ((Word32) x2) * c_b2;
  /external/webkit/WebCore/css/
CSSTimingFunctionValue.h 36 static PassRefPtr<CSSTimingFunctionValue> create(double x1, double y1, double x2, double y2)
38 return adoptRef(new CSSTimingFunctionValue(x1, y1, x2, y2));
45 double x2() const { return m_x2; } function in class:WebCore::CSSTimingFunctionValue
49 CSSTimingFunctionValue(double x1, double y1, double x2, double y2)
52 , m_x2(x2)
  /external/webkit/WebCore/platform/animation/
TimingFunction.h 42 TimingFunction(ETimingFunctionType timingFunction, double x1 = 0.0, double y1 = 0.0, double x2 = 1.0, double y2 = 1.0)
46 , m_x2(x2)
58 double x2() const { return m_x2; } function in struct:WebCore::TimingFunction
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
post_pro.cpp 291 Word16 i, x2;
296 x2 = st->x1;
307 L_tmp = L_mac (L_tmp, x2, b[2]);
351 Word16 i, x2; local
365 x2 = st->x1;
378 L_tmp += ((Word32) x2) * c_b2;
  /external/openssl/crypto/rc2/
rc2_cbc.c 140 register RC2_INT x0,x1,x2,x3,t; local
147 x2=(RC2_INT)l&0xffff;
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
161 x2=(t<<3)|(t>>13);
162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
172 x2+=p1[x1&0x3f];
173 x3+=p1[x2&0x3f]
185 register RC2_INT x0,x1,x2,x3,t; local
    [all...]
  /external/webkit/WebCore/platform/graphics/
UnitBezier.h 68 double x2; local
74 x2 = sampleCurveX(t2) - x;
75 if (fabs (x2) < epsilon)
80 t2 = t2 - x2 / d2;
94 x2 = sampleCurveX(t2);
95 if (fabs(x2 - x) < epsilon)
97 if (x > x2)
  /external/freetype/src/autofit/
afwarp.h 36 FT_Pos x1, x2; member in struct:AF_WarperRec_
  /external/opencore/codecs_v2/video/m4v_h263/dec/src/
get_pred_adv_b_add.cpp 868 uint32 x1, x2, x1m, x2m, y1, y2, y1m, y2m; /* new way */ local
    [all...]
  /external/openssl/crypto/ec/
ec2_mult.c 107 /* Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in Montgomery
114 const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx)
127 if (!group->meth->field_mul(group, z1, z1, x2, ctx)) goto err;
141 /* Compute the x, y affine coordinates from the point (x1, z1) (x2, z2)
151 BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx)
158 BN_zero(x2);
165 if (!BN_copy(x2, x)) return 0;
185 if (!BN_GF2m_add(z2, z2, x2)) goto err;
196 if (!group->meth->field_mul(group, x2, x1, t3, ctx)) goto err
218 BIGNUM *x1, *x2, *z1, *z2; local
    [all...]
  /external/qemu/android/skin/
rect.h 61 int x2, y2; member in struct:__anon4156
64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
  /external/webkit/WebCore/platform/graphics/qt/
FontQt.cpp 113 float x2 = line.cursorToX(to); local
114 if (x2 < x1)
115 qSwap(x1, x2);
119 QRectF clip(point.x() + x1, point.y() - ascent, x2 - x1, fm.height());
209 float x2 = line.cursorToX(to); local
210 if (x2 < x1)
211 qSwap(x1, x2);
213 return FloatRect(pt.x() + x1, pt.y(), x2 - x1, h);
  /external/webkit/WebCore/svg/
LinearGradientAttributes.h 43 SVGLength x2() const { return m_x2; } function in struct:WebCore::LinearGradientAttributes
SVGPathSegCurvetoCubic.h 32 SVGPathSegCurvetoCubic(float x, float y, float x1, float y1, float x2, float y2) : SVGPathSeg() , m_x(x) , m_y(y) , m_x1(x1) , m_y1(y1) , m_x2(x2) , m_y2(y2) {}
48 void setX2(float x2) { m_x2 = x2; }
49 float x2() const { return m_x2; } function in class:WebCore::SVGPathSegCurvetoCubic
65 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(float x, float y, float x1, float y1, float x2, float y2)
67 return adoptRef(new SVGPathSegCurvetoCubicAbs(x, y, x1, y1, x2, y2));
74 SVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2);
79 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(float x, float y, float x1, float y1, float x2, float y2)
81 return adoptRef(new SVGPathSegCurvetoCubicRel(x, y, x1, y1, x2, y2))
    [all...]
SVGPathSegCurvetoCubicSmooth.h 32 SVGPathSegCurvetoCubicSmooth(float x, float y, float x2, float y2)
33 : m_x(x), m_y(y), m_x2(x2), m_y2(y2) { }
43 void setX2(float x2) { m_x2 = x2; }
44 float x2() const { return m_x2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth
58 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(float x, float y, float x2, float y2) { return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(x, y, x2, y2)); }
64 SVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2);
69 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(float x, float y, float x2, float y2) { return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(x, y, x2, y2));
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_adv_b_add.cpp 867 uint32 x1, x2, x1m, x2m, y1, y2, y1m, y2m; /* new way */ local
    [all...]

Completed in 749 milliseconds

1 2 3 4 5