HomeSort by relevance Sort by last modified time
    Searched full:b_ref (Results 1 - 19 of 19) sorted by null

  /external/libvpx/libvpx/test/
hadamard_test.cc 131 tran_low_t b_ref[64]; local
136 memset(b_ref, 0, sizeof(b_ref));
138 reference_hadamard8x8(a, 8, b_ref);
143 std::sort(b_ref, b_ref + 64);
144 EXPECT_EQ(0, memcmp(b, b_ref, sizeof(b)));
150 tran_low_t b_ref[64]; local
157 memset(b_ref, 0, sizeof(b_ref));
219 tran_low_t b_ref[16 * 16]; local
238 tran_low_t b_ref[16 * 16]; local
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-fwd-ref.cpp 10 baz& b_ref; member in struct:bar
11 bar(int x) : b(x), b_ref(b) {}
  /external/eigen/bench/btl/actions/
action_rot.hh 44 Interface::vector_from_stl(B_ref,B_stl);
61 Interface::free_vector(B_ref);
76 Interface::copy_vector(B_ref,B,_size);
107 typename Interface::gene_vector B_ref;
action_atv_product.hh 50 Interface::vector_from_stl(B_ref,B_stl);
74 Interface::free_vector(B_ref);
84 Interface::copy_vector(B_ref,B,_size);
118 typename Interface::gene_vector B_ref;
action_ger.hh 46 Interface::vector_from_stl(B_ref,B_stl);
66 Interface::free_vector(B_ref);
83 Interface::copy_vector(B_ref,B,_size);
117 typename Interface::gene_vector B_ref;
action_matrix_matrix_product.hh 52 Interface::matrix_from_stl(B_ref,B_stl);
82 Interface::free_matrix(B_ref,_size);
101 Interface::copy_matrix(B_ref,B,_size);
134 typename Interface::gene_matrix B_ref;
action_matrix_vector_product.hh 53 Interface::vector_from_stl(B_ref,B_stl);
81 Interface::free_vector(B_ref);
100 Interface::copy_vector(B_ref,B,_size);
137 typename Interface::gene_vector B_ref;
action_symv.hh 51 Interface::vector_from_stl(B_ref,B_stl);
72 Interface::free_vector(B_ref);
90 Interface::copy_vector(B_ref,B,_size);
126 typename Interface::gene_vector B_ref;
action_syr2.hh 50 Interface::vector_from_stl(B_ref,B_stl);
69 Interface::free_vector(B_ref);
86 Interface::copy_vector(B_ref,B,_size);
120 typename Interface::gene_vector B_ref;
action_matrix_matrix_product_bis.hh 61 typename Interface::gene_matrix B_ref;
70 Interface::matrix_from_stl(B_ref,B_stl);
89 Interface::copy_matrix(B_ref,B,size);
106 Interface::copy_matrix(B_ref,B,size);
140 Interface::free_matrix(B_ref,size);
action_trisolve_matrix.hh 59 Interface::matrix_from_stl(B_ref,B_stl);
95 Interface::free_matrix(B_ref,_size);
114 Interface::copy_matrix(B_ref,B,_size);
149 typename Interface::gene_matrix B_ref;
action_trmm.hh 59 Interface::matrix_from_stl(B_ref,B_stl);
95 Interface::free_matrix(B_ref,_size);
114 Interface::copy_matrix(B_ref,B,_size);
149 typename Interface::gene_matrix B_ref;
  /external/clang/test/OpenMP/
for_linear_codegen.cpp 146 // LAMBDA: [[B_REF:%.+]] = getelementptr {{.*}}[[SS_TY]], [[SS_TY]]* %{{.*}}, i32 0, i32 1
147 // LAMBDA: store i8 %{{.+}}, i8* [[B_REF]],
296 // BLOCKS: [[B_REF:%.+]] = getelementptr {{.*}}[[SS_TY]], [[SS_TY]]* %{{.*}}, i32 0, i32 1
297 // BLOCKS: store i8 %{{.+}}, i8* [[B_REF]],
442 // CHECK: [[B_REF:%.+]] = getelementptr {{.*}}[[SS_TY]], [[SS_TY]]* %{{.*}}, i32 0, i32 1
443 // CHECK: store i8 %{{.+}}, i8* [[B_REF]],
for_lastprivate_codegen.cpp 206 // LAMBDA: [[B_REF:%.+]] = getelementptr {{.*}}[[SS_TY]], [[SS_TY]]* %{{.*}}, i32 0, i32 1
207 // LAMBDA: store i8 %{{.+}}, i8* [[B_REF]],
388 // BLOCKS: [[B_REF:%.+]] = getelementptr {{.*}}[[SS_TY]], [[SS_TY]]* %{{.*}}, i32 0, i32 1
389 // BLOCKS: store i8 %{{.+}}, i8* [[B_REF]],
684 // CHECK: [[B_REF:%.+]] = getelementptr {{.*}}[[SS_TY]], [[SS_TY]]* %{{.*}}, i32 0, i32 1
685 // CHECK: store i8 %{{.+}}, i8* [[B_REF]],
    [all...]
parallel_reduction_codegen.cpp 125 // LAMBDA: [[B_REF:%.+]] = getelementptr {{.*}}[[SS_TY]], [[SS_TY]]* %{{.*}}, i32 0, i32 1
126 // LAMBDA: store i8 %{{.+}}, i8* [[B_REF]],
269 // BLOCKS: [[B_REF:%.+]] = getelementptr {{.*}}[[SS_TY]], [[SS_TY]]* %{{.*}}, i32 0, i32 1
270 // BLOCKS: store i8 %{{.+}}, i8* [[B_REF]],
630 // CHECK: [[B_REF:%.+]] = getelementptr {{.*}}[[SS_TY]], [[SS_TY]]* %{{.*}}, i32 0, i32 1
631 // CHECK: store i8 %{{.+}}, i8* [[B_REF]],
    [all...]
task_codegen.cpp 29 // CHECK: [[B_REF:%.+]] = getelementptr inbounds [[STRUCT_SHAREDS]], [[STRUCT_SHAREDS]]* [[CAPTURES:%.+]], i32 0, i32 0
30 // CHECK: store i8* [[B]], i8** [[B_REF]]
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 293 Ref<const Matrix<typename Rhs::Scalar,Dynamic,Dynamic,ColMajor> > b_ref(b.derived());
295 cholmod_dense b_cd = viewAsCholmod(b_ref);
317 Ref<SparseMatrix<typename RhsDerived::Scalar,ColMajor,typename RhsDerived::StorageIndex> > b_ref(b.const_cast_derived());
318 cholmod_sparse b_cs = viewAsCholmod(b_ref);
  /external/llvm/test/DebugInfo/X86/
2011-12-16-BadStructRef.ll 4 ; CHECK: b_ref
107 !19 = !DIDerivedType(tag: DW_TAG_member, name: "b_ref", line: 12, size: 64, align: 64, offset: 64, file: !82, scope: !5, baseType: !20)
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 665 Ref<const Matrix<typename Rhs::Scalar,Dynamic,Dynamic,ColMajor> > b_ref(b);
668 m_sluB = SluMatrix::Map(b_ref.const_cast_derived());
    [all...]

Completed in 973 milliseconds