/external/boringssl/src/ssl/test/runner/poly1305/ |
D | poly1305_test.go | 78 func testSum(t *testing.T, unaligned bool) { 95 func TestBurnin(t *testing.T) { 128 func TestSum(t *testing.T) { testSum(t, false) } 129 func TestSumUnaligned(t *testing.T) { testSum(t, true) } 131 func benchmark(b *testing.B, size int, unaligned bool) { 145 func Benchmark64(b *testing.B) { benchmark(b, 64, false) } 146 func Benchmark1K(b *testing.B) { benchmark(b, 1024, false) } 147 func Benchmark64Unaligned(b *testing.B) { benchmark(b, 64, true) } 148 func Benchmark1KUnaligned(b *testing.B) { benchmark(b, 1024, true) }
|
/external/boringssl/src/ssl/test/runner/ed25519/ |
D | ed25519_test.go | 30 func TestUnmarshalMarshal(t *testing.T) { 48 func TestSignVerify(t *testing.T) { 64 func TestCryptoSigner(t *testing.T) { 92 func TestGolden(t *testing.T) { 149 func BenchmarkKeyGeneration(b *testing.B) { 158 func BenchmarkSigning(b *testing.B) { 171 func BenchmarkVerification(b *testing.B) {
|
/external/clang/test/SemaCXX/ |
D | cxx11-inheriting-ctors.cpp | 9 template<typename X, typename Y> struct T { struct 10 template<typename A> T(X x, A &&a) {} in T() function 12 template<typename A> explicit T(A &&a) in T() function 32 struct B : A {}; struct 40 struct B : A { struct 50 struct B { B() = delete; }; struct
|
D | uninitialized.cpp | 368 class T { class 373 T() {} in T() function in T 374 T(bool (*)[1]) : a() {} in T() function in T 375 T(bool (*)[2]) : a2(a.get()) {} in T() function in T 376 T(bool (*)[3]) : a2(a) {} in T() function in T 377 T(bool (*)[4]) : a(&a) {} in T() function in T 378 T(bool (*)[5]) : a(a.zero()) {} in T() function in T 379 T(bool (*)[6]) : a(a.ONE) {} in T() function in T 380 T(bool (*)[7]) : a(getA()) {} in T() function in T 381 T(bool (*)[8]) : a2(getA(a.TWO)) {} in T() function in T [all …]
|
D | member-init.cpp | 29 template<int n> struct T { static const int B; }; member 30 template<> struct T<2> { template<int C, int D> using B = int; }; typedef 122 struct B { int m1 = sizeof(A) + sizeof(T); }; argument 131 struct B { struct 134 …// expected-note@+1 {{implicit default constructor for 'template_default_ctor::A::B<int>' first re… 141 struct B { struct 144 // expected-note@+1 {{implicit default constructor for 'default_ctor::A::B' first required here}} 152 struct B { struct 162 …// expected-note@+1 {{implicit default constructor for 'member_template::A::B<int>::C' first requi…
|
/external/clang/test/CXX/temp/temp.res/temp.local/ |
D | p6.cpp | 11 struct B { struct 12 …template<typename> struct T {}; // expected-error {{declaration of 'T' shadows template parameter}} struct 18 struct T {}; // expected-error {{declaration of 'T' shadows template parameter}} struct 21 typedef int T; // expected-error {{declaration of 'T' shadows template parameter}} typedef 24 using T = int; // expected-error {{declaration of 'T' shadows template parameter}} typedef 27 int T; // expected-error {{declaration of 'T' shadows template parameter}} member 30 static int T; // expected-error {{declaration of 'T' shadows template parameter}} member 36 enum T { e }; // expected-error {{declaration of 'T' shadows template parameter}} enum 39 enum E { T }; // expected-error {{declaration of 'T' shadows template parameter}} enumerator 46 int T; // expected-error {{declaration of 'T' shadows template parameter}} in b() local [all …]
|
/external/mockito/src/main/java/org/mockito/ |
D | AdditionalAnswers.java | 329 public static <T, A> Answer<T> answer(Answer1<T, A> answer) { in answer() 357 public static <T, A, B> Answer<T> answer(Answer2<T, A, B> answer) { in answer() 387 public static <T, A, B, C> Answer<T> answer(Answer3<T, A, B, C> answer) { in answer() argument 402 public static <A, B, C> Answer<Void> answerVoid(VoidAnswer3<A, B, C> answer) { in answerVoid() argument 419 public static <T, A, B, C, D> Answer<T> answer(Answer4<T, A, B, C, D> answer) { in answer() argument 435 public static <A, B, C, D> Answer<Void> answerVoid(VoidAnswer4<A, B, C, D> answer) { in answerVoid() argument 453 public static <T, A, B, C, D, E> Answer<T> answer(Answer5<T, A, B, C, D, E> answer) { in answer() argument 471 public static <A, B, C, D, E> Answer<Void> answerVoid(VoidAnswer5<A, B, C, D, E> answer) { in answerVoid() argument
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/ |
D | empty_member.pass.cpp | 22 struct B {}; struct 27 typedef std::tuple<int, A> T; in main() typedef 31 typedef std::tuple<A, int> T; in main() typedef 35 typedef std::tuple<A, int, B> T; in main() typedef 39 typedef std::tuple<A, B, int> T; in main() typedef 43 typedef std::tuple<int, A, B> T; in main() typedef
|
/external/clang/test/CodeGenCXX/ |
D | member-templates.cpp | 9 template<typename T> A::A(T) {} in A() argument 11 struct B { struct 16 template<typename T> B::B(T) {} in B() function in B
|
D | mangle-subst.cpp | 14 typedef void T(); typedef 18 void f(T*, T (S::*)) {} in f() argument 22 struct B { }; struct 40 template <typename T> void f1(typename V<T>::U, V<T>) { } in f1() argument 45 template <typename T> void f2(V<T>, typename V<T>::U) { } in f2() 52 template<typename T> void ft3(S1<T>, S1<char>) { } in ft3() 74 struct B { }; struct 77 void f(void (B::*)(), A, A) { } in f() 80 void f(void (B::*)(), A, A, void (B::*)(A), void (A::*)()) { } in f()
|
/external/clang/test/CXX/drs/ |
D | dr6xx.cpp | 43 template<class T> struct B { struct 44 class C { 48 typename C::type ct; // ok, befriended 85 struct B : A {}; struct 103 struct B { virtual void f(); }; struct 149 using T = decltype(S().n); // expected-note 2{{previous}} typedef 150 using T = decltype(static_cast<S&&>(s).n); typedef 151 using T = decltype(S().*&S::n); typedef 152 using T = decltype(static_cast<S&&>(s).*&S::n); // expected-error {{different type}} typedef 153 using T = int&&; // expected-error {{different type}} typedef [all …]
|
/external/clang/test/FixIt/ |
D | typo-crash.cpp | 17 typedef short T; typedef 19 namespace B { namespace 20 typedef short T; typedef
|
/external/libcxx/test/std/utilities/optional/optional.hash/ |
D | hash.pass.cpp | 23 struct B {}; struct 37 typedef int T; in main() typedef 44 typedef std::string T; in main() typedef 51 typedef std::unique_ptr<int> T; in main() typedef
|
/external/clang/test/PCH/ |
D | cxx-alias-decl.h | 4 template<typename U> struct T { struct 5 template<typename V> using A = T<V>; argument 9 template<typename U> using B = S; variable
|
/external/clang/test/CodeGenObjC/ |
D | blocks.m | 9 @interface T interface 10 - (int)foo: (T* (^)(T*)) x; 28 @interface B : A @end interface 29 @implementation B implementation
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/ |
D | is_swappable.pass.cpp | 29 struct B { struct 39 void swap(A&, B&) {} in swap() argument 40 void swap(B&, A&) {} in swap() argument 63 void swap(T&, T&) {} in swap() argument
|
/external/swiftshader/third_party/LLVM/unittests/ADT/ |
D | TripleTest.cpp | 18 Triple T; in TEST() local 76 Triple T; in TEST() local 106 static std::string Join(StringRef A, StringRef B, StringRef C) { in Join() 111 static std::string Join(StringRef A, StringRef B, StringRef C, StringRef D) { in Join() 229 Triple T; in TEST() local
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/ |
D | p12-0x.cpp | 15 struct T { struct 16 int n; 17 static void f() { in f() 37 struct B { int f() { return sizeof(A::E); } }; // ok in f() argument
|
/external/mesa3d/src/util/ |
D | macros.h | 172 # define HAS_TRIVIAL_DESTRUCTOR(T) __has_trivial_destructor(T) argument 176 # define HAS_TRIVIAL_DESTRUCTOR(T) __has_trivial_destructor(T) argument 180 # define HAS_TRIVIAL_DESTRUCTOR(T) __has_trivial_destructor(T) argument 187 # define HAS_TRIVIAL_DESTRUCTOR(T) (false) argument 234 #define DIV_ROUND_UP( A, B ) ( (A) % (B) == 0 ? (A)/(B) : (A)/(B)+1 ) argument 240 #define MIN2( A, B ) ( (A)<(B) ? (A) : (B) ) argument 243 #define MAX2( A, B ) ( (A)>(B) ? (A) : (B) ) argument 246 #define MIN3( A, B, C ) ((A) < (B) ? MIN2(A, C) : MIN2(B, C)) argument 247 #define MAX3( A, B, C ) ((A) > (B) ? MAX2(A, C) : MAX2(B, C)) argument
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/ |
D | p3.cpp | 82 template <class T> void f(T) { in f() argument 87 template <class T> void f(T) { in f() argument 99 class B { class 126 class B { class 143 class B { class 163 class B { class 183 class B { class
|
/external/libvncserver/client_examples/ |
D | scrap.h | 4 #define T(A, B, C, D) (int)((A<<24)|(B<<16)|(C<<8)|(D<<0)) argument
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/ |
D | unique_ptr.pass.cpp | 24 struct B struct 28 B() {++count;} in B() argument 29 B(const B&) {++count;} in B() function 30 virtual ~B() {--count;} in ~B() argument 48 void fn ( const std::shared_ptr<B> &) { assert (false); } in fn() 51 void assert_deleter ( T * ) { assert(false); } in assert_deleter() argument
|
/external/brotli/enc/ |
D | port.h | 131 #define TEMPLATE_(T) \ argument 137 #define BROTLI_MIN(T, A, B) (brotli_min_ ## T((A), (B))) argument 138 #define BROTLI_MAX(T, A, B) (brotli_max_ ## T((A), (B))) argument 140 #define BROTLI_SWAP(T, A, I, J) { \ argument 146 #define BROTLI_ENSURE_CAPACITY(M, T, A, C, R) { \ argument
|
/external/clang/test/SemaTemplate/ |
D | deduction.cpp | 171 using T = A; in f() typedef 172 using T = int; in f() typedef 189 using T = BindBack<Z, int>::apply<>; typedef 190 using T = Z<int>; typedef 201 using T = Y<int>; typedef 202 using T = S<int, int>; typedef 213 template<typename U> struct B { struct 214 B(int) {} in B() argument 225 template<class...> struct B { }; struct 226 template<class H, class ... Ts> struct B<H, Ts...> : B<> { }; struct [all …]
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
D | MatrixSquareRoot.h | 20 void matrix_sqrt_quasi_triangular_2x2_diagonal_block(const MatrixType& T, typename MatrixType::Inde… in matrix_sqrt_quasi_triangular_2x2_diagonal_block() 35 void matrix_sqrt_quasi_triangular_1x1_off_diagonal_block(const MatrixType& T, typename MatrixType::… in matrix_sqrt_quasi_triangular_1x1_off_diagonal_block() 44 void matrix_sqrt_quasi_triangular_1x2_off_diagonal_block(const MatrixType& T, typename MatrixType::… in matrix_sqrt_quasi_triangular_1x2_off_diagonal_block() 57 void matrix_sqrt_quasi_triangular_2x1_off_diagonal_block(const MatrixType& T, typename MatrixType::… in matrix_sqrt_quasi_triangular_2x1_off_diagonal_block() 70 …gular_solve_auxiliary_equation(MatrixType& X, const MatrixType& A, const MatrixType& B, const Matr… in matrix_sqrt_quasi_triangular_solve_auxiliary_equation() 104 void matrix_sqrt_quasi_triangular_2x2_off_diagonal_block(const MatrixType& T, typename MatrixType::… in matrix_sqrt_quasi_triangular_2x2_off_diagonal_block() 108 Matrix<Scalar,2,2> B = sqrtT.template block<2,2>(j,j); in matrix_sqrt_quasi_triangular_2x2_off_diagonal_block() local 120 void matrix_sqrt_quasi_triangular_diagonal(const MatrixType& T, ResultType& sqrtT) in matrix_sqrt_quasi_triangular_diagonal() 140 void matrix_sqrt_quasi_triangular_off_diagonal(const MatrixType& T, ResultType& sqrtT) in matrix_sqrt_quasi_triangular_off_diagonal()
|