/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/ |
D | p1.cpp | 73 for (int a : A()) in g() local 75 …for (char *a : A()) { // expected-error {{cannot initialize a variable of type 'char *' with an lv… in g() local 77 …for (char *a : X::B()) { // expected-error {{cannot initialize a variable of type 'char *' with an… in g() local 80 for (double a : f) { // expected-error {{cannot use type '<overloaded function type>' as a range}} in g() local 82 for (auto a : A()) { in g() local 84 for (auto a : X::B()) { in g() local 86 …for (auto *a : A()) { // expected-error {{variable 'a' with type 'auto *' has incompatible initial… in g() local 94 for (auto a : A()) in g() local 103 for (auto a : f()) // expected-error {{cannot use type 'void' as a range}} in g() local 107 for (auto a : incomplete) // expected-error {{cannot use incomplete type 'int []' as a range}} in g() local [all …]
|
/external/mesa3d/src/gallium/drivers/nv50/ |
D | nv50_formats.c | 78 #define TBLENT_A_(pf, sf, r, g, b, a, t0, t1, t2, t3, sz, u, br) \ argument 95 #define TBLENT_B_(pf, sf, r, g, b, a, t0, t1, t2, t3, sz, u) \ argument 109 #define C4A(p, n, r, g, b, a, t, s, u, br) \ argument 111 #define C4B(p, n, r, g, b, a, t, s, u) \ argument 114 #define ZXB(p, n, r, g, b, a, t, s, u) \ argument 117 #define ZSB(p, n, r, g, b, a, t, s, u) \ argument 120 #define SZB(p, n, r, g, b, a, t, s, u) \ argument 124 #define F3A(p, n, r, g, b, a, t, s, u) \ argument 126 #define I3A(p, n, r, g, b, a, t, s, u) \ argument 128 #define F3B(p, n, r, g, b, a, t, s, u) \ argument [all …]
|
/external/ceres-solver/internal/ceres/ |
D | jet_test.cc | 52 J MakeJet(double a, double v0, double v1) { in MakeJet() 139 J u = atan2(r * sin(t), r * cos(t)); in TEST() local 180 J u = pow(x, 1.); in TEST() local 191 J u = pow(x, y); in TEST() local 203 J u = pow(kE, logx); in TEST() local 215 J u = pow(e, logx); in TEST() local 227 J u = pow(e, logx); in TEST() local 239 J u = pow(e, y*logx); in TEST() local 248 J a = x + 1.0; in TEST() local 255 J a = 1.0 - x; in TEST() local [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_sse.h | 57 _mm_castsi128_ps(__m128i a) in _mm_castsi128_ps() 59 union m128_types u; in _mm_castsi128_ps() local 65 _mm_castps_si128(__m128 a) in _mm_castps_si128() 67 union m128_types u; in _mm_castps_si128() local 83 union { __m128i m; ubyte ub[16]; } u; in u_print_epi8() local 112 union { __m128i m; ushort us[8]; } u; in u_print_epi16() local 131 union { __m128i m; uint ui[4]; } u; in u_print_epi32() local 145 union { __m128 m; float f[4]; } u; in u_print_ps() local 158 #define U_DUMP_EPI32(a) u_print_epi32(#a, a) argument 159 #define U_DUMP_EPI16(a) u_print_epi16(#a, a) argument [all …]
|
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/ |
D | eval.pass.cpp | 25 f(double x, double a, double b) in f() 37 const double a = 10; in main() local 41 std::vector<D::result_type> u; in main() local 53 const double a = -1.5; in main() local 57 std::vector<D::result_type> u; in main() local 69 const double a = .5; in main() local 73 std::vector<D::result_type> u; in main() local
|
D | eval_param.pass.cpp | 25 f(double x, double a, double b) in f() 37 const double a = 10; in main() local 42 std::vector<D::result_type> u; in main() local 54 const double a = -1.5; in main() local 59 std::vector<D::result_type> u; in main() local 71 const double a = .5; in main() local 76 std::vector<D::result_type> u; in main() local
|
/external/clang/test/CodeGenCXX/ |
D | debug-info-method.cpp | 15 int a; member 17 } u; variable 24 void A::foo(int, A, decltype(u)) { in foo() 27 A a; variable
|
D | mangle-ms-templates-memptrs.cpp | 6 struct A { int a; }; member 8 struct I { union { struct { int a, b; }; }; }; member 10 struct S { int a, b; void f(); virtual void g(); }; member 11 struct M : A, B { int a, b; void f(); virtual void g(); }; member 12 struct V : virtual A { int a, b; void f(); virtual void g(); }; member 13 struct U { int a, b; void f(); virtual void g(); }; member 30 A a; in ReadFields() local 35 U u; in ReadFields() local 95 U u; in CallMethods() local
|
/external/clang/test/Analysis/ |
D | identical-expressions.cpp | 15 int funcParam(int a) in funcParam() 101 int u= 2; in checkNotEqualNestedBinaryOpFloatCompare1() local 110 int u= 2; in checkNotEqualNestedBinaryOpFloatCompare2() local 119 int u= 2; in checkNotEqualNestedBinaryOpFloatCompare3() local 167 int u= 2; in checkNotEqualBinaryOpIntCompare1() local 182 int u= 2; in checkNotEqualBinaryOpIntCompare3() local 190 int u= 2; in checkNotEqualBinaryOpIntCompare4() local 198 int u= 2; in checkNotEqualBinaryOpIntCompare5() local 206 int u= 2; in checkNotEqualNestedBinaryOpIntCompare1() local 215 int u= 2; in checkNotEqualNestedBinaryOpIntCompare2() local [all …]
|
D | operator-calls.cpp | 8 struct test { int a[2]; }; member 16 bool PR7287(X0 a, X0 b) { in PR7287() 91 int a; member 98 A a[3]; member 106 B v, u; in testNoWarning() local 111 B v, u; in testNoWarningMove() local 116 B v, u; in testConsistency() local 125 B v, u; in testConsistencyMove() local
|
D | uninit-const.c | 14 void doStuff_pointerToConstInt(const int *u){}; in doStuff_pointerToConstInt() 15 void doStuff_arrayOfConstInt(const int a[]){}; in doStuff_arrayOfConstInt() 17 void doStuff_constPointerToConstInt (int const * const u){}; in doStuff_constPointerToConstInt() 18 void doStuff_constPointerToConstPointerToConstInt(int const * const * const u){}; in doStuff_constPointerToConstPointerToConstInt() 19 void doStuff_pointerToConstPointerToConstInt(int const * const * u){}; in doStuff_pointerToConstPointerToConstInt() 20 void doStuff_pointerToPointerToConstInt (int const **u){}; in doStuff_pointerToPointerToConstInt() 22 void doStuff_variadic(const int *u, ...){}; in doStuff_variadic() 100 int a[6]; in f_9() local 107 int a[6]; // expected-note {{'a' initialized here}} in f_10() local 183 int u=3; in f_variadic_inp_inp() local [all …]
|
D | PR9741.cpp | 5 int a[] = { 1, 2, 3 }; in f() local 6 unsigned int u = 0; in f() local
|
/external/skia/src/utils/ |
D | SkMatrix22.cpp | 14 const SkScalar& a = h.fX; in SkComputeGivensRotation() local 27 SkScalar u = SkScalarCopySign(SkScalarSqrt(SK_Scalar1 + t*t), b); in SkComputeGivensRotation() local 33 SkScalar u = SkScalarCopySign(SkScalarSqrt(SK_Scalar1 + t*t), a); in SkComputeGivensRotation() local
|
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/ |
D | eval.pass.cpp | 36 f(double x, double a, double m, double b, double c) in f() 53 std::vector<D::result_type> u; in main() local 62 double a; in main() local 103 std::vector<D::result_type> u; in main() local 112 double a; in main() local 153 std::vector<D::result_type> u; in main() local 162 double a; in main() local 203 std::vector<D::result_type> u; in main() local 212 double a; in main() local 253 std::vector<D::result_type> u; in main() local [all …]
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
D | cmsmtrx.c | 42 void CMSEXPORT _cmsVEC3minus(cmsVEC3* r, const cmsVEC3* a, const cmsVEC3* b) in _cmsVEC3minus() 50 void CMSEXPORT _cmsVEC3cross(cmsVEC3* r, const cmsVEC3* u, const cmsVEC3* v) in _cmsVEC3cross() 58 cmsFloat64Number CMSEXPORT _cmsVEC3dot(const cmsVEC3* u, const cmsVEC3* v) in _cmsVEC3dot() 64 cmsFloat64Number CMSEXPORT _cmsVEC3length(const cmsVEC3* a) in _cmsVEC3length() 72 cmsFloat64Number CMSEXPORT _cmsVEC3distance(const cmsVEC3* a, const cmsVEC3* b) in _cmsVEC3distance() 84 void CMSEXPORT _cmsMAT3identity(cmsMAT3* a) in _cmsMAT3identity() 92 cmsBool CloseEnough(cmsFloat64Number a, cmsFloat64Number b) in CloseEnough() 98 cmsBool CMSEXPORT _cmsMAT3isIdentity(const cmsMAT3* a) in _cmsMAT3isIdentity() 114 void CMSEXPORT _cmsMAT3per(cmsMAT3* r, const cmsMAT3* a, const cmsMAT3* b) in _cmsMAT3per() 129 cmsBool CMSEXPORT _cmsMAT3inverse(const cmsMAT3* a, cmsMAT3* b) in _cmsMAT3inverse() [all …]
|
/external/v8/test/mjsunit/compiler/ |
D | inline-arity-mismatch.js | 32 function f(a) { argument 36 function g(a, b) { argument 40 function h1(a, b) { argument 44 function h2(a, b) { argument 60 var u = {y:0, x:1}; variable
|
/external/v8/test/mjsunit/regress/ |
D | regress-crbug-309623.js | 30 var u = new Uint32Array(2); variable 34 var a = [0, 1, 2]; variable
|
/external/clang/test/CodeGen/ |
D | 2007-11-07-CopyAggregateAlign.c | 2 struct A { char s, t, u, v; short a; }; member 7 void q() { struct A a, b; a = b; } in q() local
|
D | union.c | 4 int a; member 6 } u; variable 31 union S65 { enum E9 a; } ; union S65 s65; member 39 union RR {_Bool a : 1;} RRU; member 50 long long u : 56; member 59 } a; variable
|
D | 2003-10-09-UnionInitializerBug.c | 4 unsigned a; member 11 void **a; member 13 }u; member
|
/external/clang/test/Sema/ |
D | 128bitint.c | 8 int a[((i128)-1 ^ (i128)-2) == 1 ? 1 : -1]; variable 9 int a[(u128)-1 > 1LL ? 1 : -1]; variable 10 int a[__SIZEOF_INT128__ == 16 ? 1 : -1]; variable 17 unsigned __int128 u = (unsigned __int128)-1; variable
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
D | lattice.c | 35 int n,k,i,u,temp1; in WebRtcIsac_NormLatticeFilterMa() local 40 double a[MAX_AR_MODEL_ORDER+1]; in WebRtcIsac_NormLatticeFilterMa() local 116 int n,k,i,u,temp1; in WebRtcIsac_NormLatticeFilterAr() local 120 double a[MAX_AR_MODEL_ORDER+1]; in WebRtcIsac_NormLatticeFilterAr() local 188 void WebRtcIsac_Dir2Lat(double *a, in WebRtcIsac_Dir2Lat()
|
/external/libyuv/files/include/libyuv/ |
D | format_conversion.h | 51 #define BayerRGBToI420(b, bs, f, y, ys, u, us, v, vs, w, h) \ argument 92 #define I420ToBayerRGB(y, ys, u, us, v, vs, b, bs, f, w, h) \ argument 125 #define BayerRGBToARGB(b, bs, f, a, as, w, h) BayerToARGB(b, bs, a, as, w, h, f) argument 155 #define ARGBToBayerRGB(a, as, b, bs, f, w, h) ARGBToBayer(b, bs, a, as, w, h, f) argument
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | format_conversion.h | 51 #define BayerRGBToI420(b, bs, f, y, ys, u, us, v, vs, w, h) \ argument 92 #define I420ToBayerRGB(y, ys, u, us, v, vs, b, bs, f, w, h) \ argument 125 #define BayerRGBToARGB(b, bs, f, a, as, w, h) BayerToARGB(b, bs, a, as, w, h, f) argument 155 #define ARGBToBayerRGB(a, as, b, bs, f, w, h) ARGBToBayer(b, bs, a, as, w, h, f) argument
|
/external/v8/benchmarks/ |
D | navier-stokes.js | 128 function lin_solve(b, x, x0, a, c) argument 163 function lin_solve2(x, x0, y, y0, a, c) argument 204 function advect(b, d, d0, u, v, dt) argument 239 function project(u, v, p, div) argument 277 function dens_step(x, x0, u, v, dt) argument 284 function vel_step(u, v, u0, v0, dt) argument 298 var uiCallback = function(d,u,v) {}; argument 300 function Field(dens, u, v) { argument 322 function queryUI(d, u, v) argument
|