Searched refs:n_dtys (Results 1 – 1 of 1) sorted by relevance
/external/valgrind/mpi/ |
D | libmpiwrap.c | 469 int r, n_ints, n_addrs, n_dtys, tycon; in maybeFreeTy() local 471 r = PMPI_Type_get_envelope( *ty, &n_ints, &n_addrs, &n_dtys, &tycon ); in maybeFreeTy() 670 int r, n_ints, n_addrs, n_dtys, tycon; in walk_type() local 683 r = PMPI_Type_get_envelope( ty, &n_ints, &n_addrs, &n_dtys, &tycon ); in walk_type() 745 n_ints, n_addrs, n_dtys, (int)ex ); in walk_type() 751 assert(n_dtys >= 0); in walk_type() 761 if (n_dtys > 0) { in walk_type() 762 dtys = malloc(n_dtys * sizeof(MPI_Datatype)); in walk_type() 766 r = PMPI_Type_get_contents( ty, n_ints, n_addrs, n_dtys, in walk_type() 773 assert(n_ints == 1 && n_addrs == 0 && n_dtys == 1); in walk_type() [all …]
|