Searched refs:VAR_OR_TYPE (Results 1 – 1 of 1) sorted by relevance
| /linux/include/linux/ |
| H A D | slab.h | 1014 * @VAR_OR_TYPE: Variable or type to allocate. 1017 * Returns: newly allocated pointer to a @VAR_OR_TYPE on success, or NULL 1020 #define kmalloc_obj(VAR_OR_TYPE, ...) \ argument 1021 __alloc_objs(kmalloc, default_gfp(__VA_ARGS__), typeof(VAR_OR_TYPE), 1) 1025 * @VAR_OR_TYPE: Variable or type to allocate an array of. 1029 * Returns: newly allocated pointer to array of @VAR_OR_TYPE on success, 1032 #define kmalloc_objs(VAR_OR_TYPE, COUNT, ...) \ argument 1033 __alloc_objs(kmalloc, default_gfp(__VA_ARGS__), typeof(VAR_OR_TYPE), COUNT) 1037 * @VAR_OR_TYPE: Variable or type to allocate (with its flex array). 1042 * Returns: newly allocated pointer to @VAR_OR_TYPE o 1047 kmalloc_flex(VAR_OR_TYPE,FAM,COUNT,GFP) global() argument [all...] |