Lines Matching defs:count
194 unsigned count = 0;
199 count += util_bitcount(nodearray_sparse_value(elem));
202 count += util_bitcount64(*elem);
205 return count;
208 /* Construct an affinity mask such that the vector with `count` elements does
210 * an allocated register r needs to satisfy for each i < count: a + i != b.
224 bi_make_affinity(uint64_t clobber, unsigned count, bool split_file)
228 for (unsigned i = 0; i < count; ++i)
232 if (count > 1) {
233 unsigned excess = count - 1;
268 unsigned count = bi_count_write_registers(ins, d);
270 uint64_t affinity = bi_make_affinity(preload_live, count, split_file) >> offset;
272 if (aligned_sr && (count >= 2 || offset))
618 unsigned count = bi_count_read_registers(I, s);
619 max = MAX2(max, count + I->src[s].offset);
678 unsigned count = bi_count_write_registers(I, d);
679 unsigned bits = count * 32;
685 channels = MAX2(channels, extra + count);
865 /* Try with reduced register pressure to improve thread count */