Home
last modified time | relevance | path

Searched refs:int_buf (Results 1 – 5 of 5) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/mips/msa/
Dvp9_fdct16x16_msa.c18 const int32_t *const0, int16_t *int_buf) { in fadst16_cols_step1_msa() argument
47 ST_SH2(tp0, tp2, int_buf, 8); in fadst16_cols_step1_msa()
48 ST_SH2(tp1, tp3, int_buf + 4 * 8, 8); in fadst16_cols_step1_msa()
54 ST_SH2(h0, h1, int_buf + 8 * 8, 8); in fadst16_cols_step1_msa()
55 ST_SH2(h3, h2, int_buf + 12 * 8, 8); in fadst16_cols_step1_msa()
67 ST_SH2(g1, g3, int_buf + 3 * 8, 4 * 8); in fadst16_cols_step1_msa()
79 ST_SH2(h1, h3, int_buf + 11 * 8, 4 * 8); in fadst16_cols_step1_msa()
82 ST_SH4(tp0, tp1, tp2, tp3, int_buf + 2 * 8, 4 * 8); in fadst16_cols_step1_msa()
85 static void fadst16_cols_step2_msa(int16_t *int_buf, const int32_t *const0, in fadst16_cols_step2_msa() argument
94 LD_SH2(int_buf + 3 * 8, 4 * 8, g13, g15); in fadst16_cols_step2_msa()
[all …]
/external/clang/test/Sema/
Dwarn-type-safety.cpp51 void test1(C *c, int *int_buf) in test1() argument
53 c->MPI_Send(int_buf, 1, MPI_INT); // no-warning in test1()
54 …c->MPI_Send(int_buf, 1, MPI_FLOAT); // expected-warning {{argument type 'int *' doesn't match spec… in test1()
64 void test2(C *c, int *int_buf, T tag) in test2() argument
66 c->MPI_Send(int_buf, 1, tag); // no-warning in test2()
69 void test3(C *c, int *int_buf) { in test3() argument
70 test2(c, int_buf, MPI_INT); in test3()
71 test2(c, int_buf, MPI_NULL); in test3()
Dwarn-type-safety-mpi-hdf5.c138 int *int_buf, in test_mpi_predefined_types() argument
148 MPI_Send(int_buf, 1, MPI_INT); // no-warning in test_mpi_predefined_types()
184 int_buf, 1, MPI_INT); in test_mpi_predefined_types()
189 int_buf, 1, MPI_INT); in test_mpi_predefined_types()
191 …MPI_Gather(int_buf, 0, MPI_DATATYPE_NULL, // expected-warning {{specified mpi type tag requires a … in test_mpi_predefined_types()
192 int_buf, 1, MPI_INT); in test_mpi_predefined_types()
207 void test_user_types(int *int_buf, in test_user_types() argument
213 MPI_Send(int_buf, 1, my_int_datatype); // no-warning in test_user_types()
224 …MPI_Send(int_buf, 1, my_e1_datatype); // expected-warning {{argument type 'int *' doesn't match sp… in test_user_types()
229 void test_not_annotated(int *int_buf, in test_not_annotated() argument
[all …]
/external/pdfium/core/fpdfapi/page/
Dcpdf_sampledfunc.cpp97 CFX_FixedBufGrow<uint32_t, 32> int_buf(m_nInputs * 2); in v_Call() local
98 uint32_t* index = int_buf; in v_Call()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_allocator_test.cc648 InternalScopedBuffer<int> int_buf(kSize); in TEST() local
649 EXPECT_EQ(sizeof(int) * kSize, int_buf.size()); // NOLINT in TEST()