Lines Matching refs:bucket
146 /* Round down to POT to compute a bucket index */
150 /* Clamp the bucket index; all huge allocations will be
151 * sorted into the largest bucket */
190 struct list_head *bucket = &screen->bo_cache_buckets[i];
192 list_for_each_entry(struct lima_bo, entry, bucket, size_list) {
197 list_length(bucket),
212 struct list_head *bucket = lima_bo_cache_get_bucket(screen, bo->size);
214 if (!bucket) {
222 list_addtail(&bo->size_list, bucket);
243 struct list_head *bucket = lima_bo_cache_get_bucket(screen, size);
245 if (!bucket) {
250 list_for_each_entry_safe(struct lima_bo, entry, bucket, size_list) {