Lines Matching refs:bt
393 struct crocus_binding_table bt;
846 static inline uint32_t crocus_group_index_to_bti(const struct crocus_binding_table *bt,
850 assert(index < bt->sizes[group]);
851 uint64_t mask = bt->used_mask[group];
854 return bt->offsets[group] + util_bitcount64((bit - 1) & mask);
866 crocus_bti_to_group_index(const struct crocus_binding_table *bt,
869 uint64_t used_mask = bt->used_mask[group];
870 assert(bti >= bt->offsets[group]);
872 uint32_t c = bti - bt->offsets[group];
919 const struct crocus_binding_table *bt);