HomeSort by relevance Sort by last modified time
    Searched defs:x3 (Results 26 - 50 of 107) sorted by null

12 3 4 5

  /external/clang/test/SemaCXX/
default-constructor-initializers.cpp 11 struct X3 : public X2 { // expected-error {{implicit default constructor for 'X3' must explicitly initialize the base class 'X2' which does not have a default constructor}}
13 X3 x3; // expected-note {{first required here}} variable
  /external/openssh/
jpake.h 51 BIGNUM *x3; /* random in Zq */ member in struct:jpake_ctx
63 BIGNUM *g_x3; /* g^x3 */
67 BIGNUM *a; /* g^((x1+x3+x4)*x2*s) */
70 BIGNUM *b; /* g^((x1+x2+x3)*x4*s) */
  /external/valgrind/main/memcheck/tests/
mempool.c 115 char *x1, *x2, *x3, *x4, *x5; local
124 x3 = allocate(p, 10);
135 *x3 = 'c'; // invalid
  /external/clang/test/ASTMerge/Inputs/
enum1.c 20 } x3; variable in typeref:enum:E3
enum2.c 20 } x3; variable in typeref:enum:E3
struct1.c 24 struct S3 { int i; float f; double d; } x3; variable in typeref:struct:S3
struct2.c 21 struct S3 { int i; float f; } x3; variable in typeref:struct:S3
  /external/clang/test/CodeGen/
decl.c 117 long x3(x0 x0a, x5 a) { function
override-layout.c 34 // CHECK: Type: struct X3
35 struct X3 {
126 struct X3 x3; local
127 x3.y = sizeof(struct X3);
  /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/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/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 268 ECFieldElement x3 = gamma.square().subtract(this.x).subtract(b.x); local
269 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
271 return new ECPoint.Fp(curve, x3, y3);
294 ECFieldElement x3 = gamma.square().subtract(this.x.multiply(TWO)); local
295 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
297 return new ECPoint.Fp(curve, x3, y3, this.withCompression);
494 ECFieldElement.F2m x3 local
498 = (ECFieldElement.F2m)lambda.multiply(this.x.add(x3)).add(x3).add(this.y);
500 return new ECPoint.F2m(curve, x3, y3, withCompression)
553 ECFieldElement.F2m x3 local
    [all...]
  /external/clang/test/FixIt/
fixit.cpp 74 int x3 += 0; // expected-error {{invalid '+=' at end of declaration; did you mean '='?}} member in namespace:rdar8488464
94 int x3 += 0; // expected-error {{invalid '+=' at end of declaration; did you mean '='?}} local
95 (void)x3;
121 if (int x3 += 0) { (void)x3; } // expected-error {{invalid '+=' at end of declaration; did you mean '='?}}
  /external/clang/test/Sema/
expr-address-of.c 25 int *x3 = &y[10]; local
61 register int x3[10][10][10]; local
62 int (*_dummy3)[10] = &x3[0][0]; // expected-error {{address of register variable requested}}
flexible-array-init.c 10 struct one x3 = {5, {1, 2, 3}}; // expected-error{{initialization of flexible array member is not allowed}} local
  /external/skia/src/core/
SkBitmapProcState_sample.h 102 SRCTYPE x3 = srcAddr[UNPACK_SECONDARY_SHORT(xx1)]; local
107 *colors++ = RETURNDST(x3);
SkEdge.cpp 312 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
323 x3 = int(pts[3].fX * scale);
333 x3 = pts[3].fX >> shift;
341 SkTSwap(x0, x3);
364 SkFDot6 dx = cubic_delta_from_line(x0, x1, x2, x3);
393 SkFixed D = SkFDot6UpShift(x3 + 3 * (x1 - x2) - x0, upShift);
409 fCLastX = SkFDot6ToFixed(x3);

Completed in 851 milliseconds

12 3 4 5