Lines Matching refs:n_bits
39 bitset_bytes (enum bitset_type type, bitset_bindex n_bits) in bitset_bytes() argument
52 bytes = abitset_bytes (n_bits); in bitset_bytes()
56 bytes = lbitset_bytes (n_bits); in bitset_bytes()
60 bytes = ebitset_bytes (n_bits); in bitset_bytes()
64 bytes = vbitset_bytes (n_bits); in bitset_bytes()
74 bitset_init (bitset bset, bitset_bindex n_bits, enum bitset_type type) in bitset_init() argument
77 return bitset_stats_init (bset, n_bits, type); in bitset_init()
85 return abitset_init (bset, n_bits); in bitset_init()
88 return lbitset_init (bset, n_bits); in bitset_init()
91 return ebitset_init (bset, n_bits); in bitset_init()
94 return vbitset_init (bset, n_bits); in bitset_init()
103 bitset_type_choose (bitset_bindex n_bits ATTRIBUTE_UNUSED, unsigned int attr) in bitset_type_choose()
134 bitset_alloc (bitset_bindex n_bits, enum bitset_type type) in bitset_alloc() argument
139 bytes = bitset_bytes (type, n_bits); in bitset_alloc()
147 return bitset_init (bset, n_bits, type); in bitset_alloc()
154 bitset_bindex n_bits, enum bitset_type type) in bitset_obstack_alloc() argument
159 bytes = bitset_bytes (type, n_bits); in bitset_obstack_alloc()
164 return bitset_init (bset, n_bits, type); in bitset_obstack_alloc()
171 bitset_create (bitset_bindex n_bits, unsigned int attr) in bitset_create() argument
175 type = bitset_type_choose (n_bits, attr); in bitset_create()
177 return bitset_alloc (n_bits, type); in bitset_create()