Home | History | Annotate | Download | only in gcc

Lines Matching defs:uniq

1377 /* Return true when RANGE of case values with UNIQ labels
1382 unsigned int uniq)
1391 return uniq <= m_max_case_bit_tests;
1431 /* Return true when COUNT of cases of UNIQ labels is beneficial for bit test
1435 bit_test_cluster::is_beneficial (unsigned count, unsigned uniq)
1437 return (((uniq == 1 && count >= 3)
1438 || (uniq == 2 && count >= 5)
1439 || (uniq == 3 && count >= 6)));
1461 unsigned uniq = bitmap_count_bits (dest_bbs);
1463 return is_beneficial (count, uniq);