Home
last modified time | relevance | path

Searched refs:end_bit_plus1 (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dbitmap.cc1656 unsigned int first_index, end_bit_plus1, last_index; in bitmap_set_range() local
1672 end_bit_plus1 = start + count; in bitmap_set_range()
1673 last_index = (end_bit_plus1 - 1) / BITMAP_ELEMENT_ALL_BITS; in bitmap_set_range()
1721 if (elt_end_bit_plus1 <= end_bit_plus1) in bitmap_set_range()
1731 (end_bit_plus1 - elt_start_bit) / BITMAP_WORD_BITS; in bitmap_set_range()
1735 (((BITMAP_WORD) 1) << ((end_bit_plus1 % BITMAP_WORD_BITS))) - 1; in bitmap_set_range()
1764 unsigned int first_index, end_bit_plus1, last_index; in bitmap_clear_range() local
1779 end_bit_plus1 = start + count; in bitmap_clear_range()
1780 last_index = (end_bit_plus1 - 1) / BITMAP_ELEMENT_ALL_BITS; in bitmap_clear_range()
1810 if (elt_start_bit >= start && elt_end_bit_plus1 <= end_bit_plus1) in bitmap_clear_range()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dbitmap.c1574 unsigned int first_index, end_bit_plus1, last_index; in bitmap_set_range() local
1590 end_bit_plus1 = start + count; in bitmap_set_range()
1591 last_index = (end_bit_plus1 - 1) / BITMAP_ELEMENT_ALL_BITS; in bitmap_set_range()
1639 if (elt_end_bit_plus1 <= end_bit_plus1) in bitmap_set_range()
1649 (end_bit_plus1 - elt_start_bit) / BITMAP_WORD_BITS; in bitmap_set_range()
1653 (((BITMAP_WORD) 1) << ((end_bit_plus1 % BITMAP_WORD_BITS))) - 1; in bitmap_set_range()
1682 unsigned int first_index, end_bit_plus1, last_index; in bitmap_clear_range() local
1697 end_bit_plus1 = start + count; in bitmap_clear_range()
1698 last_index = (end_bit_plus1 - 1) / BITMAP_ELEMENT_ALL_BITS; in bitmap_clear_range()
1728 if (elt_start_bit >= start && elt_end_bit_plus1 <= end_bit_plus1) in bitmap_clear_range()
[all …]