HomeSort by: relevance | last modified time | path
    Searched defs:clusters (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
gimple-if-to-switch.cc 165 /* Compare clusters by minimum value. */
176 /* Dump constructed CLUSTERS with prefix MESSAGE. */
179 dump_clusters (vec<cluster *> *clusters, const char *message)
184 for (unsigned i = 0; i < clusters->length (); i++)
185 (*clusters)[i]->dump (dump_file, dump_flags & TDF_DETAILS);
198 auto_vec<cluster *> clusters; local
199 clusters.create (m_entries.length ());
209 clusters.safe_push (new simple_cluster (range->low, range->high,
215 /* Sort clusters and merge them. */
218 clusters.qsort (cluster_cmp)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-if-to-switch.cc 161 /* Compare clusters by minimum value. */
172 /* Dump constructed CLUSTERS with prefix MESSAGE. */
175 dump_clusters (vec<cluster *> *clusters, const char *message)
180 for (unsigned i = 0; i < clusters->length (); i++)
181 (*clusters)[i]->dump (dump_file, dump_flags & TDF_DETAILS);
194 auto_vec<cluster *> clusters; local
195 clusters.create (m_entries.length ());
205 clusters.safe_push (new simple_cluster (range->low, range->high,
211 /* Sort clusters and merge them. */
214 clusters.qsort (cluster_cmp)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
name-lookup.cc 152 unsigned clusters = BINDING_VECTOR_NUM_CLUSTERS (*slot); local
157 clusters--;
161 while (clusters > 1)
163 unsigned half = clusters / 2;
166 clusters = half;
169 clusters -= half;
174 if (clusters)
  /src/external/gpl3/gcc.old/dist/gcc/cp/
name-lookup.cc 152 unsigned clusters = BINDING_VECTOR_NUM_CLUSTERS (*slot); local
157 clusters--;
161 while (clusters > 1)
163 unsigned half = clusters / 2;
166 clusters = half;
169 clusters -= half;
174 if (clusters)

Completed in 39 milliseconds