| /include/linux/ |
| A D | slab.h | 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 1024 #define kcalloc_node(_n, _size, _flags, _node) \ argument 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 [all …]
|
| A D | ioport.h | 160 .end = (_start) + (_size) - 1, \ 168 #define DEFINE_RES(_start, _size, _flags) \ argument 169 DEFINE_RES_NAMED(_start, _size, NULL, _flags) 171 #define DEFINE_RES_IO_NAMED(_start, _size, _name) \ argument 173 #define DEFINE_RES_IO(_start, _size) \ argument 174 DEFINE_RES_IO_NAMED((_start), (_size), NULL) 176 #define DEFINE_RES_MEM_NAMED(_start, _size, _name) \ argument 178 #define DEFINE_RES_MEM(_start, _size) \ argument 179 DEFINE_RES_MEM_NAMED((_start), (_size), NULL) 183 #define DEFINE_RES_REG(_start, _size) \ argument [all …]
|
| A D | percpu.h | 139 #define __alloc_percpu_gfp(_size, _align, _gfp) \ argument 140 alloc_hooks(pcpu_alloc_noprof(_size, _align, false, _gfp)) 141 #define __alloc_percpu(_size, _align) \ argument 142 alloc_hooks(pcpu_alloc_noprof(_size, _align, false, GFP_KERNEL)) 143 #define __alloc_reserved_percpu(_size, _align) \ argument 144 alloc_hooks(pcpu_alloc_noprof(_size, _align, true, GFP_KERNEL))
|
| A D | sysfs.h | 340 .size = _size, \ 343 #define __BIN_ATTR_RO(_name, _size) \ argument 346 #define __BIN_ATTR_WO(_name, _size) \ argument 349 #define __BIN_ATTR_RW(_name, _size) \ argument 356 _write, _size) 358 #define BIN_ATTR_RO(_name, _size) \ argument 361 #define BIN_ATTR_WO(_name, _size) \ argument 364 #define BIN_ATTR_RW(_name, _size) \ argument 368 #define __BIN_ATTR_ADMIN_RO(_name, _size) \ argument 374 #define BIN_ATTR_ADMIN_RO(_name, _size) \ argument [all …]
|
| A D | mempool.h | 93 #define mempool_init_kmalloc_pool(_pool, _min_nr, _size) \ argument 95 (void *)(unsigned long)(_size)) 96 #define mempool_create_kmalloc_pool(_min_nr, _size) \ argument 98 (void *)(unsigned long)(_size))
|
| A D | min_heap.h | 231 #define min_heap_init_inline(_heap, _data, _size) \ argument 232 __min_heap_init_inline(container_of(&(_heap)->nr, min_heap_char, nr), _data, _size) 449 #define min_heap_init(_heap, _data, _size) \ argument 450 __min_heap_init(container_of(&(_heap)->nr, min_heap_char, nr), _data, _size)
|
| A D | bpf.h | 2485 #define bpf_map_kmalloc_node(_map, _size, _flags, _node) \ argument 2486 kmalloc_node(_size, _flags, _node) 2487 #define bpf_map_kzalloc(_map, _size, _flags) \ argument 2488 kzalloc(_size, _flags) 2489 #define bpf_map_kvcalloc(_map, _n, _size, _flags) \ argument 2490 kvcalloc(_n, _size, _flags) 2491 #define bpf_map_alloc_percpu(_map, _size, _align, _flags) \ argument 2492 __alloc_percpu_gfp(_size, _align, _flags)
|
| A D | regmap.h | 1431 #define REG_FIELD_ID(_reg, _lsb, _msb, _size, _offset) { \ argument 1435 .id_size = _size, \
|
| /include/acpi/platform/ |
| A D | aclinuxex.h | 53 #define acpi_os_allocate(_size) \ argument 54 kmalloc(_size, irqs_disabled() ? GFP_ATOMIC : GFP_KERNEL) 56 #define acpi_os_allocate_zeroed(_size) \ argument 57 kzalloc(_size, irqs_disabled() ? GFP_ATOMIC : GFP_KERNEL)
|
| /include/linux/usb/ |
| A D | renesas_usbhs.h | 104 #define RENESAS_USBHS_PIPE(_type, _size, _num, _double_buf) { \ argument 106 .bufsize = (_size), \
|
| /include/drm/ |
| A D | drm_format_helper.h | 36 #define __DRM_FORMAT_CONV_STATE_INIT(_mem, _size, _preallocated) { \ argument 39 .size = (_size), \ 60 #define DRM_FORMAT_CONV_STATE_INIT_PREALLOCATED(_mem, _size) \ argument 61 __DRM_FORMAT_CONV_STATE_INIT(_mem, _size, true)
|
| /include/rdma/ |
| A D | uverbs_types.h | 204 #define UVERBS_TYPE_ALLOC_IDR_SZ(_size, _destroy_object) \ argument 208 .obj_size = (_size) + \ 209 UVERBS_BUILD_BUG_ON((_size) < \
|
| /include/linux/gpio/ |
| A D | driver.h | 583 #define for_each_hwgpio_in_range(_chip, _i, _base, _size, _label) \ argument 585 _i < _size; \ 607 #define for_each_requested_gpio_in_range(_chip, _i, _base, _size, _label) \ argument 608 for_each_hwgpio_in_range(_chip, _i, _base, _size, _label) \
|