Lines Matching refs:_size
807 #define DECL_BUCKET_PARAMS(_size, _b) size_t (_size), kmem_buckets *(_b) argument
808 #define PASS_BUCKET_PARAMS(_size, _b) (_size), (_b) argument
811 #define DECL_BUCKET_PARAMS(_size, _b) size_t (_size) argument
812 #define PASS_BUCKET_PARAMS(_size, _b) (_size) argument
913 #define kmem_buckets_alloc(_b, _size, _flags) \ argument
914 alloc_hooks(__kmalloc_node_noprof(PASS_BUCKET_PARAMS(_size, _b), _flags, NUMA_NO_NODE))
916 #define kmem_buckets_alloc_track_caller(_b, _size, _flags) \ argument
917 …alloc_hooks(__kmalloc_node_track_caller_noprof(PASS_BUCKET_PARAMS(_size, _b), _flags, NUMA_NO_NODE…
1024 #define kcalloc_node(_n, _size, _flags, _node) \ argument
1025 kmalloc_array_node(_n, _size, (_flags) | __GFP_ZERO, _node)
1042 #define kzalloc_node(_size, _flags, _node) kmalloc_node(_size, (_flags)|__GFP_ZERO, _node) argument
1049 #define kvmalloc(_size, _flags) kvmalloc_node(_size, _flags, NUMA_NO_NODE) argument
1050 #define kvmalloc_noprof(_size, _flags) kvmalloc_node_noprof(_size, _flags, NUMA_NO_NODE) argument
1051 #define kvzalloc(_size, _flags) kvmalloc(_size, (_flags)|__GFP_ZERO) argument
1053 #define kvzalloc_node(_size, _flags, _node) kvmalloc_node(_size, (_flags)|__GFP_ZERO, _node) argument
1054 #define kmem_buckets_valloc(_b, _size, _flags) \ argument
1055 alloc_hooks(__kvmalloc_node_noprof(PASS_BUCKET_PARAMS(_size, _b), _flags, NUMA_NO_NODE))