Lines Matching full:allocator
42 int allocator; member
167 return l1->allocator - l2->allocator; in compare_allocator()
422 else if (!strcmp(arg, "allocator") || !strcmp(arg, "ator")) in get_arg_type()
432 int allocator = 0; in get_allocator() local
435 allocator |= ALLOCATOR_CMA; in get_allocator()
437 allocator |= ALLOCATOR_SLAB; in get_allocator()
449 allocator |= ALLOCATOR_VMALLOC; in get_allocator()
451 if (allocator == 0) in get_allocator()
452 allocator = ALLOCATOR_OTHERS; in get_allocator()
453 return allocator; in get_allocator()
532 list[list_size].allocator = get_allocator(buf, ext_buf); in add_list()
657 static void print_allocator(FILE *out, int allocator) in print_allocator() argument
660 if (allocator & ALLOCATOR_CMA) in print_allocator()
662 if (allocator & ALLOCATOR_SLAB) in print_allocator()
664 if (allocator & ALLOCATOR_VMALLOC) in print_allocator()
666 if (allocator & ALLOCATOR_OTHERS) in print_allocator()
851 print_allocator(fout, list[i].allocator); in main()
865 print_allocator(fout, list[i].allocator); in main()