Lines Matching refs:allocator
39 int allocator; member
170 return l1->allocator - l2->allocator; in compare_allocator()
413 int allocator = 0; in get_allocator() local
416 allocator |= ALLOCATOR_CMA; in get_allocator()
418 allocator |= ALLOCATOR_SLAB; in get_allocator()
430 allocator |= ALLOCATOR_VMALLOC; in get_allocator()
432 if (allocator == 0) in get_allocator()
433 allocator = ALLOCATOR_OTHERS; in get_allocator()
434 return allocator; in get_allocator()
501 list[list_size].allocator = get_allocator(buf, ext_buf); in add_list()
622 static void print_allocator(FILE *out, int allocator) in print_allocator() argument
625 if (allocator & ALLOCATOR_CMA) in print_allocator()
627 if (allocator & ALLOCATOR_SLAB) in print_allocator()
629 if (allocator & ALLOCATOR_VMALLOC) in print_allocator()
631 if (allocator & ALLOCATOR_OTHERS) in print_allocator()
852 print_allocator(fout, list[i].allocator); in main()
866 print_allocator(fout, list[i].allocator); in main()