/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_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_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_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_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_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_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_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_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_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_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_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/v8/src/ |
D | interface.h | 35 class Interface : public ZoneObject { 40 static Interface* NewUnknown(Zone* zone) { in NewUnknown() 41 return new(zone) Interface(NONE); in NewUnknown() 44 static Interface* NewValue() { in NewValue() 45 static Interface value_interface(VALUE + FROZEN); // Cached. in NewValue() 49 static Interface* NewConst() { in NewConst() 50 static Interface value_interface(VALUE + CONST + FROZEN); // Cached. in NewConst() 54 static Interface* NewModule(Zone* zone) { in NewModule() 55 return new(zone) Interface(MODULE); in NewModule() 63 void Add(const AstRawString* name, Interface* interface, Zone* zone, in Add() [all …]
|
D | interface.cc | 12 Interface* Interface::Lookup(Handle<String> name, Zone* zone) { in Lookup() 22 return static_cast<Interface*>(p->value); in Lookup() 41 void Interface::DoAdd(const void* name, uint32_t hash, Interface* interface, in DoAdd() 78 static_cast<Interface*>(p->value)->Unify(interface, zone, ok); in DoAdd() 91 void Interface::Unify(Interface* that, Zone* zone, bool* ok) { in Unify() 140 void Interface::DoUnify(Interface* that, bool* ok, Zone* zone) { in DoUnify() 157 this->DoAdd(p->key, p->hash, static_cast<Interface*>(p->value), zone, ok); in DoUnify() 178 void Interface::Print(int n) { in Print() 183 for (Interface* link = this->forward_; link != NULL; link = link->forward_) in Print() 206 Interface* interface = static_cast<Interface*>(p->value); in Print()
|
/external/skia/src/core/ |
D | SkFunction.h | 45 struct Interface { struct 46 virtual ~Interface() {} in ~Interface() argument 48 virtual Interface* clone() const = 0; 52 class LambdaImpl final : public Interface { 57 Interface* clone() const { return SkNEW_ARGS(LambdaImpl<Fn>, (fFn)); } in clone() 62 class FnPtrImpl final : public Interface { 67 Interface* clone() const { return SkNEW_ARGS(FnPtrImpl, (fFn)); } in clone() 72 SkAutoTDelete<Interface> fFunction;
|
/external/eigen/bench/btl/generic_bench/static/ |
D | bench_static.hh | 36 …late<class> class Perf_Analyzer, template<class> class Action, template<class,int> class Interface> 39 if (BtlConfig::skipAction(Action<Interface<REAL_TYPE,10> >::name())) in bench_static() 42 string filename = "bench_" + Action<Interface<REAL_TYPE,10> >::name() + ".dat"; in bench_static() 51 static_size_generator<max_size,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops); in bench_static() 57 template <template<class> class Action, template<class,int> class Interface> 60 bench_static<Portable_Perf_Analyzer,Action,Interface>(); in bench_static()
|
D | static_size_generator.hh | 28 …ate<class> class Perf_Analyzer, template<class> class Action, template<class,int> class Interface> 34 Perf_Analyzer<Action<Interface<REAL_TYPE,SIZE> > > perf_action; in go() 37 static_size_generator<SIZE-1,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops); in go() 43 …ate<class> class Perf_Analyzer, template<class> class Action, template<class,int> class Interface> 44 struct static_size_generator<1,Perf_Analyzer,Action,Interface>{ 48 Perf_Analyzer<Action<Interface<REAL_TYPE,1> > > perf_action; in go()
|