Home | History | Annotate | Download | only in nouveau

Lines Matching defs:free

28    struct list_head free;
48 int free;
57 if (slab->free == 0)
65 slab->free--;
78 slab->free++;
79 assert(slab->free <= slab->count);
141 FREE(slab);
149 slab->count = slab->free = size >> chunk_order;
151 LIST_ADD(&slab->head, &mm_bucket_by_order(cache, chunk_order)->free);
187 if (LIST_IS_EMPTY(&bucket->free)) {
190 slab = LIST_ENTRY(struct mm_slab, bucket->free.next, head);
204 if (slab->free == 0) {
224 if (slab->free == slab->count) {
226 LIST_ADDTAIL(&slab->head, &bucket->free);
228 if (slab->free == 1) {
233 FREE(alloc);
258 LIST_INITHEAD(&cache->bucket[i].free);
274 FREE(slab);
292 nouveau_mm_free_slabs(&cache->bucket[i].free);
297 FREE(cache);