high             1727 ompi/communicator/comm.c int ompi_comm_determine_first ( ompi_communicator_t *intercomm, int high )
high             1762 ompi/communicator/comm.c     rc = intercomm->c_coll->coll_allgatherv(&high, scount, MPI_INT,
high             1778 ompi/communicator/comm.c     if ( high && !rhigh ) {
high             1781 ompi/communicator/comm.c     else if ( !high && rhigh ) {
high              673 ompi/communicator/communicator.h                                 int high );
high               47 ompi/mpi/c/intercomm_merge.c int MPI_Intercomm_merge(MPI_Comm intercomm, int high,
high               56 ompi/mpi/c/intercomm_merge.c     int thigh = high;
high               81 ompi/mpi/cxx/intercomm.h   virtual Intracomm Merge(bool high) const;
high               55 ompi/mpi/cxx/intercomm_inln.h MPI::Intercomm::Merge(bool high) const
high               58 ompi/mpi/cxx/intercomm_inln.h   (void)MPI_Intercomm_merge(mpi_comm, (int)high, &newcomm);
high               41 ompi/mpi/fortran/mpif-h/intercomm_merge_f.c                            (MPI_Fint *intercomm, ompi_fortran_logical_t *high, MPI_Fint *newintercomm, MPI_Fint *ierr),
high               42 ompi/mpi/fortran/mpif-h/intercomm_merge_f.c                            (intercomm, high, newintercomm, ierr) )
high               61 ompi/mpi/fortran/mpif-h/intercomm_merge_f.c                            (MPI_Fint *intercomm, ompi_fortran_logical_t *high, MPI_Fint *newintercomm, MPI_Fint *ierr),
high               62 ompi/mpi/fortran/mpif-h/intercomm_merge_f.c                            (intercomm, high, newintercomm, ierr) )
high               68 ompi/mpi/fortran/mpif-h/intercomm_merge_f.c void ompi_intercomm_merge_f(MPI_Fint *intercomm, ompi_fortran_logical_t *high,
high               76 ompi/mpi/fortran/mpif-h/intercomm_merge_f.c     c_ierr = PMPI_Intercomm_merge(c_intercomm, OMPI_LOGICAL_2_INT(*high),
high              301 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Intercomm_merge, mpi_intercomm_merge, MPI_INTERCOMM_MERGE, (MPI_Fint *intercomm, ompi_fortran_logical_t *high, MPI_Fint *newintercomm, MPI_Fint *ierr));
high             1094 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-interfaces.h subroutine MPI_Intercomm_merge(intercomm, high, newintercomm, ierror)
high             1096 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-interfaces.h   logical, intent(in) :: high
high             1094 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-interfaces.h subroutine PMPI_Intercomm_merge(intercomm, high, newintercomm, ierror)
high             1096 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-interfaces.h   logical, intent(in) :: high
high              100 ompi/mpi/java/c/mpi_Intercomm.c                         JNIEnv *env, jobject jthis, jboolean high)
high              106 ompi/mpi/java/c/mpi_Intercomm.c              high, &newintracomm);
high              160 ompi/mpi/java/java/Intercomm.java 	public Intracomm merge(boolean high) throws MPIException
high              163 ompi/mpi/java/java/Intercomm.java 		return new Intracomm(merge_jni(high));
high              166 ompi/mpi/java/java/Intercomm.java 	private native long merge_jni(boolean high);
high              239 ompi/tools/mpisync/hpctimer.c     uint32_t low, high;
high              247 ompi/tools/mpisync/hpctimer.c         : "=a" (low), "=d" (high)
high              249 ompi/tools/mpisync/hpctimer.c     return ((uint64_t)high << 32) | low;
high               41 opal/class/opal_interval_tree.c                                                                 uint64_t low, uint64_t high,
high              323 opal/class/opal_interval_tree.c int opal_interval_tree_insert (opal_interval_tree_t *tree, void *value, uint64_t low, uint64_t high)
high              327 opal/class/opal_interval_tree.c     if (low > high) {
high              345 opal/class/opal_interval_tree.c     node->high = high;
high              346 opal/class/opal_interval_tree.c     node->max = high;
high              359 opal/class/opal_interval_tree.c                                                                    uint64_t high, bool exact, void *data)
high              365 opal/class/opal_interval_tree.c     if (((exact && node->low == low && node->high == high) || (!exact && node->low <= low && node->high >= high)) &&
high              371 opal/class/opal_interval_tree.c         return opal_interval_tree_find_interval (tree, node->left, low, high, exact, data);
high              374 opal/class/opal_interval_tree.c     return opal_interval_tree_find_interval (tree, node->right, low, high, exact, data);
high              380 opal/class/opal_interval_tree.c static opal_interval_tree_node_t *opal_interval_tree_find_node(opal_interval_tree_t *tree, uint64_t low, uint64_t high, bool exact, void *data)
high              382 opal/class/opal_interval_tree.c     return opal_interval_tree_find_interval (tree, tree->root.left, low, high, exact, data);
high              385 opal/class/opal_interval_tree.c void *opal_interval_tree_find_overlapping (opal_interval_tree_t *tree, uint64_t low, uint64_t high)
high              391 opal/class/opal_interval_tree.c     node = opal_interval_tree_find_node (tree, low, high, true, NULL);
high              534 opal/class/opal_interval_tree.c int opal_interval_tree_delete (opal_interval_tree_t *tree, uint64_t low, uint64_t high, void *data)
high              539 opal/class/opal_interval_tree.c     node = opal_interval_tree_find_node (tree, low, high, true, data);
high              622 opal/class/opal_interval_tree.c         if (n->max < node->high) {
high              623 opal/class/opal_interval_tree.c             n->max = node->high;
high              644 opal/class/opal_interval_tree.c static int inorder_traversal (opal_interval_tree_t *tree, uint64_t low, uint64_t high,
high              654 opal/class/opal_interval_tree.c     rc = inorder_traversal(tree, low, high, partial_ok, action, node->left, ctx);
high              659 opal/class/opal_interval_tree.c     if ((!partial_ok && (node->low <= low && node->high >= high)) ||
high              660 opal/class/opal_interval_tree.c         (partial_ok && ((low >= node->low && low <= node->high) ||
high              661 opal/class/opal_interval_tree.c                         (high >= node->low && high <= node->high) ||
high              662 opal/class/opal_interval_tree.c                         (node->low >= low && node->low <= high) ||
high              663 opal/class/opal_interval_tree.c                         (node->high >= high && node->high <= high)))) {
high              664 opal/class/opal_interval_tree.c         rc = action (node->low, node->high, node->data, ctx);
high              670 opal/class/opal_interval_tree.c     return inorder_traversal(tree, low, high, partial_ok, action, node->right, ctx);
high              695 opal/class/opal_interval_tree.c int opal_interval_tree_traverse (opal_interval_tree_t *tree, uint64_t low, uint64_t high,
high              706 opal/class/opal_interval_tree.c     rc = inorder_traversal (tree, low, high, partial_ok, action, tree->root.left, ctx);
high              728 opal/class/opal_interval_tree.c     x_copy->max = max (x_copy->high, max (x_copy->left->max, x_copy->left->max));
high              881 opal/class/opal_interval_tree.c              "\\ndata=0x%lx\\nblack rank=%d\"];\n", (uintptr_t) node, color, node->low, node->high, node->max,
high               64 opal/class/opal_interval_tree.h     uint64_t high;
high              112 opal/class/opal_interval_tree.h typedef int (*opal_interval_tree_action_fn_t)(uint64_t low, uint64_t high, void *data, void *ctx);
high              141 opal/class/opal_interval_tree.h OPAL_DECLSPEC int opal_interval_tree_insert(opal_interval_tree_t *tree, void *value, uint64_t low, uint64_t high);
high              154 opal/class/opal_interval_tree.h OPAL_DECLSPEC void *opal_interval_tree_find_overlapping (opal_interval_tree_t *tree, uint64_t low, uint64_t high);
high              170 opal/class/opal_interval_tree.h OPAL_DECLSPEC int opal_interval_tree_delete(opal_interval_tree_t *tree, uint64_t low, uint64_t high, void *data);
high              195 opal/class/opal_interval_tree.h OPAL_DECLSPEC int opal_interval_tree_traverse (opal_interval_tree_t *tree, uint64_t low, uint64_t high,
high              126 opal/mca/event/libevent2022/libevent/bufferevent.c 	if (size >= bufev->wm_read.high)
high              526 opal/mca/event/libevent2022/libevent/bufferevent.c 		bufev->wm_write.high = highmark;
high              531 opal/mca/event/libevent2022/libevent/bufferevent.c 		bufev->wm_read.high = highmark;
high              246 opal/mca/event/libevent2022/libevent/bufferevent_async.c 	read_high = bev->wm_read.high;
high              131 opal/mca/event/libevent2022/libevent/bufferevent_filter.c 	    u->wm_write.high &&
high              132 opal/mca/event/libevent2022/libevent/bufferevent_filter.c 	    evbuffer_get_length(u->output) >= u->wm_write.high;
high              143 opal/mca/event/libevent2022/libevent/bufferevent_filter.c 	    bufev->wm_read.high &&
high              144 opal/mca/event/libevent2022/libevent/bufferevent_filter.c 	    evbuffer_get_length(bufev->input) >= bufev->wm_read.high;
high              294 opal/mca/event/libevent2022/libevent/bufferevent_filter.c 		if (state == BEV_NORMAL && bev->wm_read.high)
high              295 opal/mca/event/libevent2022/libevent/bufferevent_filter.c 			limit = bev->wm_read.high -
high              348 opal/mca/event/libevent2022/libevent/bufferevent_filter.c 			    bevf->underlying->wm_write.high)
high              349 opal/mca/event/libevent2022/libevent/bufferevent_filter.c 				limit = bevf->underlying->wm_write.high -
high              173 opal/mca/event/libevent2022/libevent/bufferevent_openssl.c 	if (bufev->wm_write.high && bufev->wm_write.high <= (outlen+inlen)) {
high              174 opal/mca/event/libevent2022/libevent/bufferevent_openssl.c 		if (bufev->wm_write.high <= outlen) {
high              179 opal/mca/event/libevent2022/libevent/bufferevent_openssl.c 		inlen = bufev->wm_write.high - outlen;
high              741 opal/mca/event/libevent2022/libevent/bufferevent_openssl.c 	if (wm->high) {
high              742 opal/mca/event/libevent2022/libevent/bufferevent_openssl.c 		if (evbuffer_get_length(input) >= wm->high) {
high              746 opal/mca/event/libevent2022/libevent/bufferevent_openssl.c 		result = wm->high - evbuffer_get_length(input);
high              868 opal/mca/event/libevent2022/libevent/bufferevent_openssl.c 	    (!target || (! wm->high || evbuffer_get_length(target) < wm->high))) {
high              870 opal/mca/event/libevent2022/libevent/bufferevent_openssl.c 		if (wm && wm->high)
high              871 opal/mca/event/libevent2022/libevent/bufferevent_openssl.c 			n_to_write = wm->high - evbuffer_get_length(target);
high              160 opal/mca/event/libevent2022/libevent/bufferevent_pair.c 	if (dst->wm_read.high) {
high              162 opal/mca/event/libevent2022/libevent/bufferevent_pair.c 		if (dst_size < dst->wm_read.high) {
high              163 opal/mca/event/libevent2022/libevent/bufferevent_pair.c 			n = dst->wm_read.high - dst_size;
high              149 opal/mca/event/libevent2022/libevent/bufferevent_sock.c 	if (bufev->wm_read.high != 0) {
high              150 opal/mca/event/libevent2022/libevent/bufferevent_sock.c 		howmuch = bufev->wm_read.high - evbuffer_get_length(input);
high               59 opal/mca/event/libevent2022/libevent/include/event2/bufferevent_struct.h 	size_t high;
high               61 opal/mca/rcache/base/rcache_base_vma_tree.c static int mca_rcache_base_vma_tree_find_all_helper (uint64_t low, uint64_t high, void *data, void *ctx)
high               92 opal/mca/rcache/base/rcache_base_vma_tree.c static int mca_rcache_base_vma_tree_iterate_helper (uint64_t low, uint64_t high, void *data, void *ctx)
high              129 opal/mca/rcache/base/rcache_base_vma_tree.c static int mca_rcache_base_tree_dump_range_helper (uint64_t low, uint64_t high, void *data, void *ctx)