Searched refs:__vmalloc_array (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/mm/ |
D | util.c | 670 void *__vmalloc_array(size_t n, size_t size, gfp_t flags) in __vmalloc_array() function 678 EXPORT_SYMBOL(__vmalloc_array); 687 return __vmalloc_array(n, size, GFP_KERNEL); in vmalloc_array() 699 return __vmalloc_array(n, size, flags | __GFP_ZERO); in __vcalloc() 710 return __vmalloc_array(n, size, GFP_KERNEL | __GFP_ZERO); in vcalloc()
|
/linux-6.1.9/include/linux/ |
D | vmalloc.h | 158 extern void *__vmalloc_array(size_t n, size_t size, gfp_t flags) __alloc_size(1, 2);
|