Lines Matching refs:allocator
41 int allocator; member
172 return l1->allocator - l2->allocator; in compare_allocator()
410 int allocator = 0; in get_allocator() local
413 allocator |= ALLOCATOR_CMA; in get_allocator()
415 allocator |= ALLOCATOR_SLAB; in get_allocator()
427 allocator |= ALLOCATOR_VMALLOC; in get_allocator()
429 if (allocator == 0) in get_allocator()
430 allocator = ALLOCATOR_OTHERS; in get_allocator()
431 return allocator; in get_allocator()
498 list[list_size].allocator = get_allocator(buf, ext_buf); in add_list()
619 static void print_allocator(FILE *out, int allocator) in print_allocator() argument
622 if (allocator & ALLOCATOR_CMA) in print_allocator()
624 if (allocator & ALLOCATOR_SLAB) in print_allocator()
626 if (allocator & ALLOCATOR_VMALLOC) in print_allocator()
628 if (allocator & ALLOCATOR_OTHERS) in print_allocator()
845 print_allocator(fout, list[i].allocator); in main()
859 print_allocator(fout, list[i].allocator); in main()