Home
last modified time | relevance | path

Searched refs:Interface (Results 1 – 25 of 230) sorted by relevance

12345678910

/external/eigen/bench/btl/actions/
Daction_matrix_matrix_product_bis.hh32 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 …]
Daction_ger.hh26 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 …]
Daction_syr2.hh31 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 …]
Daction_matrix_vector_product.hh31 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 …]
Daction_atv_product.hh31 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 …]
Daction_symv.hh31 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 …]
Daction_matrix_matrix_product.hh31 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 …]
Daction_lu_solve.hh31 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 …]
Daction_trmm.hh31 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 …]
Daction_trisolve_matrix.hh31 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 …]
Daction_hessenberg.hh30 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 …]
Daction_axpby.hh30 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 …]
Daction_axpy.hh31 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 …]
Daction_ata_product.hh31 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 …]
Daction_aat_product.hh31 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 …]
Daction_rot.hh26 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 …]
Daction_trisolve.hh30 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 …]
Daction_lu_decomp.hh30 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 …]
Daction_partial_lu.hh30 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 …]
Daction_cholesky.hh30 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/srec/portable/src/
DPANSIFileImpl.c47 PFileCreateImpl(&impl->Interface.Interface, filename, isLittleEndian); in PANSIFileCreateImpl()
48 impl->Interface.Interface.close = &PANSIFileCloseImpl; in PANSIFileCreateImpl()
49 impl->Interface.Interface.clearError = &PANSIFileClearErrorImpl; in PANSIFileCreateImpl()
50 impl->Interface.Interface.destroy = &PANSIFileDestroyImpl; in PANSIFileCreateImpl()
51 impl->Interface.Interface.fgetc = &PANSIFileFgetcImpl; in PANSIFileCreateImpl()
52 impl->Interface.Interface.fgets = &PANSIFileFgetsImpl; in PANSIFileCreateImpl()
53 impl->Interface.Interface.getPosition = &PANSIFileGetPositionImpl; in PANSIFileCreateImpl()
54 impl->Interface.Interface.hideMemoryAllocation = &PANSIFileHideMemoryAllocation; in PANSIFileCreateImpl()
55 impl->Interface.Interface.isEOF = &PANSIFileIsEOFImpl; in PANSIFileCreateImpl()
56 impl->Interface.Interface.isErrorSet = &PANSIFileIsErrorSetImpl; in PANSIFileCreateImpl()
[all …]
/external/v8/src/
Dinterface.h46 class Interface : public ZoneObject {
51 static Interface* NewValue() { in NewValue()
52 static Interface value_interface(VALUE + FROZEN); // Cached. in NewValue()
56 static Interface* NewUnknown() { in NewUnknown()
57 return new Interface(NONE); in NewUnknown()
60 static Interface* NewModule() { in NewModule()
61 return new Interface(MODULE); in NewModule()
69 void Add(Handle<String> name, Interface* interface, bool* ok) { in Add()
75 void Unify(Interface* that, bool* ok);
99 Interface* Lookup(Handle<String> name);
[all …]
Dinterface.cc44 Interface* Interface::Lookup(Handle<String> name) { in Lookup()
52 return static_cast<Interface*>(p->value); in Lookup()
71 void Interface::DoAdd( in DoAdd()
72 void* name, uint32_t hash, Interface* interface, bool* ok) { in DoAdd()
100 reinterpret_cast<Interface*>(p->value)->Unify(interface, ok); in DoAdd()
113 void Interface::Unify(Interface* that, bool* ok) { in Unify()
154 void Interface::DoUnify(Interface* that, bool* ok) { in DoUnify()
169 this->DoAdd(p->key, p->hash, static_cast<Interface*>(p->value), ok); in DoUnify()
190 void Interface::Print(int n) { in Print()
195 for (Interface* link = this->forward_; link != NULL; link = link->forward_) in Print()
[all …]
/external/chromium/base/win/
Dscoped_comptr.h20 template <class Interface, const IID* interface_id = &__uuidof(Interface)>
21 class ScopedComPtr : public scoped_refptr<Interface> {
25 class BlockIUnknownMethods : public Interface {
32 typedef scoped_refptr<Interface> ParentClass;
37 explicit ScopedComPtr(Interface* p) : ParentClass(p) { in ScopedComPtr()
40 ScopedComPtr(const ScopedComPtr<Interface, interface_id>& p) in ScopedComPtr() argument
47 COMPILE_ASSERT(sizeof(ScopedComPtr<Interface, interface_id>) == in ~ScopedComPtr()
48 sizeof(Interface*), ScopedComPtrSize); in ~ScopedComPtr()
64 Interface* Detach() { in Detach()
65 Interface* p = ptr_; in Detach()
[all …]
/external/eigen/bench/btl/generic_bench/static/
Dbench_static.hh36 …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()

12345678910