Searched refs:SBITMAP_ELT_BITS (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/gcc/
H A Dsbitmap.h28 #define SBITMAP_ELT_BITS ((unsigned) HOST_BITS_PER_WIDEST_FAST_INT) macro
42 #define SBITMAP_SET_SIZE(N) (((N) + SBITMAP_ELT_BITS - 1) / SBITMAP_ELT_BITS)
46 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] \
47 |= (SBITMAP_ELT_TYPE) 1 << (BITNO) % SBITMAP_ELT_BITS)
51 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
55 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] \
56 &= ~((SBITMAP_ELT_TYPE) 1 << (BITNO) % SBITMAP_ELT_BITS))
69 /* The current bit index (not modulo SBITMAP_ELT_BITS)
[all...]
H A Dsbitmap.c78 last_bit = bmap->n_bits % SBITMAP_ELT_BITS;
81 |= ~((SBITMAP_ELT_TYPE)-1 >> (SBITMAP_ELT_BITS - last_bit));
84 last_bit = n_elms % SBITMAP_ELT_BITS;
87 &= (SBITMAP_ELT_TYPE)-1 >> (SBITMAP_ELT_BITS - last_bit);
95 last_bit = n_elms % SBITMAP_ELT_BITS;
98 &= (SBITMAP_ELT_TYPE)-1 >> (SBITMAP_ELT_BITS - last_bit);
207 last_bit = bmap->n_bits % SBITMAP_ELT_BITS;
210 = (SBITMAP_ELT_TYPE)-1 >> (SBITMAP_ELT_BITS - last_bit);
286 last_bit = src->n_bits % SBITMAP_ELT_BITS;
289 & ((SBITMAP_ELT_TYPE)-1 >> (SBITMAP_ELT_BITS
[all...]
H A Dsee.c1671 for (i = indx = 0; i < set_size; i++, indx += SBITMAP_ELT_BITS)
H A Dgcse.c4149 for (i = indx = 0; i < set_size; i++, indx += SBITMAP_ELT_BITS)

Completed in 135 milliseconds