/external/clang/test/CXX/special/class.copy/ |
p33-0x.cpp | 11 X x2; local 15 return x2; 21 X x2; local 23 throw x2; 36 X x2; local 38 throw x2; // okay 48 T x2; local 50 throw x2; // okay
|
/external/clang/test/CXX/temp/temp.arg/temp.arg.type/ |
p2-cxx0x.cpp | 16 X<A*> x2; local
|
/external/clang/test/CXX/temp/temp.names/ |
p3-0x.cpp | 5 X<(1>2)> x2; // OK variable
|
/external/clang/test/SemaCXX/ |
dependent-types.cpp | 7 T* x2; local
|
warn-dangling-field.cpp | 27 X &x1, *x2; member in struct:S3 28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator
|
cxx0x-class.cpp | 25 static constexpr float x2 = 5.0f; member in struct:rdar8367341::A
|
warn-unused-result.cpp | 41 X x, *x2; local 43 x2->foo(); // expected-warning {{ignoring return value}}
|
/external/eigen/test/eigen2/ |
eigen2_smallvectors.cpp | 18 x2 = ei_random<Scalar>(), local 21 V2 v2(x1, x2); 22 V3 v3(x1, x2, x3); 23 V4 v4(x1, x2, x3, x4); 27 VERIFY_IS_APPROX(x2, v2.y()); 28 VERIFY_IS_APPROX(x2, v3.y()); 29 VERIFY_IS_APPROX(x2, v4.y());
|
/external/valgrind/main/memcheck/tests/ |
badrw.c | 8 short *x2; local 15 x2 = x-4; 22 y2 = *x2; 23 *x2 = y2;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/ |
armVCM4P2_Clip8_s.s | 36 x2 RN 5 label 50 LDMIA pSrc!,{x2, x3} 60 USAT16 x2, #8, x2 ;// clip two samples to [0,255] 62 STRB x2, [pDst,#4] 63 MOV x2, x2, LSR #16 64 STRB x2, [pDst,#5]
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
eh2.cpp | 21 void x2 () function 30 x2 ();
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
eh2.cpp | 21 void x2 () function 30 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/v8/test/mjsunit/ |
top-level-assignments.js | 62 var x2 = new Object(); class 65 x2.a = 7; 66 x2.b = function() { return 42; }; 69 x2.c = 88; 70 x2.d = "A Man Called Horse"; 77 assertEquals(7, x2.a); 78 assertEquals(42, x2.b()); 79 assertEquals(88, x2.c); 80 assertEquals("A Man Called Horse", x2.d);
|
/external/ceres-solver/examples/ |
powell.cc | 35 // f1 = x1 + 10*x2; 37 // f3 = (x2 - 2*x3)^2 40 // The starting values are x1 = 3, x2 = -1, x3 = 0, x4 = 1. 41 // The minimum is 0 at (x1, x2, x3, x4) = 0. 61 const T* const x2, 63 // f1 = x1 + 10 * x2; 64 residual[0] = x1[0] + T(10.0) * x2[0]; 82 template <typename T> bool operator()(const T* const x2, 85 // f3 = (x2 - 2 x3)^2 86 residual[0] = (x2[0] - T(2.0) * x4[0]) * (x2[0] - T(2.0) * x4[0]) 107 double x2 = -1.0; local [all...] |
/external/ceres-solver/internal/ceres/ |
partitioned_matrix_view_test.cc | 87 Vector x2(m.num_cols()); 88 x2.setZero(); 91 x1(i) = x2(i) = RandDouble(); 98 A_->RightMultiply(x2.data(), y2.data()); 112 Vector x2 = Vector::Zero(m.num_cols()); local 116 x2(i + m.num_cols_e()) = x1(i); 123 A_->RightMultiply(x2.data(), y2.data());
|
/external/clang/test/CXX/dcl.decl/dcl.init/ |
p6.cpp | 14 const HasUserDefault x2; local
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/ |
p1.cpp | 5 template<typename T> struct x2; 13 struct PR8019::x2 { }; // expected-error{{non-friend class member 'x2' cannot have a qualified name}} struct in class:PR8019::y::PR8019
|
/external/clang/test/CodeGenCXX/ |
global-llvm-constant.cpp | 18 // CHECK: @x2 = constant 19 extern const X x2; 20 const X x2 = { &add }; variable 26 struct X2 { 31 extern const X2 x2b; 32 const X2 x2b = { { { 1 }, { 2 }, { 3 } } };
|
/external/clang/test/Sema/ |
bitfield.c | 33 struct {unsigned x : 2;} x2; variable in typeref:struct:__anon6679
|
/external/dropbear/libtommath/etc/ |
mersenne.c | 74 long x1, x2; local 76 x2 = 16; 78 x1 = x2; 79 x2 = x1 - ((x1 * x1) - x) / (2 * x1); 80 } while (x1 != x2);
|
/external/eigen/test/ |
smallvectors.cpp | 20 x2 = internal::random<Scalar>(), local 23 V2 v2(x1, x2); 24 V3 v3(x1, x2, x3); 25 V4 v4(x1, x2, x3, x4); 29 VERIFY_IS_APPROX(x2, v2.y()); 30 VERIFY_IS_APPROX(x2, v3.y()); 31 VERIFY_IS_APPROX(x2, v4.y());
|
/external/webrtc/src/common_audio/signal_processing/ |
spl_sqrt.c | 26 WebRtc_Word32 A, B, x2; local 44 x2 = ((WebRtc_Word32)x_half) * ((WebRtc_Word32)x_half) * 2; // A = (x/2)^2 45 A = -x2; // A = -(x/2)^2 60 t16 = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(x2, 16);
|
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
post_pro.cpp | 291 Word16 i, x2; 296 x2 = st->x1; 307 L_tmp = L_mac (L_tmp, x2, b[2]); 351 Word16 i, x2; local 365 x2 = st->x1; 378 L_tmp += ((Word32) x2) * c_b2;
|
/frameworks/av/media/libstagefright/codecs/amrwb/src/ |
highpass_400hz_at_12k8.cpp | 149 int16 i, x2; local 171 x2 = x1; 174 L_tmp2 = fxp_mac_16by16(x2, 915, L_tmp2);
|