| /include/linux/ |
| A D | timer.h | 56 #define __TIMER_INITIALIZER(_function, _flags) { \ argument 59 .flags = (_flags), \ 91 #define __timer_init(_timer, _fn, _flags) \ argument 94 timer_init_key((_timer), (_fn), (_flags), #_timer, &__key);\ 97 #define __timer_init_on_stack(_timer, _fn, _flags) \ argument 100 timer_init_key_on_stack((_timer), (_fn), (_flags), \ 104 #define __timer_init(_timer, _fn, _flags) \ argument 105 timer_init_key((_timer), (_fn), (_flags), NULL, NULL) 106 #define __timer_init_on_stack(_timer, _fn, _flags) \ argument 107 timer_init_key_on_stack((_timer), (_fn), (_flags), NULL, NULL)
|
| A D | irqflags.h | 97 # define lockdep_irq_work_enter(_flags) \ argument 99 if (!((_flags) & IRQ_WORK_HARD_IRQ)) \ 102 # define lockdep_irq_work_exit(_flags) \ argument 104 if (!((_flags) & IRQ_WORK_HARD_IRQ)) \ 255 unsigned long _flags; \ 256 raw_local_save_flags(_flags); \ 257 raw_irqs_disabled_flags(_flags); \
|
| A D | sh_clk.h | 117 #define SH_CLK_MSTP(_parent, _enable_reg, _enable_bit, _status_reg, _flags) \ argument 123 .flags = _flags, \ 151 #define SH_CLK_DIV4(_parent, _reg, _shift, _div_bitmap, _flags) \ argument 158 .flags = _flags, \ 175 #define SH_CLK_DIV6_EXT(_reg, _flags, _parents, \ argument 180 .flags = _flags | CLK_MASK_DIV_ON_DISABLE, \ 188 #define SH_CLK_DIV6(_parent, _reg, _flags) \ argument 194 .flags = _flags | CLK_MASK_DIV_ON_DISABLE, \
|
| A D | slab.h | 913 #define kmem_buckets_alloc(_b, _size, _flags) \ argument 916 #define kmem_buckets_alloc_track_caller(_b, _size, _flags) \ argument 1024 #define kcalloc_node(_n, _size, _flags, _node) \ argument 1025 kmalloc_array_node(_n, _size, (_flags) | __GFP_ZERO, _node) 1030 #define kmem_cache_zalloc(_k, _flags) kmem_cache_alloc(_k, (_flags)|__GFP_ZERO) 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 1053 #define kvzalloc_node(_size, _flags, _node) kvmalloc_node(_size, (_flags)|__GFP_ZERO, _node) argument [all …]
|
| A D | irq_work.h | 23 #define __IRQ_WORK_INIT(_func, _flags) (struct irq_work){ \ argument 24 .node = { .u_flags = (_flags), }, \
|
| A D | clk-provider.h | 1497 .flags = _flags, \ 1506 .flags = _flags, \ 1520 .flags = _flags, \ 1529 .flags = _flags, \ 1540 .flags = _flags, \ 1549 .flags = _flags, \ 1558 .flags = _flags, \ 1582 _flags), \ 1593 _flags), \ 1608 _flags), \ [all …]
|
| A D | ioport.h | 157 #define DEFINE_RES_NAMED_DESC(_start, _size, _name, _flags, _desc) \ argument 162 .flags = (_flags), \ 166 #define DEFINE_RES_NAMED(_start, _size, _name, _flags) \ argument 167 DEFINE_RES_NAMED_DESC(_start, _size, _name, _flags, IORES_DESC_NONE) 168 #define DEFINE_RES(_start, _size, _flags) \ argument 169 DEFINE_RES_NAMED(_start, _size, NULL, _flags)
|
| A D | of.h | 34 unsigned long _flags; member 62 unsigned long _flags; member 192 return test_bit(flag, &n->_flags); in of_node_check_flag() 198 return test_and_set_bit(flag, &n->_flags); in of_node_test_and_set_flag() 203 set_bit(flag, &n->_flags); in of_node_set_flag() 208 clear_bit(flag, &n->_flags); in of_node_clear_flag() 214 return test_bit(flag, &p->_flags); in of_property_check_flag() 219 set_bit(flag, &p->_flags); in of_property_set_flag() 224 clear_bit(flag, &p->_flags); in of_property_clear_flag() 255 #define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags) [all …]
|
| A D | rmap.h | 943 #define DEFINE_FOLIO_VMA_WALK(name, _folio, _vma, _address, _flags) \ argument 950 .flags = _flags, \
|
| 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 | netfs.h | 381 unsigned long *_flags, ino_t ino);
|
| A D | compat.h | 236 u32 _flags; member
|
| /include/linux/gpio/ |
| A D | machine.h | 69 #define GPIO_LOOKUP_SINGLE(_name, _dev_id, _key, _chip_hwnum, _con_id, _flags) \ argument 73 GPIO_LOOKUP(_key, _chip_hwnum, _con_id, _flags), \ 81 #define GPIO_LOOKUP(_key, _chip_hwnum, _con_id, _flags) \ argument 82 GPIO_LOOKUP_IDX(_key, _chip_hwnum, _con_id, 0, _flags) 89 #define GPIO_LOOKUP_IDX(_key, _chip_hwnum, _con_id, _idx, _flags) \ argument 95 .flags = _flags, \
|
| /include/net/ |
| A D | netmem.h | 33 unsigned long _flags; member 44 NETMEM_DESC_ASSERT_OFFSET(flags, _flags); 109 unsigned long _flags; member 142 NET_IOV_ASSERT_OFFSET(_flags, _flags);
|
| /include/drm/ |
| A D | drm_ioctl.h | 151 #define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \ argument 155 .flags = _flags, \
|
| /include/rdma/ |
| A D | uverbs_types.h | 192 #define UVERBS_TYPE_ALLOC_FD(_obj_size, _destroy_object, _fops, _name, _flags) \ argument 203 .flags = _flags}))->type)
|
| /include/uapi/asm-generic/ |
| A D | siginfo.h | 97 __u32 _flags; member 163 #define si_perf_flags _sifields._sigfault._perf._flags
|
| /include/uapi/linux/genwqe/ |
| A D | genwqe_card.h | 391 #define ATS_SET_FLAGS(_struct, _field, _flags) \ argument 392 (((_flags) & 0xf) << (44 - (4 * (offsetof(_struct, _field) / 8))))
|