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

1 2 34 5 6 7 8 91011>>

  /external/oprofile/gui/
oprof_start_util.h 27 inline double ratio(double x1, double x2)
29 return fabs(((x1 - x2) / x2)) * 100;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
idct_vca.cpp 99 int32 x0, x1, x2, x4, x5; local
123 x2 = (181 * (x4 + x5) + 128) >> 8;
130 res2 = (x0 + x2) >> 14;
147 res = (x0 - x2) >> 14;
187 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
200 x2 = blk[10];
210 x6 = (W6 * x2 + 4) >> 3;
211 x2 = (W2 * x2 + 4) >> 3;
212 x8 = x0 - x2;
259 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
296 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
373 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
450 int32 x0, x1, x2, x4, x5, temp; local
507 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
580 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
    [all...]
  /external/bluetooth/bluedroid/gki/ulinux/
data_types.h 65 #define BCM_STRCAT_S(x1,x2,x3) strcat((x1),(x3))
66 #define BCM_STRNCAT_S(x1,x2,x3,x4) strncat((x1),(x3),(x4))
67 #define BCM_STRCPY_S(x1,x2,x3) strcpy((x1),(x3))
68 #define BCM_STRNCPY_S(x1,x2,x3,x4) strncpy((x1),(x3),(x4))
  /external/chromium/chrome/browser/ui/views/
theme_helpers.h 21 // created to calculate the two colors. x1 and x2 are the two pixel positions
23 void GetRebarGradientColors(int width, int x1, int x2,
  /external/chromium_org/third_party/WebKit/public/platform/
WebFloatAnimationCurve.h 45 virtual void add(const WebFloatKeyframe&, double x1, double y1, double x2, double y2) = 0;
WebTransformAnimationCurve.h 45 virtual void add(const WebTransformKeyframe&, double x1, double y1, double x2, double y2) = 0;
  /external/chromium_org/third_party/skia/src/animator/
SkDrawLine.h 22 SkScalar x2; member in class:SkLine
  /external/clang/test/CXX/temp/temp.param/
p15.cpp 6 X<X<int>> *x2; // expected-error{{a space is required between consecutive right angle brackets (use '> >')}} variable
  /external/clang/test/Sema/
parentheses.c 18 (void)(i & 0x2 == 0); // expected-warning {{& has lower precedence than ==}} \
26 (void)(0 == i & 0x2); // expected-warning {{& has lower precedence than ==}} \
42 (void)((i & 0x2) == 0);
43 (void)(i & (0x2 == 0));
  /external/skia/src/animator/
SkDrawLine.h 22 SkScalar x2; member in class:SkLine
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
WapPushManagerParams.java 43 public static final int APP_QUERY_FAILED = 0x2;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
geometry_utils.h 33 static AK_FORCE_INLINE float getAngle(const int x1, const int y1, const int x2, const int y2) {
34 const int dx = x1 - x2;
50 static AK_FORCE_INLINE int getDistanceInt(const int x1, const int y1, const int x2,
52 return static_cast<int>(hypotf(static_cast<float>(x1 - x2), static_cast<float>(y1 - y2)));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_plip.h 26 #define PLIP_SET_TIMEOUT 0x2
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_plip.h 26 #define PLIP_SET_TIMEOUT 0x2
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_plip.h 26 #define PLIP_SET_TIMEOUT 0x2
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLineElement.idl 29 readonly attribute SVGAnimatedLength x2;
SVGLinearGradientElement.idl 29 readonly attribute SVGAnimatedLength x2;
SVGPathSegCurvetoCubicAbs.idl 32 [StrictTypeChecking] attribute float x2;
SVGPathSegCurvetoCubicRel.idl 32 [StrictTypeChecking] attribute float x2;
  /external/chromium_org/third_party/skia/src/svg/
SkSVGLine.cpp 15 SVG_ATTRIBUTE(x2),
27 SVG_ADD_ATTRIBUTE(x2);
  /external/clang/test/SemaCXX/
warn-bad-memaccess.cpp 25 struct X2 : virtual S1 {} x2; variable in typeref:struct:X2
31 memset(&x2, 0, sizeof x2); // \
57 __builtin_memset(&x2, 0, sizeof x2); // \
77 __builtin___memset_chk(&x2, 0, sizeof x2, sizeof x2); // \
  /external/skia/src/svg/
SkSVGLine.cpp 15 SVG_ATTRIBUTE(x2),
27 SVG_ADD_ATTRIBUTE(x2);
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalScaleOperationsTest.java 84 BigDecimal x2 = x1.setScale(75); local
86 assertEquals(0, x1.compareTo(x2));
87 assertEquals(0, x2.compareTo(x1));
91 assertEquals(0, x1.compareTo(x2));
92 assertEquals(0, x2.compareTo(x1));
94 x2.precision();
96 assertEquals(0, x1.compareTo(x2));
97 assertEquals(0, x2.compareTo(x1));
  /external/chromium_org/third_party/openssl/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/chromium_org/third_party/skia/src/utils/
SkCubicInterval.cpp 50 SkScalar x2, SkScalar y2,
53 x2 = SkScalarPin(x2, 0, SK_Scalar1);
58 x2 *= 3;
61 SkScalar t = find_cubic_t(x1, x2 - 2*x1, x1 - x2 + SK_Scalar1, unitX);

Completed in 583 milliseconds

1 2 34 5 6 7 8 91011>>