Searched refs:int_buf (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | warn-type-safety.cpp | 51 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()
|
| H A D | warn-type-safety-mpi-hdf5.c | 138 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() 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() 229 void test_not_annotated(int *int_buf, in test_not_annotated() argument 235 MPI_Send(int_buf, 1, type); // no-warning in test_not_annotated() 292 int *int_buf, in test_hdf5() argument [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_allocator_test.cpp | 944 InternalMmapVector<int> int_buf(kSize); in TEST() local 945 EXPECT_EQ((uptr)kSize, int_buf.size()); in TEST()
|