nnodes            396 ompi/debuggers/ompi_common_dll.c         ompi_field_offset(i_info->mca_topo_base_module_t.offset.mtc_graph.nnodes,
nnodes            398 ompi/debuggers/ompi_common_dll.c                           nnodes);
nnodes            405 ompi/debuggers/ompi_common_dll.c         i_info->mca_topo_base_module_t.offset.mtc_graph.nnodes += offset;
nnodes            223 ompi/debuggers/ompi_common_dll_defs.h                 int nnodes;
nnodes            590 ompi/debuggers/ompi_mpihandles_dll.c         int i, nnodes;
nnodes            594 ompi/debuggers/ompi_mpihandles_dll.c         (*info)->comm_graph_num_nodes = nnodes =
nnodes            596 ompi/debuggers/ompi_mpihandles_dll.c                            topo + i_info->mca_topo_base_module_t.offset.mtc.graph.nnodes,
nnodes            598 ompi/debuggers/ompi_mpihandles_dll.c         (*info)->comm_graph_index = mqs_malloc(nnodes * sizeof(int));
nnodes            607 ompi/debuggers/ompi_mpihandles_dll.c         for (i = 0; i < nnodes; ++i) {
nnodes            129 ompi/mca/topo/base/base.h                            int nnodes,
nnodes            144 ompi/mca/topo/base/base.h                         int nnodes,
nnodes             45 ompi/mca/topo/base/topo_base_graph_create.c                                int nnodes,
nnodes             60 ompi/mca/topo/base/topo_base_graph_create.c     if( num_procs < nnodes ) {
nnodes             63 ompi/mca/topo/base/topo_base_graph_create.c     if( num_procs > nnodes ) {
nnodes             64 ompi/mca/topo/base/topo_base_graph_create.c         num_procs = nnodes;
nnodes             66 ompi/mca/topo/base/topo_base_graph_create.c     if( new_rank > (nnodes - 1) ) {
nnodes             69 ompi/mca/topo/base/topo_base_graph_create.c         nnodes = 0;
nnodes             76 ompi/mca/topo/base/topo_base_graph_create.c     graph->nnodes = nnodes;
nnodes             87 ompi/mca/topo/base/topo_base_graph_create.c         graph->index = (int*)malloc(sizeof(int) * nnodes);
nnodes             92 ompi/mca/topo/base/topo_base_graph_create.c         memcpy(graph->index, index, nnodes * sizeof(int));
nnodes             95 ompi/mca/topo/base/topo_base_graph_create.c         graph->edges = (int*)malloc(sizeof(int) * index[nnodes-1]);
nnodes            100 ompi/mca/topo/base/topo_base_graph_create.c         memcpy(graph->edges, edges, index[nnodes-1] * sizeof(int));
nnodes            119 ompi/mca/topo/base/topo_base_graph_create.c     new_comm = ompi_comm_allocate(nnodes, 0);
nnodes            154 ompi/mca/topo/base/topo_base_graph_create.c     graph->nnodes = 0;
nnodes             42 ompi/mca/topo/base/topo_base_graph_map.c                             int nnodes,
nnodes             49 ompi/mca/topo/base/topo_base_graph_map.c         ((0 > myrank) || (myrank >= nnodes)) ? MPI_UNDEFINED : myrank;
nnodes             74 ompi/mca/topo/example/topo_example.h                                int nnodes,
nnodes             42 ompi/mca/topo/example/topo_example_graph_map.c                               int nnodes,
nnodes             55 ompi/mca/topo/example/topo_example_graph_map.c         ((0 > myrank) || (myrank >= nnodes)) ? MPI_UNDEFINED : myrank;
nnodes             74 ompi/mca/topo/topo.h     int nnodes;
nnodes            209 ompi/mca/topo/topo.h                      int nnodes,
nnodes            226 ompi/mca/topo/topo.h                      int nnodes,
nnodes            234 ompi/mca/topo/topo.h                      int *nnodes,
nnodes             52 ompi/mpi/c/dims_create.c int MPI_Dims_create(int nnodes, int ndims, int dims[])
nnodes             78 ompi/mpi/c/dims_create.c         if (1 > nnodes) {
nnodes             85 ompi/mpi/c/dims_create.c     freeprocs = nnodes;
nnodes             90 ompi/mpi/c/dims_create.c         } else if ((*p < 0) || ((nnodes % *p) != 0)) {
nnodes             45 ompi/mpi/c/graph_create.c int MPI_Graph_create(MPI_Comm old_comm, int nnodes, const int indx[],
nnodes             65 ompi/mpi/c/graph_create.c         if (nnodes < 0) {
nnodes             68 ompi/mpi/c/graph_create.c         } else if (nnodes >= 1 && ((NULL == indx) || (NULL == edges))) {
nnodes             73 ompi/mpi/c/graph_create.c         if (nnodes > ompi_comm_size(old_comm)) {
nnodes             81 ompi/mpi/c/graph_create.c     if (0 == nnodes) {
nnodes             85 ompi/mpi/c/graph_create.c     if( nnodes > old_comm->c_local_group->grp_proc_count ) {
nnodes            105 ompi/mpi/c/graph_create.c                                         nnodes, indx, edges,
nnodes             45 ompi/mpi/c/graph_map.c int MPI_Graph_map(MPI_Comm comm, int nnodes, const int indx[], const int edges[],
nnodes             65 ompi/mpi/c/graph_map.c         if (1 > nnodes || NULL == indx || NULL == edges || NULL == newrank) {
nnodes             79 ompi/mpi/c/graph_map.c       err = comm->c_topo->topo.graph.graph_map(comm, nnodes, indx, edges, newrank);
nnodes             42 ompi/mpi/c/graphdims_get.c int MPI_Graphdims_get(MPI_Comm comm, int *nnodes, int *nedges)
nnodes             61 ompi/mpi/c/graphdims_get.c         if (NULL == nnodes || NULL == nedges) {
nnodes             73 ompi/mpi/c/graphdims_get.c     err = comm->c_topo->topo.graph.graphdims_get(comm, nnodes, nedges);
nnodes             37 ompi/mpi/cxx/functions.h Compute_dims(int nnodes, int ndims, int dims[]);
nnodes             47 ompi/mpi/cxx/functions_inln.h MPI::Compute_dims(int nnodes, int ndims, int dims[])
nnodes             49 ompi/mpi/cxx/functions_inln.h   (void)MPI_Dims_create(nnodes, ndims, dims);
nnodes            118 ompi/mpi/cxx/intracomm.h   Create_graph(int nnodes, const int index[],
nnodes            115 ompi/mpi/cxx/intracomm_inln.h MPI::Intracomm::Create_graph(int nnodes, const int index[],
nnodes            119 ompi/mpi/cxx/intracomm_inln.h   (void)MPI_Graph_create(mpi_comm, nnodes, const_cast<int *>(index),
nnodes            149 ompi/mpi/cxx/topology.h   virtual void Get_dims(int nnodes[], int nedges[]) const;
nnodes            159 ompi/mpi/cxx/topology.h   virtual int Map(int nnodes, const int index[],
nnodes            177 ompi/mpi/cxx/topology_inln.h MPI::Graphcomm::Get_dims(int nnodes[], int nedges[]) const
nnodes            179 ompi/mpi/cxx/topology_inln.h   (void)MPI_Graphdims_get(mpi_comm, nnodes, nedges);
nnodes            205 ompi/mpi/cxx/topology_inln.h MPI::Graphcomm::Map(int nnodes, const int index[],
nnodes            209 ompi/mpi/cxx/topology_inln.h   (void)MPI_Graph_map(mpi_comm, nnodes, const_cast<int *>(index), const_cast<int *>(edges), &newrank);
nnodes             41 ompi/mpi/fortran/mpif-h/dims_create_f.c                            (MPI_Fint *nnodes, MPI_Fint *ndims, MPI_Fint *dims, MPI_Fint *ierr),
nnodes             42 ompi/mpi/fortran/mpif-h/dims_create_f.c                            (nnodes, ndims, dims, ierr) )
nnodes             61 ompi/mpi/fortran/mpif-h/dims_create_f.c                            (MPI_Fint *nnodes, MPI_Fint *ndims, MPI_Fint *dims, MPI_Fint *ierr),
nnodes             62 ompi/mpi/fortran/mpif-h/dims_create_f.c                            (nnodes, ndims, dims, ierr) )
nnodes             69 ompi/mpi/fortran/mpif-h/dims_create_f.c void ompi_dims_create_f(MPI_Fint *nnodes, MPI_Fint *ndims,
nnodes             77 ompi/mpi/fortran/mpif-h/dims_create_f.c     c_ierr = PMPI_Dims_create(OMPI_FINT_2_INT(*nnodes),
nnodes             41 ompi/mpi/fortran/mpif-h/graph_create_f.c                            (MPI_Fint *comm_old, MPI_Fint *nnodes, MPI_Fint *indx, MPI_Fint *edges, ompi_fortran_logical_t *reorder, MPI_Fint *comm_graph, MPI_Fint *ierr),
nnodes             42 ompi/mpi/fortran/mpif-h/graph_create_f.c                            (comm_old, nnodes, indx, edges, reorder, comm_graph, ierr) )
nnodes             61 ompi/mpi/fortran/mpif-h/graph_create_f.c                            (MPI_Fint *comm_old, MPI_Fint *nnodes, MPI_Fint *indx, MPI_Fint *edges, ompi_fortran_logical_t *reorder, MPI_Fint *comm_graph, MPI_Fint *ierr),
nnodes             62 ompi/mpi/fortran/mpif-h/graph_create_f.c                            (comm_old, nnodes, indx, edges, reorder, comm_graph, ierr) )
nnodes             69 ompi/mpi/fortran/mpif-h/graph_create_f.c void ompi_graph_create_f(MPI_Fint *comm_old, MPI_Fint *nnodes,
nnodes             81 ompi/mpi/fortran/mpif-h/graph_create_f.c     OMPI_ARRAY_FINT_2_INT(indx, *nnodes);
nnodes             84 ompi/mpi/fortran/mpif-h/graph_create_f.c     OMPI_ARRAY_FINT_2_INT(edges, indx[*nnodes - 1]);
nnodes             87 ompi/mpi/fortran/mpif-h/graph_create_f.c                               OMPI_FINT_2_INT(*nnodes),
nnodes             41 ompi/mpi/fortran/mpif-h/graph_map_f.c                            (MPI_Fint *comm, MPI_Fint *nnodes, MPI_Fint *indx, MPI_Fint *edges, MPI_Fint *newrank, MPI_Fint *ierr),
nnodes             42 ompi/mpi/fortran/mpif-h/graph_map_f.c                            (comm, nnodes, indx, edges, newrank, ierr) )
nnodes             61 ompi/mpi/fortran/mpif-h/graph_map_f.c                            (MPI_Fint *comm, MPI_Fint *nnodes, MPI_Fint *indx, MPI_Fint *edges, MPI_Fint *newrank, MPI_Fint *ierr),
nnodes             62 ompi/mpi/fortran/mpif-h/graph_map_f.c                            (comm, nnodes, indx, edges, newrank, ierr) )
nnodes             69 ompi/mpi/fortran/mpif-h/graph_map_f.c void ompi_graph_map_f(MPI_Fint *comm, MPI_Fint *nnodes, MPI_Fint *indx,
nnodes             81 ompi/mpi/fortran/mpif-h/graph_map_f.c     OMPI_ARRAY_FINT_2_INT(edges, indx[*nnodes - 1]);
nnodes             82 ompi/mpi/fortran/mpif-h/graph_map_f.c     OMPI_ARRAY_FINT_2_INT(indx, *nnodes);
nnodes             84 ompi/mpi/fortran/mpif-h/graph_map_f.c     c_ierr = PMPI_Graph_map(c_comm, OMPI_FINT_2_INT(*nnodes),
nnodes             41 ompi/mpi/fortran/mpif-h/graphdims_get_f.c                            (MPI_Fint *comm, MPI_Fint *nnodes, MPI_Fint *nedges, MPI_Fint *ierr),
nnodes             42 ompi/mpi/fortran/mpif-h/graphdims_get_f.c                            (comm, nnodes, nedges, ierr) )
nnodes             61 ompi/mpi/fortran/mpif-h/graphdims_get_f.c                            (MPI_Fint *comm, MPI_Fint *nnodes, MPI_Fint *nedges, MPI_Fint *ierr),
nnodes             62 ompi/mpi/fortran/mpif-h/graphdims_get_f.c                            (comm, nnodes, nedges, ierr) )
nnodes             69 ompi/mpi/fortran/mpif-h/graphdims_get_f.c void ompi_graphdims_get_f(MPI_Fint *comm, MPI_Fint *nnodes,
nnodes             74 ompi/mpi/fortran/mpif-h/graphdims_get_f.c     OMPI_SINGLE_NAME_DECL(nnodes);
nnodes             80 ompi/mpi/fortran/mpif-h/graphdims_get_f.c                                OMPI_SINGLE_NAME_CONVERT(nnodes),
nnodes             86 ompi/mpi/fortran/mpif-h/graphdims_get_f.c         OMPI_SINGLE_INT_2_FINT(nnodes);
nnodes            156 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Dims_create, mpi_dims_create, MPI_DIMS_CREATE, (MPI_Fint *nnodes, MPI_Fint *ndims, MPI_Fint *dims, MPI_Fint *ierr));
nnodes            243 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Graph_create, mpi_graph_create, MPI_GRAPH_CREATE, (MPI_Fint *comm_old, MPI_Fint *nnodes, MPI_Fint *index, MPI_Fint *edges, ompi_fortran_logical_t *reorder, MPI_Fint *comm_graph, MPI_Fint *ierr));
nnodes            245 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Graph_map, mpi_graph_map, MPI_GRAPH_MAP, (MPI_Fint *comm, MPI_Fint *nnodes, MPI_Fint *index, MPI_Fint *edges, MPI_Fint *newrank, MPI_Fint *ierr));
nnodes            248 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Graphdims_get, mpi_graphdims_get, MPI_GRAPHDIMS_GET, (MPI_Fint *comm, MPI_Fint *nnodes, MPI_Fint *nedges, MPI_Fint *ierr));
nnodes           1740 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_dims_create_f(nnodes,ndims,dims,ierror) &
nnodes           1743 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: nnodes, ndims
nnodes           1759 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_graphdims_get_f(comm,nnodes,nedges,ierror) &
nnodes           1763 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(OUT) :: nnodes, nedges
nnodes           1776 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_graph_map_f(comm,nnodes,index,edges,newrank,ierror) &
nnodes           1780 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: nnodes
nnodes            562 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-interfaces.h subroutine MPI_Dims_create(nnodes, ndims, dims, ierror)
nnodes            563 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-interfaces.h   integer, intent(in) :: nnodes
nnodes            687 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-interfaces.h subroutine MPI_Graph_create(comm_old, nnodes, index, edges, reorder, &
nnodes            690 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-interfaces.h   integer, intent(in) :: nnodes
nnodes            718 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-interfaces.h subroutine MPI_Graph_map(comm, nnodes, index, edges, newrank&
nnodes            721 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-interfaces.h   integer, intent(in) :: nnodes
nnodes            758 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-interfaces.h subroutine MPI_Graphdims_get(comm, nnodes, nedges, ierror)
nnodes            760 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-interfaces.h   integer, intent(out) :: nnodes
nnodes            562 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-interfaces.h subroutine PMPI_Dims_create(nnodes, ndims, dims, ierror)
nnodes            563 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-interfaces.h   integer, intent(in) :: nnodes
nnodes            687 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-interfaces.h subroutine PMPI_Graph_create(comm_old, nnodes, index, edges, reorder, &
nnodes            690 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-interfaces.h   integer, intent(in) :: nnodes
nnodes            718 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-interfaces.h subroutine PMPI_Graph_map(comm, nnodes, index, edges, newrank&
nnodes            721 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-interfaces.h   integer, intent(in) :: nnodes
nnodes            758 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-interfaces.h subroutine PMPI_Graphdims_get(comm, nnodes, nedges, ierror)
nnodes            760 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-interfaces.h   integer, intent(out) :: nnodes
nnodes            127 ompi/mpi/java/c/mpi_Intracomm.c     int nnodes = (*env)->GetArrayLength(env, index);
nnodes            135 ompi/mpi/java/c/mpi_Intracomm.c              nnodes, cIndex, cEdges, reorder, &graph);
nnodes            149 ompi/mpi/java/c/mpi_Intracomm.c     int nnodes = (*env)->GetArrayLength(env, sources);
nnodes            161 ompi/mpi/java/c/mpi_Intracomm.c              nnodes, cSources, cDegrees, cDestins, cWeights,
nnodes            236 ompi/mpi/java/java/CartComm.java 	public static void createDims(int nnodes, int[] dims) throws MPIException
nnodes            239 ompi/mpi/java/java/CartComm.java 		createDims_jni(nnodes, dims);
nnodes            242 ompi/mpi/java/java/CartComm.java 	private static native void createDims_jni(int nnodes, int[] dims)
nnodes            161 opal/mca/pmix/pmix4x/pmix/examples/alloc.c     uint64_t nnodes = 12;
nnodes            192 opal/mca/pmix/pmix4x/pmix/examples/alloc.c         PMIX_INFO_LOAD(&info[0], PMIX_ALLOC_NUM_NODES, &nnodes, PMIX_UINT64);
nnodes            780 opal/mca/pmix/pmix4x/pmix/src/mca/gds/hash/gds_hash.c     size_t nnodes, len, n;
nnodes            893 opal/mca/pmix/pmix4x/pmix/src/mca/gds/hash/gds_hash.c                                &buf2, &nnodes, &cnt, PMIX_SIZE);
nnodes            900 opal/mca/pmix/pmix4x/pmix/src/mca/gds/hash/gds_hash.c             for (i=0; i < nnodes; i++) {
nnodes            235 orte/mca/rmaps/round_robin/rmaps_rr_mappers.c     int j, nprocs_mapped, nnodes;
nnodes            261 orte/mca/rmaps/round_robin/rmaps_rr_mappers.c     nnodes = opal_list_get_size(node_list);
nnodes            272 orte/mca/rmaps/round_robin/rmaps_rr_mappers.c         navg = ((int)app->num_procs - nprocs_mapped) / nnodes;
nnodes            281 orte/mca/rmaps/round_robin/rmaps_rr_mappers.c         balance = (float)(((int)app->num_procs - nprocs_mapped) - (navg * nnodes)) / (float)nnodes;
nnodes            287 orte/mca/rmaps/round_robin/rmaps_rr_mappers.c             nxtra_nodes = ((int)app->num_procs - nprocs_mapped) - ((navg + extra_procs_to_assign) * nnodes);
nnodes            300 orte/mca/rmaps/round_robin/rmaps_rr_mappers.c         nnodes = 0;
nnodes            369 orte/mca/rmaps/round_robin/rmaps_rr_mappers.c             nnodes++; // track how many nodes remain available
nnodes            414 orte/mca/rmaps/round_robin/rmaps_rr_mappers.c     } while (nprocs_mapped < app->num_procs && 0 < nnodes);
nnodes             35 orte/test/mpi/ziaprobe.c     int nnodes;
nnodes             66 orte/test/mpi/ziaprobe.c     nnodes = size / ppn;
nnodes             69 orte/test/mpi/ziaprobe.c     if (0 != (nnodes % 2)) {