HomeSort by relevance Sort by last modified time
    Searched refs:x2 (Results 76 - 100 of 687) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/tremolo/Tremolo/
mdct.c 200 DATA_TYPE *x2 = x + (points>>1) - 4; local
206 s2 = x2[1] - x2[0]; x1[1] = x2[1] + x2[0];
207 s3 = x2[3] - x2[2]; x1[3] = x2[3] + x2[2];
208 XPROD31( s1, s0, T[0], T[1], &x2[0], &x2[2] )
    [all...]
  /frameworks/base/awt/java/awt/geom/
RectangularShape.java 194 * @param x2
199 public void setFrameFromDiagonal(double x1, double y1, double x2, double y2) {
201 if (x1 < x2) {
203 rw = x2 - x1;
205 rx = x2;
206 rw = x1 - x2;
279 int x2 = (int)Math.ceil(getMaxX()); local
281 return new Rectangle(x1, y1, x2 - x1, y2 - y1);
Rectangle2D.java 620 * @param x2
630 public boolean intersectsLine(double x1, double y1, double x2, double y2) {
636 || (rx1 <= x2 && x2 <= rx2 && ry1 <= y2 && y2 <= ry2)
637 || Line2D.linesIntersect(rx1, ry1, rx2, ry2, x1, y1, x2, y2)
638 || Line2D.linesIntersect(rx2, ry1, rx1, ry2, x1, y1, x2, y2);
680 double x2 = x1 + getWidth(); local
683 return x1 <= x && x < x2 && y1 <= y && y < y2;
693 double x2 = x1 + getWidth(); local
696 return x + width > x1 && x < x2 && y + height > y1 && y < y2
706 double x2 = x1 + getWidth(); local
728 double x2 = Math.min(src1.getMaxX(), src2.getMaxX()); local
749 double x2 = Math.max(src1.getMaxX(), src2.getMaxX()); local
767 double x2 = Math.max(getMaxX(), x); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/
LayoutFigure.java 102 int x2 = mHighlightInfo.linePoints[1].x; local
108 if (x2 <= 0) x2++;
113 if (x2 >= w - 1) x2--;
118 x2 += bx;
126 graphics.drawLine(x1, y1, x2, y2);
  /external/qemu/android/skin/
argb.h 87 #define ARGB_DECL2(x1,x2) mmx_t x1, x2
92 #define ARGB_SUM(x1,x2,x3) x1 = _mm_add_pi32(x2, x3)
100 #define ARGB_INTERP255(x1,x2,x3,alpha) \
101 x1 = mmx_interp255( x2, x3, _zero, (alpha))
103 #define ARGB_ADDW_11(x1,x2,x3) \
104 ARGB_SUM(x1,x2,x3)
106 #define ARGB_ADDW_31(x1,x2,x3) \
108 mmx_t _t1 = _mm_add_pi16(x2, x3);
    [all...]
  /external/v8/test/mjsunit/
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);
  /frameworks/base/awt/java/awt/
BasicStroke.java 657 * @param x2
662 void addCap(BufferedPath p, double x0, double y0, double x2, double y2) {
667 double x20 = x2 - x0;
672 p.lineTo(x2, y2);
687 p.cubicTo(x3 - mx, y3 - my, x2 - y20, y2 + x20, x2, y2);
691 p.lineTo(x2 - y20, y2 + x20);
692 p.lineTo(x2, y2);
706 * @param x2
714 void addJoin(BufferedPath p, double x0, double y0, double x2, double y2, boolean isLeft)
    [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/netcat/scripts/
webproxy 105 read x1 x2 x3 x4
106 echo "=== query: $x1 $x2 $x3 $x4" >> $LFILE
109 hurl=`echo "$x2" | sed -e "s+.*//++" -e 's+[\`'\''|$;<>{}\\!*()"]++g'`
  /external/openssl/crypto/rc2/
rc2_locl.h 148 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff; \
150 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff; \
152 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff; \
153 x2=(t<<3)|(t>>13); \
154 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff; \
  /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;
  /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;
  /bionic/libc/kernel/common/linux/
xattr.h 16 #define XATTR_REPLACE 0x2
  /external/freetype/src/autofit/
afwarp.h 36 FT_Pos x1, x2; member in struct:AF_WarperRec_
  /external/webkit/JavaScriptCore/assembler/
MacroAssemblerARM.cpp 74 if (address.offset >= 0 && address.offset + 0x2 <= 0xff) {
77 m_assembler.ldrh_u(ARMRegisters::S0, ARMRegisters::S0, ARMAssembler::getOp2Byte(address.offset + 0x2));
81 m_assembler.ldrh_d(ARMRegisters::S0, ARMRegisters::S0, ARMAssembler::getOp2Byte(-address.offset - 0x2));
86 m_assembler.add_r(ARMRegisters::S0, ARMRegisters::S0, ARMAssembler::OP2_IMM | 0x2);
  /external/webkit/WebCore/svg/
SVGLinearGradientElement.h 50 DECLARE_ANIMATED_PROPERTY(SVGLinearGradientElement, SVGNames::x2Attr, SVGLength, X2, x2)
SVGPathElement.h 72 static PassRefPtr<SVGPathSegCurvetoCubicAbs> createSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2);
73 static PassRefPtr<SVGPathSegCurvetoCubicRel> createSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2);
82 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> createSVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2);
83 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> createSVGPathSegCurvetoCubicSmoothRel(float x, float y, float x2, float y2);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
TextColor.java 28 DARK_RED(0x2),
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
xattr.h 16 #define XATTR_REPLACE 0x2
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
xattr.h 16 #define XATTR_REPLACE 0x2
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
xattr.h 16 #define XATTR_REPLACE 0x2
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
xattr.h 16 #define XATTR_REPLACE 0x2
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
xattr.h 16 #define XATTR_REPLACE 0x2
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
xattr.h 16 #define XATTR_REPLACE 0x2
  /system/core/sh/
parser.h 58 #define VSMINUS 0x2 /* ${var-text} */

Completed in 669 milliseconds

1 2 34 5 6 7 8 91011>>