Lines Matching refs:_size
783 #define DECL_BUCKET_PARAMS(_size, _b) size_t (_size), kmem_buckets *(_b) argument
784 #define PASS_BUCKET_PARAMS(_size, _b) (_size), (_b) argument
787 #define DECL_BUCKET_PARAMS(_size, _b) size_t (_size) argument
788 #define PASS_BUCKET_PARAMS(_size, _b) (_size) argument
889 #define kmem_buckets_alloc(_b, _size, _flags) \ argument
890 alloc_hooks(__kmalloc_node_noprof(PASS_BUCKET_PARAMS(_size, _b), _flags, NUMA_NO_NODE))
892 #define kmem_buckets_alloc_track_caller(_b, _size, _flags) \ argument
893 …alloc_hooks(__kmalloc_node_track_caller_noprof(PASS_BUCKET_PARAMS(_size, _b), _flags, NUMA_NO_NODE…
1002 #define kcalloc_node(_n, _size, _flags, _node) \ argument
1003 kmalloc_array_node(_n, _size, (_flags) | __GFP_ZERO, _node)
1020 #define kzalloc_node(_size, _flags, _node) kmalloc_node(_size, (_flags)|__GFP_ZERO, _node) argument
1027 #define kvmalloc(_size, _flags) kvmalloc_node(_size, _flags, NUMA_NO_NODE) argument
1028 #define kvmalloc_noprof(_size, _flags) kvmalloc_node_noprof(_size, _flags, NUMA_NO_NODE) argument
1029 #define kvzalloc(_size, _flags) kvmalloc(_size, (_flags)|__GFP_ZERO) argument
1031 #define kvzalloc_node(_size, _flags, _node) kvmalloc_node(_size, (_flags)|__GFP_ZERO, _node) argument
1032 #define kmem_buckets_valloc(_b, _size, _flags) \ argument
1033 alloc_hooks(__kvmalloc_node_noprof(PASS_BUCKET_PARAMS(_size, _b), _flags, NUMA_NO_NODE))