/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
|
/external/clang/test/CodeGenCXX/ |
anonymous-union-member-initializer.cpp | 44 X x3; local 46 x3 = x1;
|
/external/clang/test/SemaTemplate/ |
instantiate-complete.cpp | 61 struct X3 { 62 X3(T); 66 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 | 101 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/base/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/base/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...] |
block_idct.cpp | 516 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 543 x3 = blk[10]; 567 x1 = W6 * (x3 + x2) + 4; 569 x3 = (x1 + (W2 - W6) * x3) >> 3; 576 x7 = x8 + x3; 577 x8 -= x3; 578 x3 = x0 + x2; 588 res2 = (x3 + x2) >> 14; 606 res = (x3 - x2) >> 14 627 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local 837 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local [all...] |
/system/media/mca/filterpacks/imageproc/java/ |
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/Sema/ |
conversion.c | 275 unsigned char x3 = u64 & mask; local 276 return x1 + x2 + x3;
|
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 | 95 SRCTYPE x3 = srcAddr[UNPACK_SECONDARY_SHORT(xx1)]; local 100 *colors++ = RETURNDST(x3);
|
SkEdge.cpp | 319 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local 330 x3 = int(pts[3].fX * scale); 340 x3 = pts[3].fX >> shift; 348 SkTSwap(x0, x3); 371 SkFDot6 dx = cubic_delta_from_line(x0, x1, x2, x3); 400 SkFixed D = SkFDot6UpShift(x3 + 3 * (x1 - x2) - x0, upShift); 416 fCLastX = SkFDot6ToFixed(x3);
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_utilities_camera.h | 50 \return K(3x3) intrinsic calibration matrix 63 Make a 3x3 identity matrix 72 Invert intrinsic calibration matrix K(3x3) 158 double x3,m; local 160 x3=H[6]*x[0]+H[7]*x[1]+H[8]; 161 if(x3!=0.0) 163 m=1.0/x3;
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/ |
fastidct.cpp | 81 int32 x0, x1, x3, x5, x7;//, x8; local 90 x3 = x7; 97 blk[24] = (x0 + x3) >> 8; 101 blk[32] = (x0 - x3) >> 8; 107 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 125 x3 = x7; 132 blk[24] = (x2 + x3) >> 8; 136 blk[32] = (x2 - x3) >> 8; 142 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 145 x3 = blk[24] 185 int32 x1, x3, x5, x7;\/\/, x8; local 235 int32 x1, x3, x5, x7; local 261 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 432 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 502 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 691 int32 x1, x3, x5, x7; local 746 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 924 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 990 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 1171 int32 x1, x3, x5, x7; local 1223 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 1429 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 1500 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 1692 int32 x1, x3, x5, x7; local 1748 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local [all...] |