Lines Matching refs:allocator
42 int allocator; member
167 return l1->allocator - l2->allocator; in compare_allocator()
431 int allocator = 0; in get_allocator() local
434 allocator |= ALLOCATOR_CMA; in get_allocator()
436 allocator |= ALLOCATOR_SLAB; in get_allocator()
448 allocator |= ALLOCATOR_VMALLOC; in get_allocator()
450 if (allocator == 0) in get_allocator()
451 allocator = ALLOCATOR_OTHERS; in get_allocator()
452 return allocator; in get_allocator()
531 list[list_size].allocator = get_allocator(buf, ext_buf); in add_list()
655 static void print_allocator(FILE *out, int allocator) in print_allocator() argument
658 if (allocator & ALLOCATOR_CMA) in print_allocator()
660 if (allocator & ALLOCATOR_SLAB) in print_allocator()
662 if (allocator & ALLOCATOR_VMALLOC) in print_allocator()
664 if (allocator & ALLOCATOR_OTHERS) in print_allocator()
841 print_allocator(fout, list[i].allocator); in main()
855 print_allocator(fout, list[i].allocator); in main()