shift              53 ompi/mca/topo/treematch/treematch/tm_mapping.c int  fill_tab(int **new_tab,int *tab, int n, int start, int max_val, int shift);
shift             593 ompi/mca/topo/treematch/treematch/tm_mapping.c int  fill_tab(int **new_tab,int *tab, int n, int start, int max_val, int shift)
shift             622 ompi/mca/topo/treematch/treematch/tm_mapping.c     res[j] = tab[i] - shift;
shift              13 ompi/mca/topo/treematch/treematch/tm_mapping.h int  fill_tab(int **new_tab,int *tab, int n, int start, int max_val, int shift);
shift            2239 ompi/mca/topo/treematch/treematch/tm_tree.c   int i, shift;
shift            2251 ompi/mca/topo/treematch/treematch/tm_tree.c       shift = 1 + i%topology->oversub_fact - topology->oversub_fact;
shift            2252 ompi/mca/topo/treematch/treematch/tm_tree.c       (*constraints)[i] = topology->node_rank[topology->constraints[i/topology->oversub_fact]] +shift;
shift             188 ompi/mpi/java/java/CartComm.java 		return shift(handle, direction, disp);
shift             707 ompi/patterns/net/netpatterns_knomial_tree.c     int shift, mask;
shift             810 ompi/patterns/net/netpatterns_knomial_tree.c         for ( i = 0, shift = 1 ; i < exchange_node->n_exchanges ; shift *= tree_order ) {
shift             812 ompi/patterns/net/netpatterns_knomial_tree.c                 exchange_node->rank_exchanges[i] = node_rank ^ (mask * shift);
shift             813 ompi/patterns/net/netpatterns_knomial_tree.c                 NETPATTERNS_VERBOSE(("rank_exchanges#%d/%d = %d", i, tree_order, node_rank ^ (mask * shift)));
shift             201 opal/mca/event/libevent2022/libevent/event_tagging.c 	int  shift = 0, done = 0;
shift             214 opal/mca/event/libevent2022/libevent/event_tagging.c 		number |= (lower & 0x7f) << shift;
shift             215 opal/mca/event/libevent2022/libevent/event_tagging.c 		shift += 7;
shift             249 opal/mca/patcher/overwrite/patcher_overwrite_module.c static uint32_t mov (unsigned int reg, uint16_t shift, uint16_t value)
shift             251 opal/mca/patcher/overwrite/patcher_overwrite_module.c     return (0x1a5 << 23) + ((uint32_t) shift << 21) + ((uint32_t) value << 5) + reg;
shift             261 opal/mca/patcher/overwrite/patcher_overwrite_module.c static uint32_t movk (unsigned int reg, uint16_t shift, uint16_t value)
shift             263 opal/mca/patcher/overwrite/patcher_overwrite_module.c     return (0x1e5 << 23) + ((uint32_t) shift << 21) + ((uint32_t) value << 5) + reg;
shift             345 opal/mca/pmix/pmix4x/pmix/src/mca/psquash/flex128/psquash_flex128.c     size_t value = 0, shift = 0, shift_last = 0;
shift             359 opal/mca/pmix/pmix4x/pmix/src/mca/psquash/flex128/psquash_flex128.c         shift_last = shift;
shift             360 opal/mca/pmix/pmix4x/pmix/src/mca/psquash/flex128/psquash_flex128.c         value = value + (((uint64_t)val & FLEX_BASE7_MASK) << shift);
shift             361 opal/mca/pmix/pmix4x/pmix/src/mca/psquash/flex128/psquash_flex128.c         shift += FLEX_BASE7_SHIFT;
shift             369 opal/mca/pmix/pmix4x/pmix/src/mca/psquash/flex128/psquash_flex128.c         value = value + ((uint64_t)val << shift);
shift             370 opal/mca/pmix/pmix4x/pmix/src/mca/psquash/flex128/psquash_flex128.c         shift_last = shift;
shift             110 oshmem/mca/memheap/base/base.h static inline void *memheap_down_align_addr(void* addr, unsigned int shift)
shift             112 oshmem/mca/memheap/base/base.h     return (void*) (((intptr_t) addr) & (~(intptr_t) 0) << shift);
shift             115 oshmem/mca/memheap/base/base.h static inline void *memheap_up_align_addr(void*addr, unsigned int shift)
shift             117 oshmem/mca/memheap/base/base.h     return (void*) ((((intptr_t) addr) | ~((~(intptr_t) 0) << shift)));