Lines Matching refs:n_dtys
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()
779 assert(n_ints == 3 && n_addrs == 0 && n_dtys == 1); in walk_type()
792 assert(n_ints == 2 && n_addrs == 1 && n_dtys == 1); in walk_type()
805 assert(n_addrs == 0 && n_dtys == 1); in walk_type()
822 assert(n_addrs == ints[0] && n_dtys == 1); in walk_type()
836 assert(n_dtys == n_ints-1); in walk_type()