nb_buckets         91 ompi/mca/topo/treematch/treematch/tm_bucket.c   n = bucket_list->nb_buckets;
nb_buckets        158 ompi/mca/topo/treematch/treematch/tm_bucket.c   for( i = 0 ; i < bucket_list->nb_buckets-1 ; i++)
nb_buckets        170 ompi/mca/topo/treematch/treematch/tm_bucket.c   for(i = 0 ; i < bucket_list->nb_buckets ; i++){
nb_buckets        175 ompi/mca/topo/treematch/treematch/tm_bucket.c     if( i == bucket_list->nb_buckets - 1 )
nb_buckets        197 ompi/mca/topo/treematch/treematch/tm_bucket.c     n = bucket_list->nb_buckets;
nb_buckets        244 ompi/mca/topo/treematch/treematch/tm_bucket.c   n = bucket_list->nb_buckets;
nb_buckets        295 ompi/mca/topo/treematch/treematch/tm_bucket.c   int nb_buckets, nb_bits;
nb_buckets        305 ompi/mca/topo/treematch/treematch/tm_bucket.c   nb_buckets = (int)floor(CmiLog2(N));
nb_buckets        307 ompi/mca/topo/treematch/treematch/tm_bucket.c   nb_bits = (int)ceil(CmiLog2(nb_buckets));
nb_buckets        308 ompi/mca/topo/treematch/treematch/tm_bucket.c   nb_buckets = nb_buckets >> (nb_bits-1);
nb_buckets        309 ompi/mca/topo/treematch/treematch/tm_bucket.c   nb_buckets = nb_buckets << (nb_bits-1);
nb_buckets        312 ompi/mca/topo/treematch/treematch/tm_bucket.c   if(!is_power_of_2(nb_buckets)){
nb_buckets        314 ompi/mca/topo/treematch/treematch/tm_bucket.c       fprintf(stderr,"Error! Paramater nb_buckets is: %d and should be a power of 2\n",nb_buckets);
nb_buckets        322 ompi/mca/topo/treematch/treematch/tm_bucket.c   n = pow(nb_buckets,2);
nb_buckets        355 ompi/mca/topo/treematch/treematch/tm_bucket.c   pivot = (double*)MALLOC(sizeof(double)*nb_buckets-1);
nb_buckets        357 ompi/mca/topo/treematch/treematch/tm_bucket.c   for( k = 1 ; k < nb_buckets ; k++ ){
nb_buckets        370 ompi/mca/topo/treematch/treematch/tm_bucket.c   bucket_list->nb_buckets = nb_buckets;
nb_buckets        373 ompi/mca/topo/treematch/treematch/tm_bucket.c   bucket_list->bucket_tab = (bucket_t**)MALLOC(nb_buckets*sizeof(bucket_t*));
nb_buckets        374 ompi/mca/topo/treematch/treematch/tm_bucket.c   for( i  = 0 ; i < nb_buckets ; i++ )
nb_buckets        512 ompi/mca/topo/treematch/treematch/tm_bucket.c   free_tab_bucket(bucket_list->bucket_tab,bucket_list->nb_buckets);
nb_buckets         18 ompi/mca/topo/treematch/treematch/tm_bucket.h   int nb_buckets;