Lines Matching refs:flags
36 void *kmalloc(size_t size, int flags);
38 static inline void *kzalloc(size_t size, gfp_t flags) in kzalloc() argument
40 return kmalloc(size, flags | __GFP_ZERO); in kzalloc()
43 static inline void *kmalloc_array(size_t n, size_t size, gfp_t flags) in kmalloc_array() argument
47 return kmalloc(n * size, flags | __GFP_ZERO); in kmalloc_array()
50 static inline void *kcalloc(size_t n, size_t size, gfp_t flags) in kcalloc() argument
52 return kmalloc_array(n, size, flags | __GFP_ZERO); in kcalloc()
56 #define __vmalloc(size, flags, pgsz) kmalloc(size, flags) argument
252 #define spin_lock_irqsave(lock, flags) do {} while (0) argument
253 #define spin_unlock_irqrestore(lock, flags) do { flags = 0; } while (0) argument
390 #define request_irq(nr, f, flags, nm, data) 0 argument