Lines Matching refs:size
211 static inline void *kcalloc(size_t n, size_t size, gfp_t flags) in kcalloc() argument
213 if (size != 0 && n > ULONG_MAX / size) in kcalloc()
215 return __kmalloc(n * size, flags | __GFP_ZERO); in kcalloc()
229 static inline void *kmalloc_node(size_t size, gfp_t flags, int node) in kmalloc_node() argument
231 return kmalloc(size, flags); in kmalloc_node()
234 static inline void *__kmalloc_node(size_t size, gfp_t flags, int node) in __kmalloc_node() argument
236 return __kmalloc(size, flags); in __kmalloc_node()
258 #define kmalloc_track_caller(size, flags) \ argument
259 __kmalloc_track_caller(size, flags, _RET_IP_)
261 #define kmalloc_track_caller(size, flags) \ argument
262 __kmalloc(size, flags)
276 #define kmalloc_node_track_caller(size, flags, node) \ argument
277 __kmalloc_node_track_caller(size, flags, node, \
280 #define kmalloc_node_track_caller(size, flags, node) \ argument
281 __kmalloc_node(size, flags, node)
286 #define kmalloc_node_track_caller(size, flags, node) \ argument
287 kmalloc_track_caller(size, flags)
304 static inline void *kzalloc(size_t size, gfp_t flags) in kzalloc() argument
306 return kmalloc(size, flags | __GFP_ZERO); in kzalloc()
315 static inline void *kzalloc_node(size_t size, gfp_t flags, int node) in kzalloc_node() argument
317 return kmalloc_node(size, flags | __GFP_ZERO, node); in kzalloc_node()