HomeSort by relevance Sort by last modified time
    Searched refs:int_buf (Results 1 - 7 of 7) sorted by null

  /external/clang/test/Sema/
warn-type-safety.cpp 51 void test1(C *c, int *int_buf)
53 c->MPI_Send(int_buf, 1, MPI_INT); // no-warning
54 c->MPI_Send(int_buf, 1, MPI_FLOAT); // expected-warning {{argument type 'int *' doesn't match specified 'mpi' type tag that requires 'float *'}}
64 void test2(C *c, int *int_buf, T tag)
66 c->MPI_Send(int_buf, 1, tag); // no-warning
69 void test3(C *c, int *int_buf) {
70 test2(c, int_buf, MPI_INT);
71 test2(c, int_buf, MPI_NULL);
warn-type-safety-mpi-hdf5.c 138 int *int_buf,
148 MPI_Send(int_buf, 1, MPI_INT); // no-warning
184 int_buf, 1, MPI_INT);
189 int_buf, 1, MPI_INT);
191 MPI_Gather(int_buf, 0, MPI_DATATYPE_NULL, // expected-warning {{specified mpi type tag requires a null pointer}}
192 int_buf, 1, MPI_INT);
207 void test_user_types(int *int_buf,
213 MPI_Send(int_buf, 1, my_int_datatype); // no-warning
224 MPI_Send(int_buf, 1, my_e1_datatype); // expected-warning {{argument type 'int *' doesn't match specified 'mpi' type tag that requires 'enum E1 *'}}
229 void test_not_annotated(int *int_buf,
    [all...]
  /external/libvpx/libvpx/vp9/encoder/mips/msa/
vp9_fdct16x16_msa.c 18 const int32_t *const0, int16_t *int_buf) {
47 ST_SH2(tp0, tp2, int_buf, 8);
48 ST_SH2(tp1, tp3, int_buf + 4 * 8, 8);
54 ST_SH2(h0, h1, int_buf + 8 * 8, 8);
55 ST_SH2(h3, h2, int_buf + 12 * 8, 8);
67 ST_SH2(g1, g3, int_buf + 3 * 8, 4 * 8);
79 ST_SH2(h1, h3, int_buf + 11 * 8, 4 * 8);
82 ST_SH4(tp0, tp1, tp2, tp3, int_buf + 2 * 8, 4 * 8);
85 static void fadst16_cols_step2_msa(int16_t *int_buf, const int32_t *const0,
94 LD_SH2(int_buf + 3 * 8, 4 * 8, g13, g15)
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
archive64.c 47 bfd_byte int_buf[8]; local
81 if (bfd_bread (int_buf, 8, abfd) != 8)
88 nsymz = bfd_getb64 (int_buf);
archive.c 976 char int_buf[sizeof (long)];
986 if (bfd_bread (int_buf, 4, abfd) != 4)
995 nsymz = bfd_getb32 (int_buf);
1008 nsymz = bfd_getl32 (int_buf);
972 char int_buf[sizeof (long)]; local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 640 InternalScopedBuffer<int> int_buf(kSize);
641 EXPECT_EQ(sizeof(int) * kSize, int_buf.size()); // NOLINT
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_func.cpp 558 CFX_FixedBufGrow<int, 32> int_buf(m_nInputs * 2);
559 int* index = int_buf;

Completed in 160 milliseconds