Lines Matching refs:table
2461 void *table; in alloc_large_system_hash() local
2516 table = memblock_alloc(size, SMP_CACHE_BYTES); in alloc_large_system_hash()
2518 table = memblock_alloc_raw(size, in alloc_large_system_hash()
2521 table = vmalloc_huge(size, gfp_flags); in alloc_large_system_hash()
2523 if (table) in alloc_large_system_hash()
2524 huge = is_vm_area_hugepages(table); in alloc_large_system_hash()
2531 table = alloc_pages_exact(size, gfp_flags); in alloc_large_system_hash()
2532 kmemleak_alloc(table, size, 1, gfp_flags); in alloc_large_system_hash()
2534 } while (!table && size > PAGE_SIZE && --log2qty); in alloc_large_system_hash()
2536 if (!table) in alloc_large_system_hash()
2548 return table; in alloc_large_system_hash()