/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/clang/test/CXX/temp/temp.spec/ |
no-body.cpp | 59 template<typename T> struct x2 { }; struct 63 template struct x2<int> { }; // expected-error {{explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}} struct
|
/external/clang/test/Sema/ |
bitfield.c | 33 struct {unsigned x : 2;} x2; variable in typeref:struct:__anon16861
|
tentative-decls.c | 5 static struct a x2; // expected-warning{{tentative definition of variable with internal linkage has incomplete non-array type 'struct a'}} variable in typeref:struct:a
|
types.c | 70 typedef int __attribute__ ((ext_vector_type(8192))) x2; // expected-error {{vector size too large}} typedef
|
/external/clang/test/SemaCXX/ |
switch.cpp | 32 void x2() { function
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
tsan_mop.cc | 197 int x2 = x; local 198 (void)x2; 203 int x2 = x; local 204 (void)x2;
|
/external/eigen/test/ |
array_replicate.cpp | 32 MatrixX x1, x2; local 44 x2.resize(2*rows,3*cols); 45 x2 << m2, m2, m2, 47 VERIFY_IS_APPROX(x2, (m2.template replicate<2,3>())); 49 x2.resize(rows,f1); 51 x2.col(j) = v1; 52 VERIFY_IS_APPROX(x2, v1.rowwise().replicate(f1));
|
/external/eigen/unsupported/Eigen/src/MoreVectorization/ |
MathFunctions.h | 70 Packet4f x2=a; local 71 z2=pmul(x2,x2); 77 z2=pmadd(temp,x2,x2);
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
arc.h | 50 VGfloat x1, y1, x2, y2; member in struct:arc 58 VGfloat x2, VGfloat y2,
|
/external/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...] |
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
hp_wsp.c | 87 Word16 x0, x1, x2, x3; local 99 x2 = mem[8]; 103 x3 = x2; 104 x2 = x1; 120 L_tmp += (x2 * b[2])<<1; 143 mem[8] = x2;
|
/frameworks/av/media/libstagefright/foundation/ |
base64.cpp | 107 uint8_t x2 = data[i + 1]; local 111 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f)); 112 out->append(encode6Bit((x2 << 2 | x3 >> 6) & 0x3f)); 121 uint8_t x2 = data[i + 1]; local 123 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f)); 124 out->append(encode6Bit((x2 << 2) & 0x3f));
|
/hardware/samsung_slsi/exynos5/include/ |
ExynosRect.h | 122 int x2; //!< Right (The x-coordinate value of lower-right corner) member in struct:ExynosRect2 131 x2 = _x2_; 140 x2 = other->x2; 149 x2 = other.x2; 159 && x2 == other.x2
|
/external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/ |
sbc_dct.c | 87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp; local 94 x2 = (pInVect[2] + pInVect[6]) >>1; 106 /* rearrangement of x2 and x6 as in (15) */ 107 x2 -=x6; 110 /* 2-point IDCT of x2 and x6 and post-multiplication as in (15) */ 112 temp = x2 ; 113 SBC_IDCT_MULT(SBC_COS_PI_SUR_8,( x2 + x6 ), x2); /*x2 = ( x2 + x6 ) * cos(1*pi/8) ; * 209 SINT32 temp,x2; local [all...] |
/external/ceres-solver/internal/ceres/ |
runtime_numeric_diff_cost_function_test.cc | 54 // y1 = x1'x2 -> dy1/dx1 = x2, dy1/dx2 = x1 55 // y2 = (x1'x2)^2 -> dy2/dx1 = 2 * x2 * (x1'x2), dy2/dx2 = 2 * x1 * (x1'x2) 56 // y3 = x2'x2 -> dy3/dx1 = 0, dy3/dx2 = 2 * x2 62 mutable_parameter_block_sizes()->push_back(5); // x2 94 double x2[] = { 9.0, 9.0, 5.0, 5.0, 1.0 }; local 167 double x2[5]; member in struct:ceres::internal::__anon1318 190 double *x2 = &(kTests[k].x2[0]); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
LinearGradientAttributes.h | 41 SVGLength x2() const { return m_x2; } function in struct:WebCore::LinearGradientAttributes
|
SVGPathSegCurvetoCubic.h | 30 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) 36 , m_x2(x2) 69 float x2() const { return m_x2; } function in class:WebCore::SVGPathSegCurvetoCubic 70 void setX2(float x2) 72 m_x2 = x2;
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afwarp.h | 36 FT_Pos x1, x2; member in struct:AF_WarperRec_
|
/external/chromium_org/third_party/openssl/openssl/crypto/ec/ |
ec2_mult.c | 109 /* Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in Montgomery 116 const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) 129 if (!group->meth->field_mul(group, z1, z1, x2, ctx)) goto err; 143 /* Compute the x, y affine coordinates from the point (x1, z1) (x2, z2) 153 BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) 160 BN_zero(x2); 167 if (!BN_copy(x2, x)) return 0; 187 if (!BN_GF2m_add(z2, z2, x2)) goto err; 198 if (!group->meth->field_mul(group, x2, x1, t3, ctx)) goto err 220 BIGNUM *x1, *x2, *z1, *z2; local [all...] |
/external/chromium_org/third_party/opus/src/celt/ |
celt.c | 92 opus_val32 x0, x1, x2, x3, x4; local 96 x2 = x[-T]; 102 + MULT16_32_Q15(g10,x2) 106 x3=x2; 107 x2=x1; 121 opus_val32 x0, x1, x2, x3, x4; local 141 x2 = x[-T1 ]; 153 + MULT16_32_Q15(MULT16_16_Q15(f,g10),x2) 157 x3=x2; 158 x2=x1 [all...] |
mathops.c | 144 opus_val16 x2; local 146 x2 = MULT16_16_P15(x,x); 147 return ADD16(1,MIN16(32766,ADD32(SUB16(L1,x2), MULT16_16_P15(x2, ADD32(L2, MULT16_16_P15(x2, ADD32(L3, MULT16_16_P15(L4, x2
|
/external/clang/test/Analysis/ |
global-region-invalidation.c | 89 static const int x2 = x; variable 91 clang_analyzer_eval(x2 == 0); // expected-warning{{TRUE}} 93 clang_analyzer_eval(x2 == 0); // expected-warning{{TRUE}}
|
/external/clang/test/CodeGen/ |
stdcall-fastcall.c | 86 double x2; member in struct:S2
|
/external/clang/test/Lexer/ |
ms-extensions.c | 5 __int16 x2 = 4i16; variable
|