HomeSort by relevance Sort by last modified time
    Searched defs:MPI_INT (Results 1 - 2 of 2) sorted by null

  /external/clang/test/Sema/
warn-type-safety.cpp 8 #define MPI_INT OMPI_PREDEFINED_GLOBAL(MPI_Datatype, ompi_mpi_int)
53 c->MPI_Send(int_buf, 1, MPI_INT); // no-warning
57 c->MPI_Send(i, 1, MPI_INT); // no-warning
68 test2(c, int_buf, MPI_INT);
warn-type-safety-mpi-hdf5.c 45 #define MPI_INT OMPI_PREDEFINED_GLOBAL(MPI_Datatype, ompi_mpi_int)
76 #define MPI_INT ((MPI_Datatype) 0xa0000002)
148 MPI_Send(int_buf, 1, MPI_INT); // no-warning
155 MPI_Send(long_buf1, 1, MPI_INT); // expected-warning {{argument type 'long *' doesn't match specified 'mpi' type tag that requires 'int *'}}
165 MPI_Gather(long_buf1, 1, MPI_INT, // expected-warning {{argument type 'long *' doesn't match specified 'mpi' type tag that requires 'int *'}}
166 long_buf2, 1, MPI_INT); // expected-warning {{argument type 'long *' doesn't match specified 'mpi' type tag that requires 'int *'}}
172 MPI_Send((int *) char_buf, 255, MPI_INT); // no-warning
179 MPI_Gather(MPI_IN_PLACE, 0, MPI_INT,
180 int_buf, 1, MPI_INT);
185 int_buf, 1, MPI_INT);
    [all...]

Completed in 173 milliseconds