HomeSort by relevance Sort by last modified time
    Searched defs:x3 (Results 51 - 75 of 252) sorted by null

1 23 4 5 6 7 8 91011

  /external/clang/test/CodeGen/
decl.c 117 long x3(x0 x0a, x5 a) { function
regparm-struct.c 39 int x3; member in struct:s3
57 int x3; member in struct:s4
97 float x3; member in struct:s7
120 float x3; member in struct:s9
override-layout.c 40 // CHECK: Type: struct X3
41 struct X3 {
46 void use_X3() { struct X3 x3; x3.y = sizeof(struct X3); }; local
  /external/clang/test/CodeGenCXX/
anonymous-union-member-initializer.cpp 44 X x3; local
46 x3 = x1;
  /external/clang/test/SemaTemplate/
instantiate-complete.cpp 60 struct X3 {
61 X3(T);
65 X3<X1<float> > x3 = x1; local
default-arguments.cpp 7 X<> *x3; // expected-error{{too few template arguments for class template 'X'}} variable
96 template<template<typename T> class X = X2> struct X3 { };
97 int array3[is_same<X3<>, X3<X2> >::value? 1 : -1];
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 79 Packet4f x3 = pmul(x2,x); local
88 y = pmadd(y, x3, y1);
89 y = pmadd(y, x3, y2);
90 y = pmul(y, x3);
  /external/lzma/Asm/x86/
7zAsm.asm 45 x3 equ EBX define
74 r3 equ x3
  /external/skia/src/animator/
SkPathParts.h 93 SkScalar x3; member in class:SkCubicTo
  /external/srtp/tables/
aes_tables.c 94 uint32_t x1, x2, x3; local
104 x3 = x2 ^ x1;
109 tmp.v8[3] = x3;
112 tmp.v8[0] = x3;
119 tmp.v8[1] = x3;
126 tmp.v8[2] = x3;
  /external/v8/test/mjsunit/
smi-ops-inlined.js 238 var x3 = 0x40000000; variable
239 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<1(1)");
245 x3 = 2
246 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<2(2)");
smi-ops.js 245 var x3 = 0x40000000; variable
246 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<1(1)");
252 x3 = 2
253 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<2(2)");
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
p_med_ol.c 174 Word16 x1, x2, x3, x4, x5; local
179 x3 = x[0];
189 if (x3 < x1)
192 x1 = x3;
193 x3 = tmp;
205 if (x3 < x2)
208 x2 = x3;
209 x3 = tmp;
221 if (x4 < x3)
223 x3 = x4
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
idct_vca.cpp 160 int32 x0, x1, x3, x5, x7;//, x8; local
169 x3 = x7;
176 blk[24] = (x0 + x3) >> 8;
180 blk[32] = (x0 - x3) >> 8;
187 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
221 x3 = x7;
234 res = (x2 + x3) >> 14;
240 res = (x2 - x3) >> 14;
259 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
277 x3 = x7
296 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
373 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; 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...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
RotateFilter.java 151 Point x3 = new Point(0.5f * (cosTheta - sinTheta + 1f), local
153 Quad quad = new Quad(x0, x1, x2, x3);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 273 ECFieldElement x3 = gamma.square().subtract(this.x).subtract(b.x); local
274 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
276 return new ECPoint.Fp(curve, x3, y3, withCompression);
299 ECFieldElement x3 = gamma.square().subtract(this.x.multiply(TWO)); local
300 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
302 return new ECPoint.Fp(curve, x3, y3, this.withCompression);
499 ECFieldElement.F2m x3 local
503 = (ECFieldElement.F2m)lambda.multiply(this.x.add(x3)).add(x3).add(this.y);
505 return new ECPoint.F2m(curve, x3, y3, withCompression)
558 ECFieldElement.F2m x3 local
    [all...]
  /external/ceres-solver/internal/ceres/
trust_region_minimizer_test.cc 93 const double x3 = state[2]; local
99 << "x3=" << x3 << ", "
103 const double f2 = sqrt(5.0) * (x3 - x4);
104 const double f3 = pow(x2 - 2.0 * x3, 2.0);
144 2.0*(x2 - 2.0*x3)*(1.0 - 2.0*x3),
152 2.0*(x2 - 2.0*x3)*(x2 - 2.0),
173 gradient[column_index++] = f1 * 10.0 + f3 * 2.0 * (x2 - 2.0 * x3);
178 f2 * sqrt(5.0) + f3 * (2.0 * 2.0 * (2.0 * x3 - x2))
    [all...]
  /external/chromium_org/base/
bind_internal.h 1375 typename Bound3UnwrapTraits::ForwardType x3 = local
1519 typename Bound3UnwrapTraits::ForwardType x3 = local
1556 typename Bound3UnwrapTraits::ForwardType x3 = local
1715 typename Bound3UnwrapTraits::ForwardType x3 = local
1755 typename Bound3UnwrapTraits::ForwardType x3 = local
1796 typename Bound3UnwrapTraits::ForwardType x3 = local
1972 typename Bound3UnwrapTraits::ForwardType x3 = local
2016 typename Bound3UnwrapTraits::ForwardType x3 = local
2061 typename Bound3UnwrapTraits::ForwardType x3 = local
2107 typename Bound3UnwrapTraits::ForwardType x3 = local
2298 typename Bound3UnwrapTraits::ForwardType x3 = local
2345 typename Bound3UnwrapTraits::ForwardType x3 = local
2393 typename Bound3UnwrapTraits::ForwardType x3 = local
2442 typename Bound3UnwrapTraits::ForwardType x3 = local
2492 typename Bound3UnwrapTraits::ForwardType x3 = local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGParserUtilities.cpp 544 float x3; local
550 || !parseNumber(current, end, x3)
555 point3 = FloatPoint(x3, y3);
  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcState_sample.h 117 SRCTYPE x3 = srcAddr[UNPACK_SECONDARY_SHORT(xx1)]; local
122 *colors++ = RETURNDST(x3);
SkEdge.cpp 339 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
350 x3 = int(pts[3].fX * scale);
360 x3 = pts[3].fX >> shift;
368 SkTSwap(x0, x3);
391 SkFDot6 dx = cubic_delta_from_line(x0, x1, x2, x3);
420 SkFixed D = SkFDot6UpShift(x3 + 3 * (x1 - x2) - x0, upShift);
436 fCLastX = SkFDot6ToFixed(x3);