/external/eigen/bench/btl/actions/ |
D | action_matrix_matrix_product_bis.hh | 32 template<class Interface> 39 return "matrix_matrix_"+Interface::name(); in name() 50 typename Interface::stl_matrix A_stl; in calculate() 51 typename Interface::stl_matrix B_stl; in calculate() 52 typename Interface::stl_matrix X_stl; in calculate() 60 typename Interface::gene_matrix A_ref; in calculate() 61 typename Interface::gene_matrix B_ref; in calculate() 62 typename Interface::gene_matrix X_ref; in calculate() 64 typename Interface::gene_matrix A; in calculate() 65 typename Interface::gene_matrix B; in calculate() [all …]
|
D | action_ger.hh | 26 template<class Interface> 37 typename Interface::stl_matrix tmp; in Action_ger() 44 Interface::matrix_from_stl(A_ref,A_stl); in Action_ger() 45 Interface::matrix_from_stl(A,A_stl); in Action_ger() 46 Interface::vector_from_stl(B_ref,B_stl); in Action_ger() 47 Interface::vector_from_stl(B,B_stl); in Action_ger() 48 Interface::vector_from_stl(X_ref,X_stl); in Action_ger() 49 Interface::vector_from_stl(X,X_stl); in Action_ger() 62 Interface::free_matrix(A,_size); in ~Action_ger() 63 Interface::free_vector(B); in ~Action_ger() [all …]
|
D | action_syr2.hh | 31 template<class Interface> 41 typename Interface::stl_matrix tmp; in Action_syr2() 48 Interface::matrix_from_stl(A_ref,A_stl); in Action_syr2() 49 Interface::matrix_from_stl(A,A_stl); in Action_syr2() 50 Interface::vector_from_stl(B_ref,B_stl); in Action_syr2() 51 Interface::vector_from_stl(B,B_stl); in Action_syr2() 52 Interface::vector_from_stl(X_ref,X_stl); in Action_syr2() 53 Interface::vector_from_stl(X,X_stl); in Action_syr2() 65 Interface::free_matrix(A,_size); in ~Action_syr2() 66 Interface::free_vector(B); in ~Action_syr2() [all …]
|
D | action_symv.hh | 31 template<class Interface> 49 Interface::matrix_from_stl(A_ref,A_stl); in Action_symv() 50 Interface::matrix_from_stl(A,A_stl); in Action_symv() 51 Interface::vector_from_stl(B_ref,B_stl); in Action_symv() 52 Interface::vector_from_stl(B,B_stl); in Action_symv() 53 Interface::vector_from_stl(X_ref,X_stl); in Action_symv() 54 Interface::vector_from_stl(X,X_stl); in Action_symv() 68 Interface::free_matrix(A,_size); in ~Action_symv() 69 Interface::free_vector(B); in ~Action_symv() 70 Interface::free_vector(X); in ~Action_symv() [all …]
|
D | action_atv_product.hh | 31 template<class Interface> 49 Interface::matrix_from_stl(A_ref,A_stl); in Action_atv_product() 50 Interface::vector_from_stl(B_ref,B_stl); in Action_atv_product() 51 Interface::vector_from_stl(X_ref,X_stl); in Action_atv_product() 53 Interface::matrix_from_stl(A,A_stl); in Action_atv_product() 54 Interface::vector_from_stl(B,B_stl); in Action_atv_product() 55 Interface::vector_from_stl(X,X_stl); in Action_atv_product() 69 Interface::free_matrix(A,_size); in ~Action_atv_product() 70 Interface::free_vector(B); in ~Action_atv_product() 71 Interface::free_vector(X); in ~Action_atv_product() [all …]
|
D | action_matrix_matrix_product.hh | 31 template<class Interface> 51 Interface::matrix_from_stl(A_ref,A_stl); in Action_matrix_matrix_product() 52 Interface::matrix_from_stl(B_ref,B_stl); in Action_matrix_matrix_product() 53 Interface::matrix_from_stl(X_ref,X_stl); in Action_matrix_matrix_product() 55 Interface::matrix_from_stl(A,A_stl); in Action_matrix_matrix_product() 56 Interface::matrix_from_stl(B,B_stl); in Action_matrix_matrix_product() 57 Interface::matrix_from_stl(X,X_stl); in Action_matrix_matrix_product() 77 Interface::free_matrix(A,_size); in ~Action_matrix_matrix_product() 78 Interface::free_matrix(B,_size); in ~Action_matrix_matrix_product() 79 Interface::free_matrix(X,_size); in ~Action_matrix_matrix_product() [all …]
|
D | action_matrix_vector_product.hh | 31 template<class Interface> 51 Interface::matrix_from_stl(A_ref,A_stl); in Action_matrix_vector_product() 52 Interface::matrix_from_stl(A,A_stl); in Action_matrix_vector_product() 53 Interface::vector_from_stl(B_ref,B_stl); in Action_matrix_vector_product() 54 Interface::vector_from_stl(B,B_stl); in Action_matrix_vector_product() 55 Interface::vector_from_stl(X_ref,X_stl); in Action_matrix_vector_product() 56 Interface::vector_from_stl(X,X_stl); in Action_matrix_vector_product() 76 Interface::free_matrix(A,_size); in ~Action_matrix_vector_product() 77 Interface::free_vector(B); in ~Action_matrix_vector_product() 78 Interface::free_vector(X); in ~Action_matrix_vector_product() [all …]
|
D | action_lu_solve.hh | 31 template<class Interface> 39 return "lu_solve_"+Interface::name(); in name() 51 typename Interface::stl_matrix A_stl; in calculate() 52 typename Interface::stl_vector B_stl; in calculate() 53 typename Interface::stl_vector X_stl; in calculate() 61 typename Interface::gene_matrix A; in calculate() 62 typename Interface::gene_vector B; in calculate() 63 typename Interface::gene_vector X; in calculate() 65 typename Interface::gene_matrix LU; in calculate() 67 Interface::matrix_from_stl(A,A_stl); in calculate() [all …]
|
D | action_hessenberg.hh | 30 template<class Interface> 48 Interface::matrix_from_stl(X_ref,X_stl); in Action_hessenberg() 49 Interface::matrix_from_stl(X,X_stl); in Action_hessenberg() 50 Interface::matrix_from_stl(C,C_stl); in Action_hessenberg() 76 Interface::free_matrix(X_ref,_size); in ~Action_hessenberg() 77 Interface::free_matrix(X,_size); in ~Action_hessenberg() 78 Interface::free_matrix(C,_size); in ~Action_hessenberg() 85 return "hessenberg_"+Interface::name(); in name() 93 Interface::copy_matrix(X_ref,X,_size); in initialize() 97 Interface::hessenberg(X,C,_size); in calculate() [all …]
|
D | action_trmm.hh | 31 template<class Interface> 58 Interface::matrix_from_stl(A_ref,A_stl); in Action_trmm() 59 Interface::matrix_from_stl(B_ref,B_stl); in Action_trmm() 60 Interface::matrix_from_stl(X_ref,X_stl); in Action_trmm() 62 Interface::matrix_from_stl(A,A_stl); in Action_trmm() 63 Interface::matrix_from_stl(B,B_stl); in Action_trmm() 64 Interface::matrix_from_stl(X,X_stl); in Action_trmm() 90 Interface::free_matrix(A,_size); in ~Action_trmm() 91 Interface::free_matrix(B,_size); in ~Action_trmm() 92 Interface::free_matrix(X,_size); in ~Action_trmm() [all …]
|
D | action_trisolve_matrix.hh | 31 template<class Interface> 58 Interface::matrix_from_stl(A_ref,A_stl); in Action_trisolve_matrix() 59 Interface::matrix_from_stl(B_ref,B_stl); in Action_trisolve_matrix() 60 Interface::matrix_from_stl(X_ref,X_stl); in Action_trisolve_matrix() 62 Interface::matrix_from_stl(A,A_stl); in Action_trisolve_matrix() 63 Interface::matrix_from_stl(B,B_stl); in Action_trisolve_matrix() 64 Interface::matrix_from_stl(X,X_stl); in Action_trisolve_matrix() 90 Interface::free_matrix(A,_size); in ~Action_trisolve_matrix() 91 Interface::free_matrix(B,_size); in ~Action_trisolve_matrix() 92 Interface::free_matrix(X,_size); in ~Action_trisolve_matrix() [all …]
|
D | action_axpby.hh | 30 template<class Interface> 46 Interface::vector_from_stl(X_ref,X_stl); in Action_axpby() 47 Interface::vector_from_stl(Y_ref,Y_stl); in Action_axpby() 49 Interface::vector_from_stl(X,X_stl); in Action_axpby() 50 Interface::vector_from_stl(Y,Y_stl); in Action_axpby() 65 Interface::free_vector(X_ref); in ~Action_axpby() 66 Interface::free_vector(Y_ref); in ~Action_axpby() 68 Interface::free_vector(X); in ~Action_axpby() 69 Interface::free_vector(Y); in ~Action_axpby() 75 return "axpby_"+Interface::name(); in name() [all …]
|
D | action_axpy.hh | 31 template<class Interface> 50 Interface::vector_from_stl(X_ref,X_stl); in Action_axpy() 51 Interface::vector_from_stl(Y_ref,Y_stl); in Action_axpy() 53 Interface::vector_from_stl(X,X_stl); in Action_axpy() 54 Interface::vector_from_stl(Y,Y_stl); in Action_axpy() 75 Interface::free_vector(X_ref); in ~Action_axpy() 76 Interface::free_vector(Y_ref); in ~Action_axpy() 78 Interface::free_vector(X); in ~Action_axpy() 79 Interface::free_vector(Y); in ~Action_axpy() 86 return "axpy_"+Interface::name(); in name() [all …]
|
D | action_aat_product.hh | 31 template<class Interface> 50 Interface::matrix_from_stl(A_ref,A_stl); in Action_aat_product() 51 Interface::matrix_from_stl(X_ref,X_stl); in Action_aat_product() 53 Interface::matrix_from_stl(A,A_stl); in Action_aat_product() 54 Interface::matrix_from_stl(X,X_stl); in Action_aat_product() 74 Interface::free_matrix(A,_size); in ~Action_aat_product() 75 Interface::free_matrix(X,_size); in ~Action_aat_product() 77 Interface::free_matrix(A_ref,_size); in ~Action_aat_product() 78 Interface::free_matrix(X_ref,_size); in ~Action_aat_product() 86 return "aat_"+Interface::name(); in name() [all …]
|
D | action_ata_product.hh | 31 template<class Interface> 50 Interface::matrix_from_stl(A_ref,A_stl); in Action_ata_product() 51 Interface::matrix_from_stl(X_ref,X_stl); in Action_ata_product() 53 Interface::matrix_from_stl(A,A_stl); in Action_ata_product() 54 Interface::matrix_from_stl(X,X_stl); in Action_ata_product() 74 Interface::free_matrix(A,_size); in ~Action_ata_product() 75 Interface::free_matrix(X,_size); in ~Action_ata_product() 77 Interface::free_matrix(A_ref,_size); in ~Action_ata_product() 78 Interface::free_matrix(X_ref,_size); in ~Action_ata_product() 86 return "ata_"+Interface::name(); in name() [all …]
|
D | action_rot.hh | 26 template<class Interface> 37 typename Interface::stl_matrix tmp; in Action_rot() 42 Interface::vector_from_stl(A_ref,A_stl); in Action_rot() 43 Interface::vector_from_stl(A,A_stl); in Action_rot() 44 Interface::vector_from_stl(B_ref,B_stl); in Action_rot() 45 Interface::vector_from_stl(B,B_stl); in Action_rot() 58 Interface::free_vector(A); in ~Action_rot() 59 Interface::free_vector(B); in ~Action_rot() 60 Interface::free_vector(A_ref); in ~Action_rot() 61 Interface::free_vector(B_ref); in ~Action_rot() [all …]
|
D | action_trisolve.hh | 30 template<class Interface> 55 Interface::matrix_from_stl(L,L_stl); in Action_trisolve() 56 Interface::vector_from_stl(X,X_stl); in Action_trisolve() 57 Interface::vector_from_stl(B,B_stl); in Action_trisolve() 81 Interface::free_matrix(L,_size); in ~Action_trisolve() 82 Interface::free_vector(B); in ~Action_trisolve() 83 Interface::free_vector(X); in ~Action_trisolve() 90 return "trisolve_vector_"+Interface::name(); in name() 102 Interface::trisolve_lower(L,B,X,_size); in calculate() 108 Interface::vector_to_stl(X,resu_stl); in check_result() [all …]
|
D | action_lu_decomp.hh | 30 template<class Interface> 48 Interface::matrix_from_stl(X_ref,X_stl); in Action_lu_decomp() 49 Interface::matrix_from_stl(X,X_stl); in Action_lu_decomp() 50 Interface::matrix_from_stl(C,C_stl); in Action_lu_decomp() 70 Interface::free_matrix(X_ref,_size); in ~Action_lu_decomp() 71 Interface::free_matrix(X,_size); in ~Action_lu_decomp() 72 Interface::free_matrix(C,_size); in ~Action_lu_decomp() 79 return "complete_lu_decomp_"+Interface::name(); in name() 87 Interface::copy_matrix(X_ref,X,_size); in initialize() 91 Interface::lu_decomp(X,C,_size); in calculate() [all …]
|
D | action_partial_lu.hh | 30 template<class Interface> 50 Interface::matrix_from_stl(X_ref,X_stl); in Action_partial_lu() 51 Interface::matrix_from_stl(X,X_stl); in Action_partial_lu() 52 Interface::matrix_from_stl(C,C_stl); in Action_partial_lu() 72 Interface::free_matrix(X_ref,_size); in ~Action_partial_lu() 73 Interface::free_matrix(X,_size); in ~Action_partial_lu() 74 Interface::free_matrix(C,_size); in ~Action_partial_lu() 81 return "partial_lu_decomp_"+Interface::name(); in name() 89 Interface::copy_matrix(X_ref,X,_size); in initialize() 93 Interface::partial_lu_decomp(X,C,_size); in calculate() [all …]
|
D | action_cholesky.hh | 30 template<class Interface> 50 Interface::matrix_from_stl(X_ref,X_stl); in Action_cholesky() 51 Interface::matrix_from_stl(X,X_stl); in Action_cholesky() 52 Interface::matrix_from_stl(C,C_stl); in Action_cholesky() 77 Interface::free_matrix(X_ref,_size); in ~Action_cholesky() 78 Interface::free_matrix(X,_size); in ~Action_cholesky() 79 Interface::free_matrix(C,_size); in ~Action_cholesky() 86 return "cholesky_"+Interface::name(); in name() 94 Interface::copy_matrix(X_ref,X,_size); in initialize() 98 Interface::cholesky(X,C,_size); in calculate() [all …]
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
D | proxy_generator.h | 26 struct Interface; 31 const std::vector<Interface>& interfaces, 35 const std::vector<Interface>& interfaces, 45 const Interface& interface, 50 const Interface& interface, 55 const Interface& interface, 60 const Interface& interface, 85 static void AddSignalHandlerRegistration(const Interface::Signal& signal, 92 const Interface& interface, 97 const Interface& interface, [all …]
|
D | adaptor_generator_unittest.cc | 243 Interface interface; in TEST_F() 248 vector<Interface::Argument>{ in TEST_F() 251 vector<Interface::Argument>{{"", kDBusTypeString}}); in TEST_F() 255 vector<Interface::Argument>{{"", kDBusTypeInt32}}, in TEST_F() 256 vector<Interface::Argument>{{"", kDBusTypeInt64}}); in TEST_F() 261 vector<Interface::Argument>{}, in TEST_F() 262 vector<Interface::Argument>{ in TEST_F() 268 vector<Interface::Argument>{}); in TEST_F() 271 vector<Interface::Argument>{ in TEST_F() 283 Interface interface2; in TEST_F() [all …]
|
D | proxy_generator_mock_unittest.cc | 186 Interface interface; in TEST_F() 191 vector<Interface::Argument>{ in TEST_F() 194 vector<Interface::Argument>{{"", kDBusTypeString}}); in TEST_F() 197 vector<Interface::Argument>{}, in TEST_F() 198 vector<Interface::Argument>{{"", kDBusTypeInt64}}); in TEST_F() 201 vector<Interface::Argument>{{"", kDBusTypeBool}}, in TEST_F() 202 vector<Interface::Argument>{}); in TEST_F() 209 vector<Interface::Argument>{ in TEST_F() 218 vector<Interface::Argument>{{"arg9", kDBusTypeBool}}); in TEST_F() 222 vector<Interface::Argument>{ in TEST_F() [all …]
|
/external/webrtc/webrtc/base/ |
D | referencecountedsingletonfactory.h | 21 template <typename Interface> class rcsf_ptr; 31 template <typename Interface> 33 friend class rcsf_ptr<Interface>; 48 scoped_ptr<Interface> instance_; 51 Interface* GetInstance() { in GetInstance() 83 template <typename Interface> 88 explicit rcsf_ptr(ReferenceCountedSingletonFactory<Interface>* factory) in rcsf_ptr() 97 Interface& operator*() { 102 Interface* operator->() { 109 Interface* get() { in get() [all …]
|
/external/libchrome/base/win/ |
D | scoped_comptr.h | 19 template <class Interface, const IID* interface_id = &__uuidof(Interface)> 20 class ScopedComPtr : public scoped_refptr<Interface> { 24 class BlockIUnknownMethods : public Interface { 31 typedef scoped_refptr<Interface> ParentClass; 36 explicit ScopedComPtr(Interface* p) : ParentClass(p) { in ScopedComPtr() 39 ScopedComPtr(const ScopedComPtr<Interface, interface_id>& p) in ScopedComPtr() argument 47 sizeof(ScopedComPtr<Interface, interface_id>) == sizeof(Interface*), in ~ScopedComPtr() 64 Interface* Detach() { in Detach() 65 Interface* p = this->ptr_; in Detach() 71 void Attach(Interface* p) { in Attach() [all …]
|