Home
last modified time | relevance | path

Searched refs:_size (Results 1 – 14 of 14) sorted by relevance

/include/linux/
Dslab.h783 #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)
[all …]
Dpercpu.h143 #define __alloc_percpu_gfp(_size, _align, _gfp) \ argument
144 alloc_hooks(pcpu_alloc_noprof(_size, _align, false, _gfp))
145 #define __alloc_percpu(_size, _align) \ argument
146 alloc_hooks(pcpu_alloc_noprof(_size, _align, false, GFP_KERNEL))
147 #define __alloc_reserved_percpu(_size, _align) \ argument
148 alloc_hooks(pcpu_alloc_noprof(_size, _align, true, GFP_KERNEL))
Dsysfs.h321 #define __BIN_ATTR(_name, _mode, _read, _write, _size) { \ argument
325 .size = _size, \
328 #define __BIN_ATTR_RO(_name, _size) { \ argument
331 .size = _size, \
334 #define __BIN_ATTR_WO(_name, _size) { \ argument
337 .size = _size, \
340 #define __BIN_ATTR_RW(_name, _size) \ argument
341 __BIN_ATTR(_name, 0644, _name##_read, _name##_write, _size)
345 #define BIN_ATTR(_name, _mode, _read, _write, _size) \ argument
347 _write, _size)
[all …]
Dioport.h163 #define DEFINE_RES_NAMED(_start, _size, _name, _flags) \ argument
166 .end = (_start) + (_size) - 1, \
172 #define DEFINE_RES_IO_NAMED(_start, _size, _name) \ argument
173 DEFINE_RES_NAMED((_start), (_size), (_name), IORESOURCE_IO)
174 #define DEFINE_RES_IO(_start, _size) \ argument
175 DEFINE_RES_IO_NAMED((_start), (_size), NULL)
177 #define DEFINE_RES_MEM_NAMED(_start, _size, _name) \ argument
178 DEFINE_RES_NAMED((_start), (_size), (_name), IORESOURCE_MEM)
179 #define DEFINE_RES_MEM(_start, _size) \ argument
180 DEFINE_RES_MEM_NAMED((_start), (_size), NULL)
[all …]
Dmempool.h93 #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))
Dhid_bpf.h236 #define call_hid_bpf_rdesc_fixup(_hdev, _rdesc, _size) \ argument
237 ((u8 *)kmemdup(_rdesc, *(_size), GFP_KERNEL))
Dmin_heap.h53 #define min_heap_init(_heap, _data, _size) \ argument
54 __min_heap_init((min_heap_char *)_heap, _data, _size)
Dbpf.h2327 #define bpf_map_kmalloc_node(_map, _size, _flags, _node) \ argument
2328 kmalloc_node(_size, _flags, _node)
2329 #define bpf_map_kzalloc(_map, _size, _flags) \ argument
2330 kzalloc(_size, _flags)
2331 #define bpf_map_kvcalloc(_map, _n, _size, _flags) \ argument
2332 kvcalloc(_n, _size, _flags)
2333 #define bpf_map_alloc_percpu(_map, _size, _align, _flags) \ argument
2334 __alloc_percpu_gfp(_size, _align, _flags)
Dregmap.h1363 #define REG_FIELD_ID(_reg, _lsb, _msb, _size, _offset) { \ argument
1367 .id_size = _size, \
/include/acpi/platform/
Daclinuxex.h53 #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/
Drenesas_usbhs.h104 #define RENESAS_USBHS_PIPE(_type, _size, _num, _double_buf) { \ argument
106 .bufsize = (_size), \
/include/rdma/
Duverbs_types.h171 #define UVERBS_TYPE_ALLOC_IDR_SZ(_size, _destroy_object) \ argument
175 .obj_size = (_size) + \
176 UVERBS_BUILD_BUG_ON((_size) < \
/include/drm/
Ddrm_format_helper.h36 #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/linux/gpio/
Ddriver.h582 #define for_each_requested_gpio_in_range(_chip, _i, _base, _size, _label) \ argument
584 *_data.i < _size; \